From ded9f18b8a36cae8dfe1797b7ba87d7742c996df Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 12 May 2021 07:56:30 +0000 Subject: fix regression in regard to menu wrapping --- include/menu.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/menu.php b/include/menu.php index 02b05a36e..1f65f987d 100644 --- a/include/menu.php +++ b/include/menu.php @@ -16,7 +16,7 @@ function menu_fetch($name,$uid,$observer_xchan) { ); if($r) { $x = q("select * from menu_item where mitem_menu_id = %d and mitem_channel_id = %d - $sql_options + $sql_options order by mitem_order asc, mitem_desc asc", intval($r[0]['menu_id']), intval($uid) @@ -26,7 +26,7 @@ function menu_fetch($name,$uid,$observer_xchan) { return null; } - + function menu_element($channel,$menu) { $arr = array(); @@ -67,7 +67,7 @@ function menu_element($channel,$menu) { } $arr['items'][] = $entry; } - } + } return $arr; } @@ -111,7 +111,7 @@ function menu_render($menu, $class='', $edit = false, $var = array()) { $menu['items'][$x]['mitem_desc'] = zidify_links(smilies(bbcode($menu['items'][$x]['mitem_desc']))); } - $wrap = (! x($var, 'wrap') || $var['wrap'] === 'none' ? false : true); + $wrap = ((isset($var['wrap']) && $var['wrap'] === 'none') ? false : true); $ret = replace_macros(get_markup_template('usermenu.tpl'),array( '$menu' => $menu['menu'], @@ -168,7 +168,7 @@ function menu_create($arr) { $t = datetime_convert(); - $r = q("insert into menu ( menu_name, menu_desc, menu_flags, menu_channel_id, menu_created, menu_edited ) + $r = q("insert into menu ( menu_name, menu_desc, menu_flags, menu_channel_id, menu_created, menu_edited ) values( '%s', '%s', %d, %d, '%s', '%s' )", dbesc($menu_name), dbesc($menu_desc), @@ -260,7 +260,7 @@ function menu_edit($arr) { } return q("update menu set menu_name = '%s', menu_desc = '%s', menu_flags = %d, menu_edited = '%s' - where menu_id = %d and menu_channel_id = %d", + where menu_id = %d and menu_channel_id = %d", dbesc($menu_name), dbesc($menu_desc), intval($menu_flags), @@ -295,7 +295,7 @@ function menu_delete_id($menu_id, $uid) { intval($menu_id), intval($uid) ); - } + } return false; } @@ -304,11 +304,11 @@ function menu_add_item($menu_id, $uid, $arr) { $mitem_link = escape_tags($arr['mitem_link']); $mitem_desc = escape_tags($arr['mitem_desc']); - $mitem_order = intval($arr['mitem_order']); + $mitem_order = intval($arr['mitem_order']); $mitem_flags = intval($arr['mitem_flags']); if(local_channel() == $uid) { - $channel = App::get_channel(); + $channel = App::get_channel(); } $acl = new Zotlabs\Access\AccessList($channel); @@ -344,12 +344,12 @@ function menu_edit_item($menu_id, $uid, $arr) { $mitem_id = intval($arr['mitem_id']); $mitem_link = escape_tags($arr['mitem_link']); $mitem_desc = escape_tags($arr['mitem_desc']); - $mitem_order = intval($arr['mitem_order']); + $mitem_order = intval($arr['mitem_order']); $mitem_flags = intval($arr['mitem_flags']); if(local_channel() == $uid) { - $channel = App::get_channel(); + $channel = App::get_channel(); } $acl = new Zotlabs\Access\AccessList($channel); @@ -403,7 +403,7 @@ function menu_sync_packet($uid,$observer_hash,$menu_id,$delete = false) { $r = menu_fetch_id($menu_id,$uid); $c = channelx_by_n($uid); if($r) { - $m = menu_fetch($r['menu_name'],$uid,$observer_hash); + $m = menu_fetch($r['menu_name'],$uid,$observer_hash); if($m) { if($delete) $m['menu_delete'] = 1; -- cgit v1.2.3 From a03423794a1a9dc15588d40684fee3bf9a57b629 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Fri, 14 May 2021 08:56:06 +0000 Subject: Random PHP 8 fixes --- Zotlabs/Module/Magic.php | 3 ++- Zotlabs/Module/Photos.php | 8 ++++---- Zotlabs/Module/Sse.php | 3 ++- include/channel.php | 5 ++++- include/feedutils.php | 14 +++++++------- include/opengraph.php | 2 ++ 6 files changed, 21 insertions(+), 14 deletions(-) diff --git a/Zotlabs/Module/Magic.php b/Zotlabs/Module/Magic.php index b4372e26d..bfd38d2fa 100644 --- a/Zotlabs/Module/Magic.php +++ b/Zotlabs/Module/Magic.php @@ -40,7 +40,7 @@ class Magic extends Controller { goaway($dest); } - $basepath = $parsed['scheme'] . '://' . $parsed['host'] . (($parsed['port']) ? ':' . $parsed['port'] : ''); + $basepath = $parsed['scheme'] . '://' . $parsed['host'] . (isset($parsed['port']) ? ':' . $parsed['port'] : ''); $owapath = SConfig::get($basepath,'system','openwebauth', $basepath . '/owa'); // This is ready-made for a plugin that provides a blacklist or "ask me" before blindly authenticating. @@ -110,6 +110,7 @@ class Magic extends Controller { $headers['(request-target)'] = 'post ' . '/owa'; $headers = HTTPSig::create_sig($headers,$channel['channel_prvkey'], channel_url($channel),true,'sha512'); + $redirects = 0; $x = z_post_url($owapath,$data,$redirects,[ 'headers' => $headers ]); logger('owa fetch returned: ' . print_r($x,true),LOGGER_DATA); if ($x['success']) { diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 099289c03..e62accb06 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -876,7 +876,7 @@ class Photos extends \Zotlabs\Web\Controller { $prevlink = ''; $nextlink = ''; - if($_GET['order'] === 'posted') + if(isset($_GET['order']) && $_GET['order'] === 'posted') $order = 'ASC'; else $order = 'DESC'; @@ -901,8 +901,8 @@ class Photos extends \Zotlabs\Web\Controller { } } - $prevlink = z_root() . '/photos/' . \App::$data['channel']['channel_address'] . '/image/' . $prvnxt[$prv]['hash'] . (($_GET['order'] === 'posted') ? '?f=&order=posted' : ''); - $nextlink = z_root() . '/photos/' . \App::$data['channel']['channel_address'] . '/image/' . $prvnxt[$nxt]['hash'] . (($_GET['order'] === 'posted') ? '?f=&order=posted' : ''); + $prevlink = z_root() . '/photos/' . \App::$data['channel']['channel_address'] . '/image/' . $prvnxt[$prv]['hash'] . (($order == 'ASC') ? '?f=&order=posted' : ''); + $nextlink = z_root() . '/photos/' . \App::$data['channel']['channel_address'] . '/image/' . $prvnxt[$nxt]['hash'] . (($order == 'ASC') ? '?f=&order=posted' : ''); } @@ -987,7 +987,7 @@ class Photos extends \Zotlabs\Web\Controller { } $tags = array(); - if($link_item['term']) { + if(x($link_item, 'term')) { $cnt = 0; foreach($link_item['term'] as $t) { $tags[$cnt] = array(0 => format_term_for_display($t)); diff --git a/Zotlabs/Module/Sse.php b/Zotlabs/Module/Sse.php index 8bea65207..6f3df299f 100644 --- a/Zotlabs/Module/Sse.php +++ b/Zotlabs/Module/Sse.php @@ -108,7 +108,8 @@ class Sse extends Controller { echo 'data: {}'; echo "\n\n"; - ob_end_flush(); + if(ob_get_length() > 0) + ob_end_flush(); flush(); if(connection_status() != CONNECTION_NORMAL || connection_aborted()) { diff --git a/include/channel.php b/include/channel.php index 31c7c407f..e636a22d6 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1516,8 +1516,11 @@ function profile_load($nickname, $profile = '') { if($p[0]['keywords']) { $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$p[0]['keywords']); - if(strlen($keywords) && $can_view_profile) + if(strlen($keywords) && $can_view_profile) { + if(! isset(App::$page['htmlhead'])) + App::$page['htmlhead'] = ''; App::$page['htmlhead'] .= '' . "\r\n" ; + } } App::$profile = $p[0]; diff --git a/include/feedutils.php b/include/feedutils.php index e827bde98..f489030b6 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -296,7 +296,7 @@ function get_atom_author($feed, $item) { $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author'); - if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) { + if($rawauthor && isset($rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])) { $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']; foreach($base as $link) { if(!x($author, 'author_photo') || ! $author['author_photo']) { @@ -336,7 +336,7 @@ function get_atom_author($feed, $item) { if(! x($author,'author_link') || ! x($author,'author_photo')) { $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author'); - if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) { + if($rawauthor && isset($rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])) { $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']; foreach($base as $link) { if($link['attribs']['']['rel'] === 'alternate' && (! $author['author_link'])) { @@ -372,16 +372,16 @@ function get_atom_author($feed, $item) { if(! $rawowner) $rawowner = $item->get_item_tags(NAMESPACE_ZOT, 'owner'); - if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']) + if(isset($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])) $author['owner_name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']); - elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']) + elseif(isset($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])) $author['owner_name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']); - if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']) + if(isset($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])) $author['owner_link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']); - elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']) + elseif(isset($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])) $author['owner_link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']); - if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) { + if(isset($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])) { $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']; foreach($base as $link) { diff --git a/include/opengraph.php b/include/opengraph.php index 4c88570d3..465acbd39 100644 --- a/include/opengraph.php +++ b/include/opengraph.php @@ -62,6 +62,8 @@ $ogimagetype = $channel['xchan_photo_mimetype']; } + if (! isset(App::$page['htmlhead'])) + App::$page['htmlhead'] = ''; App::$page['htmlhead'] .= '' . "\r\n"; App::$page['htmlhead'] .= '' . "\r\n"; App::$page['htmlhead'] .= '' . "\r\n"; -- cgit v1.2.3 From c3ad21c5486c58ae08aabbbbfbd23afdab15ec0c Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 15 May 2021 15:15:48 +0200 Subject: make sure we do not mess up the query string when removing single parameters --- include/zid.php | 53 ++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 5 deletions(-) diff --git a/include/zid.php b/include/zid.php index 75414a691..0a33280ee 100644 --- a/include/zid.php +++ b/include/zid.php @@ -89,20 +89,24 @@ function zid($s, $address = '') { } -function strip_query_param($s,$param) { - return preg_replace('/[\?&]' . $param . '=(.*?)(&|$)/ism','$2',$s); +function strip_query_param($s, $param) { + return drop_query_params($s, [$param]); + //return preg_replace('/[\?&]' . $param . '=(.*?)(&|$)/ism','$2',$s); } function strip_zids($s) { - return preg_replace('/[\?&]zid=(.*?)(&|$)/ism','$2',$s); + return drop_query_params($s, ['zid']); + //return preg_replace('/[\?&]zid=(.*?)(&|$)/ism','$2',$s); } function strip_owt($s) { - return preg_replace('/[\?&]owt=(.*?)(&|$)/ism','$2',$s); + return drop_query_params($s, ['owt']); + //return preg_replace('/[\?&]owt=(.*?)(&|$)/ism','$2',$s); } function strip_zats($s) { - return preg_replace('/[\?&]zat=(.*?)(&|$)/ism','$2',$s); + return drop_query_params($s, ['zat']); + //return preg_replace('/[\?&]zat=(.*?)(&|$)/ism','$2',$s); } function strip_escaped_zids($s) { @@ -112,12 +116,51 @@ function strip_escaped_zids($s) { function clean_query_string($s = '') { + + $x = (($s) ? $s : \App::$query_string); + return drop_query_params($x, ['zid', 'owt', 'zat', 'sort', 'f']); + +/* $x = strip_zids(($s) ? $s : \App::$query_string); $x = strip_owt($x); $x = strip_zats($x); $x = strip_query_param($x,'sort'); return strip_query_param($x,'f'); +*/ +} + +/** + * @brief Remove parameters from query string. + * + * @param string $s + * The query string + * @param array $p + * $p array of parameters to remove + * @return string + */ + +function drop_query_params($s, $p) { + $parsed = parse_url($s); + + $query = ''; + $query_args = null; + if(isset($parsed['query'])) { + parse_str($parsed['query'], $query_args); + } + + if(is_array($query_args)) { + foreach($query_args as $k => $v) { + if(in_array($k, $p)) + continue; + $query .= (($query) ? '&' : '') . urlencode($k) . '=' . urlencode($v); + } + } + + if($query) + $parsed['query'] = $query; + + return unparse_url($parsed); } -- cgit v1.2.3 From e89bbde575a254fc9a1ce3e85a24d5bd8b8e1af4 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 15 May 2021 13:21:07 +0000 Subject: add zid and delegate parameters to the bdest string so that we will be authenticated when being redirected offsite --- Zotlabs/Module/Manage.php | 68 +++++++++++++++++++++++------------------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/Zotlabs/Module/Manage.php b/Zotlabs/Module/Manage.php index 20d5b0449..bc2034b95 100644 --- a/Zotlabs/Module/Manage.php +++ b/Zotlabs/Module/Manage.php @@ -5,18 +5,18 @@ namespace Zotlabs\Module; class Manage extends \Zotlabs\Web\Controller { function get() { - + if((! get_account_id()) || ($_SESSION['delegate'])) { notice( t('Permission denied.') . EOL); return; } nav_set_selected('Channel Manager', 'settings/manage'); - + require_once('include/security.php'); - + $change_channel = ((argc() > 1) ? intval(argv(1)) : 0); - + if((argc() > 2) && (argv(2) === 'default')) { $r = q("select channel_id from channel where channel_id = %d and channel_account_id = %d limit 1", intval($change_channel), @@ -31,7 +31,7 @@ class Manage extends \Zotlabs\Web\Controller { goaway(z_root() . '/manage'); } - + if($change_channel) { $r = change_channel($change_channel); @@ -45,29 +45,29 @@ class Manage extends \Zotlabs\Web\Controller { } goaway(z_root()); } - + $channels = null; - + $r = q("select channel.*, xchan.* from channel left join xchan on channel.channel_hash = xchan.xchan_hash where channel.channel_account_id = %d and channel_removed = 0 order by channel_name ", intval(get_account_id()) ); - + $account = \App::get_account(); - + if($r && count($r)) { $channels = $r; for($x = 0; $x < count($channels); $x ++) { $channels[$x]['link'] = 'manage/' . intval($channels[$x]['channel_id']); - $channels[$x]['default'] = (($channels[$x]['channel_id'] == $account['account_default_channel']) ? "1" : ''); + $channels[$x]['default'] = (($channels[$x]['channel_id'] == $account['account_default_channel']) ? "1" : ''); $channels[$x]['default_links'] = '1'; - - + + $c = q("SELECT id, item_wall FROM item WHERE item_unseen = 1 and uid = %d " . item_normal(), intval($channels[$x]['channel_id']) ); - - if($c) { + + if($c) { foreach ($c as $it) { if(intval($it['item_wall'])) $channels[$x]['home'] ++; @@ -75,25 +75,25 @@ class Manage extends \Zotlabs\Web\Controller { $channels[$x]['network'] ++; } } - - + + $intr = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and abook_pending = 1 and abook_self = 0 and abook_ignored = 0 and xchan_deleted = 0 and xchan_orphan = 0 ", intval($channels[$x]['channel_id']) ); - + if($intr) $channels[$x]['intros'] = intval($intr[0]['total']); - - + + $mails = q("SELECT count(id) as total from mail WHERE channel_id = %d AND mail_seen = 0 and from_xchan != '%s' ", intval($channels[$x]['channel_id']), dbesc($channels[$x]['channel_hash']) ); - + if($mails) $channels[$x]['mail'] = intval($mails[0]['total']); - - + + $events = q("SELECT etype, dtstart, adjust FROM event WHERE event.uid = %d AND dtstart < '%s' AND dtstart > '%s' and dismissed = 0 ORDER BY dtstart ASC ", @@ -101,7 +101,7 @@ class Manage extends \Zotlabs\Web\Controller { dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now + 7 days')), dbesc(datetime_convert('UTC', date_default_timezone_get(), 'now - 1 days')) ); - + if($events) { $channels[$x]['all_events'] = count($events); @@ -128,7 +128,7 @@ class Manage extends \Zotlabs\Web\Controller { } } - } + } $r = q("select count(channel_id) as total from channel where channel_account_id = %d and channel_removed = 0", intval(get_account_id()) @@ -140,23 +140,23 @@ class Manage extends \Zotlabs\Web\Controller { else { $channel_usage_message = ''; } - - + + $create = array( 'new_channel', t('Create a new channel'), t('Create New')); - + $delegates = null; if(local_channel()) { - $delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where + $delegates = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and abook_xchan in ( select xchan from abconfig where chan = %d and cat = 'their_perms' and k = 'delegate' and v = '1' )", intval(local_channel()), intval(local_channel()) ); } - + if($delegates) { for($x = 0; $x < count($delegates); $x ++) { - $delegates[$x]['link'] = 'magic?f=&bdest=' . bin2hex($delegates[$x]['xchan_url']) + $delegates[$x]['link'] = 'magic?f=&bdest=' . bin2hex($delegates[$x]['xchan_url'] . '?zid=' . get_my_address() . '&delegate=' . urlencode($delegates[$x]['xchan_addr'])) . '&delegate=' . urlencode($delegates[$x]['xchan_addr']); $delegates[$x]['channel_name'] = $delegates[$x]['xchan_name']; $delegates[$x]['delegate'] = 1; @@ -165,7 +165,7 @@ class Manage extends \Zotlabs\Web\Controller { else { $delegates = null; } - + $o = replace_macros(get_markup_template('channels.tpl'), array( '$header' => t('Channel Manager'), '$msg_selected' => t('Current Channel'), @@ -181,9 +181,9 @@ class Manage extends \Zotlabs\Web\Controller { '$delegated_desc' => t('Delegated Channel'), '$delegates' => $delegates )); - + return $o; - + } - + } -- cgit v1.2.3 From a46e340a1344a2bdd8d371abf5b1891a49570c1b Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 17 May 2021 09:09:24 +0000 Subject: =?UTF-8?q?=C3=83make=20sure=20we=20do=20not=20deal=20with=20diasp?= =?UTF-8?q?ora=20hublocs=20here?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Zotlabs/Lib/ActivityStreams.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index ba7ec0c65..a5fb4a756 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -304,7 +304,7 @@ class ActivityStreams { // SECURITY: If we have already stored the actor profile, re-generate it // from cached data - don't refetch it from the network - $r = q("select * from xchan left join hubloc on xchan_hash = hubloc_hash where hubloc_id_url = '%s' limit 1", + $r = q("select * from xchan join hubloc on xchan_hash = hubloc_hash where hubloc_network in ('zot6', 'activitypub') and hubloc_id_url = '%s'", dbesc($x) ); if ($r) { -- cgit v1.2.3 From 9a5c1aa02f49d695e59ae771765d4e0f8744577a Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 17 May 2021 09:42:29 +0000 Subject: there might be errors in cli without this --- Zotlabs/Daemon/Cron.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index 335ff9751..5c0330806 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -55,6 +55,7 @@ class Cron { db_utcnow() ); + require_once('include/account.php'); remove_expired_registrations(); $interval = get_config('system', 'delivery_interval', 3); -- cgit v1.2.3 From 02229482b8574ce4defc9c29c5c01a4816c53b25 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Mon, 17 May 2021 22:30:47 +0200 Subject: Fix security headers switching --- boot.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index c057f8278..622784e9c 100644 --- a/boot.php +++ b/boot.php @@ -2420,10 +2420,10 @@ function construct_page() { // security headers - see https://securityheaders.io - if(App::get_scheme() === 'https' && App::$config['system']['transport_security_header']) + if(App::get_scheme() === 'https' && isset(App::$config['system']['transport_security_header']) && intval(App::$config['system']['transport_security_header']) == 1) header("Strict-Transport-Security: max-age=31536000"); - if(isset(App::$config['system']['content_security_policy'])) { + if(isset(App::$config['system']['content_security_policy']) && intval(App::$config['system']['content_security_policy']) == 1) { $cspsettings = [ 'script-src' => [ "'self'", "'unsafe-inline'", "'unsafe-eval'" ], 'style-src' => [ "'self'", "'unsafe-inline'" ], -- cgit v1.2.3 From 8fe00d428d830fd4cf84473c0f441bf73f646eab Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 19 May 2021 17:47:26 +0000 Subject: bring back the channel_protocols hook --- Zotlabs/Lib/Libzot.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index a19c8e544..c7d001d21 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2924,7 +2924,19 @@ class Libzot { ]; $ret['channel_role'] = get_pconfig($e['channel_id'], 'system', 'permissions_role', 'custom'); - $ret['protocols'] = ['zot6', 'zot']; + + $hookinfo = [ + 'channel_id' => $id, + 'protocols' => ['zot6', 'zot'] + ]; + /** + * @hooks channel_protocols + * * \e int \b channel_id + * * \e array \b protocols + */ + call_hooks('channel_protocols', $hookinfo); + + $ret['protocols'] = $hookinfo['protocols']; $ret['searchable'] = $searchable; $ret['adult_content'] = $adult_channel; $ret['public_forum'] = $public_forum; -- cgit v1.2.3 From f9c85c52f30b13a809fecee6ccc8ce978c2f3fe9 Mon Sep 17 00:00:00 2001 From: Malendur Date: Thu, 20 May 2021 08:14:58 +0000 Subject: Remove useless test --- include/items.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 29160c01d..839660509 100644 --- a/include/items.php +++ b/include/items.php @@ -971,7 +971,7 @@ function import_author_xchan($x) { if($y) return $y; - if(!$y && !isset($x['network']) || $x['network'] === 'zot') { + if(!isset($x['network']) || $x['network'] === 'zot') { $y = import_author_zot($x); } @@ -981,8 +981,9 @@ function import_author_xchan($x) { $r = q("SELECT xchan_hash FROM xchan WHERE xchan_url = '%s' AND xchan_network = 'zot6'", dbesc($x['url']) ); - if(! $r) - discover_by_webbie($x['url'], 'zot6'); + // TODO: fix dupplicate with line 960 + if(!$r) + discover_by_webbie($x['url'], 'zot6'); //TODO use the return of discover_by_webbie } return $y; -- cgit v1.2.3 From 300679c0532f7969989d9909771271b125a48f70 Mon Sep 17 00:00:00 2001 From: Malendur Date: Thu, 20 May 2021 08:23:45 +0000 Subject: Fix phpDoc --- include/network.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/network.php b/include/network.php index fcc7b4289..77b7c49d6 100644 --- a/include/network.php +++ b/include/network.php @@ -1118,9 +1118,9 @@ function discover_by_url($url, $arr = null) { /** * @brief * - * @param string $webbie + * @param string $webbie (TODO: explain) * @param string $protocol (optional) default empty - * @return boolean + * @return boolean|string (TODO: explain) */ function discover_by_webbie($webbie, $protocol = '') { -- cgit v1.2.3 From 33d2a852c99bc1c230abeed7d3be1bb0f4c89212 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 20 May 2021 10:14:49 +0000 Subject: make sure to set the correct item_private state --- include/items.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 29160c01d..30129b0aa 100644 --- a/include/items.php +++ b/include/items.php @@ -726,7 +726,8 @@ function get_item_elements($x,$allow_code = false) { $arr['term'] = decode_tags($x['tags']); $arr['iconfig'] = decode_item_meta($x['meta']); - $arr['item_private'] = ((array_key_exists('flags',$x) && is_array($x['flags']) && in_array('private',$x['flags'])) ? 1 : 0); + $private_state = (($x['allow_cid'] && !$x['allow_gid']) ? 2 : 1); + $arr['item_private'] = ((array_key_exists('flags',$x) && is_array($x['flags']) && in_array('private',$x['flags'])) ? $private_state : 0); $arr['item_flags'] = 0; -- cgit v1.2.3 From bc2afb21e1068986ab1e04b487a7909a309a98f8 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Thu, 20 May 2021 12:29:37 +0000 Subject: Fix updated variables --- view/ru/register_verify_member.tpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/view/ru/register_verify_member.tpl b/view/ru/register_verify_member.tpl index 8a466ddf6..7784a1786 100644 --- a/view/ru/register_verify_member.tpl +++ b/view/ru/register_verify_member.tpl @@ -14,10 +14,11 @@ Cайт: {{$siteurl}} {{$hash}} -{{if $due}}{{$due}}{{/ if}} - +{{if $timeframe}} +Этот код действителен с {{$timeframe.0}} UTC и до {{$timeframe.1}} UTC. +{{/if}} Если вы зарегистрировали эту учетную запись, введите код подтверждения при запросе или перейдите по следующей ссылке: {{$siteurl}}/regate/{{$mail}} -- cgit v1.2.3 From 79b4642b32b441e8b2d7924577af59c1c15ee092 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 21 May 2021 06:44:15 +0000 Subject: introduce the direct flag for direct messages --- include/items.php | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/include/items.php b/include/items.php index 30129b0aa..7be3d5286 100644 --- a/include/items.php +++ b/include/items.php @@ -702,7 +702,6 @@ function get_item_elements($x,$allow_code = false) { $arr['mid'] = (($x['message_id']) ? htmlspecialchars($x['message_id'], ENT_COMPAT,'UTF-8',false) : ''); $arr['parent_mid'] = (($x['message_top']) ? htmlspecialchars($x['message_top'], ENT_COMPAT,'UTF-8',false) : ''); $arr['thr_parent'] = (($x['message_parent']) ? htmlspecialchars($x['message_parent'], ENT_COMPAT,'UTF-8',false) : ''); - $arr['plink'] = (($x['permalink']) ? htmlspecialchars($x['permalink'], ENT_COMPAT,'UTF-8',false) : ''); $arr['location'] = (($x['location']) ? htmlspecialchars($x['location'], ENT_COMPAT,'UTF-8',false) : ''); $arr['coord'] = (($x['longlat']) ? htmlspecialchars($x['longlat'], ENT_COMPAT,'UTF-8',false) : ''); @@ -718,18 +717,12 @@ function get_item_elements($x,$allow_code = false) { $arr['comment_policy'] = (($x['comment_scope']) ? htmlspecialchars($x['comment_scope'], ENT_COMPAT,'UTF-8',false) : 'contacts'); $arr['sig'] = (($x['signature']) ? htmlspecialchars($x['signature'], ENT_COMPAT,'UTF-8',false) : ''); - $arr['obj'] = activity_sanitise($x['object']); $arr['target'] = activity_sanitise($x['target']); - $arr['attach'] = activity_sanitise($x['attach']); $arr['term'] = decode_tags($x['tags']); $arr['iconfig'] = decode_item_meta($x['meta']); - - $private_state = (($x['allow_cid'] && !$x['allow_gid']) ? 2 : 1); - $arr['item_private'] = ((array_key_exists('flags',$x) && is_array($x['flags']) && in_array('private',$x['flags'])) ? $private_state : 0); - - $arr['item_flags'] = 0; + $arr['item_flags'] = 0; if(array_key_exists('flags',$x)) { @@ -750,6 +743,12 @@ function get_item_elements($x,$allow_code = false) { if(in_array('hidden',$x['flags'])) $arr['item_hidden'] = 1; + if(in_array('private', $x['flags'])) + $arr['item_private'] = 1; + + if(in_array('private', $x['flags']) && in_array('direct', $x['flags'])) + $arr['item_private'] = 2; + } // Here's the deal - the site might be down or whatever but if there's a new person you've never @@ -1337,7 +1336,13 @@ function encode_item_xchan($xchan) { $ret['id_sig'] = $xchan['xchan_guid_sig']; $ret['key'] = $xchan['xchan_pubkey']; - return $ret; + $hookdata = [ + 'encoded_xchan' => $ret + ]; + + call_hooks('encode_item_xchan', $hookdata); + + return $hookdata['encoded_xchan']; } function encode_item_terms($terms,$mirror = false) { @@ -1552,6 +1557,8 @@ function encode_item_flags($item) { $ret[] = 'obscured'; if(intval($item['item_private'])) $ret[] = 'private'; + if(intval($item['item_private']) === 2) + $ret[] = 'direct'; return $ret; } -- cgit v1.2.3 From 8211bc09d4ecb9af530826a105a1bd102feb9f2e Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 21 May 2021 06:54:37 +0000 Subject: remove todo since the zot6 xchan should be merely imported in this case. also only return if we already have a result. --- include/items.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index 63edae972..d6dd517ba 100644 --- a/include/items.php +++ b/include/items.php @@ -983,10 +983,12 @@ function import_author_xchan($x) { ); // TODO: fix dupplicate with line 960 if(!$r) - discover_by_webbie($x['url'], 'zot6'); //TODO use the return of discover_by_webbie + discover_by_webbie($x['url'], 'zot6'); } - return $y; + if($y) + return $y; + } // perform zot6 discovery -- cgit v1.2.3 From 7d4e07df795009115baa7d3fa99ed4e58805dd56 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 23 May 2021 19:17:09 +0200 Subject: AccessList::is_private() does not return info about the private state (1 or 2). Use the info from the parent item until this will be sorted out --- Zotlabs/Module/Item.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index ff52babf5..73a943039 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -745,10 +745,10 @@ class Item extends Controller { if($parent_item) { $acl->set($parent_item); - $private = intval($acl->is_private() || $parent_item['item_private']); - $public_policy = $parent_item['public_policy']; - $owner_hash = $parent_item['owner_xchan']; - $webpage = $parent_item['item_type']; + $private = intval($parent_item['item_private']); + $public_policy = $parent_item['public_policy']; + $owner_hash = $parent_item['owner_xchan']; + $webpage = $parent_item['item_type']; } if((! $allow_empty) && (! strlen($body))) { -- cgit v1.2.3 From 513cf2b8e2c7c1e5805a8daf4ff9e3972a7f5674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Sun, 23 May 2021 23:51:27 +0200 Subject: Updating translation strings (v. 5.7) + fixes to Polish translation --- doc/context/pl/admin/queue/help.html | 4 +- doc/context/pl/settings/tokens/help.html | 6 +- doc/pl/Features.md | 2 +- doc/pl/Primary-Directory.md | 18 +- doc/pl/about/about.bb | 33 +- doc/pl/about/project.bb | 28 +- doc/pl/addons.bb | 8 +- doc/pl/admin/administrator_guide.md | 8 +- doc/pl/admin/hub_snapshots.md | 13 +- doc/pl/admins.bb | 6 +- doc/pl/bugs.bb | 8 +- doc/pl/general.bb | 2 +- doc/pl/hidden_configs.bb | 12 +- doc/pl/main.bb | 8 +- doc/pl/member/bbcode.html | 2 +- doc/pl/member/member_guide.bb | 28 +- doc/pl/toc.html | 2 +- util/hmessages.po | 17968 +++++++++++++++-------------- view/pl/hmessages.mo | Bin 304621 -> 304966 bytes view/pl/hmessages.po | 2910 ++--- view/pl/hmessages.pot | 384 +- view/pl/htconfig.tpl | 4 +- 22 files changed, 10935 insertions(+), 10519 deletions(-) diff --git a/doc/context/pl/admin/queue/help.html b/doc/context/pl/admin/queue/help.html index f7e503087..af5c06787 100644 --- a/doc/context/pl/admin/queue/help.html +++ b/doc/context/pl/admin/queue/help.html @@ -1,7 +1,7 @@
Ogólne
- Statystyki kolejki pokazują, ile postów znajduje się w kolejce do dostarczenia - do innych węzłów. Priorytet jest powiązany z liczbą nieudanych prób dostawy. + Statystyki kolejki pokazują, ile wpisów znajduje się w kolejce w celu dostarczenia + ich do innych portali. Priorytet jest związany z liczbą nieudanych prób dostawy.
\ No newline at end of file diff --git a/doc/context/pl/settings/tokens/help.html b/doc/context/pl/settings/tokens/help.html index 8764f0b1f..4c79841d6 100644 --- a/doc/context/pl/settings/tokens/help.html +++ b/doc/context/pl/settings/tokens/help.html @@ -1,9 +1,9 @@
Tokeny dostępu gościa
- Aby ułatwić udostępnianie prywatnych zasobów osobom niebędącym członkami - lub członkami sfederyzowanych węzłów (węzłów) i zapewnić zabezpieczone - wykrywaniem danych identyfikacyjnych, Hubzilla zawiera mechanizm tworzenia + Aby ułatwić udostępnianie prywatnych zasobów osobom niebędących członkami + tego portalu lub sfederyzowanych portali (hubów) i zapewnić zabezpieczone + wykrywaniem danych identyfikacyjnych, Hubzilla posiada mechanizm tworzenia i zarządzania tymczasowymi ("jednorazowymi") loginami, zwanymi "tokenami dostępu Zot”. Tokeny te, będące swojego rodzaju danymi uwierzytelniającymi, mogą być używane do uwierzytelniania w serwisie Hubzilla wyłącznie w celu diff --git a/doc/pl/Features.md b/doc/pl/Features.md index 60a466be7..d6950e367 100644 --- a/doc/pl/Features.md +++ b/doc/pl/Features.md @@ -156,7 +156,7 @@ Dodatkowe sekcje i pola wyboru profilu. Rozszerza to zakres informacji profilowy **Import/Eksport proflilu** -Możliwość zaimportowania lub wyeksportowania swojego profilu na inne serwisy (węzły sieci Zot). Funkcjonalność ta związana jest z nomadycznością tożsamości internetowej w $Projectname. Domyślnie Twoja tożsamość "podróżuje" z Tobą, gdy przeglądasz matrycę zdalnych witryn - tam też wiedzą kim jesteś i mogą wyświetlać Ci treści, które tylko Ty widzisz. Dzięki rozszerzonemu udostępnianiu tożsamości możesz dostarczyć te informacje do dowolnej odwiedzanej witryny z poziomu swojej matrycy. +Możliwość zaimportowania lub wyeksportowania swojego profilu na inne serwisy (portale sieci Zot). Funkcjonalność ta związana jest z nomadycznością tożsamości internetowej w $Projectname. Domyślnie Twoja tożsamość "podróżuje" z Tobą, gdy przeglądasz matrycę zdalnych witryn - tam też wiedzą kim jesteś i mogą wyświetlać Ci treści, które tylko Ty widzisz. Dzięki rozszerzonemu udostępnianiu tożsamości możesz dostarczyć te informacje do dowolnej odwiedzanej witryny z poziomu swojej matrycy. **Wiele profili** diff --git a/doc/pl/Primary-Directory.md b/doc/pl/Primary-Directory.md index 529ec3221..55c61373d 100644 --- a/doc/pl/Primary-Directory.md +++ b/doc/pl/Primary-Directory.md @@ -2,20 +2,20 @@ Domyślnie $Projectname używa katalogów dostępnych w Internecie, które funkcjonują jako kanały. -Istnieją pewne scenariusze, w których może być potrzebny własny serwer katalogów, do którego można by podłączyć wiele węzłów. Ogranicza to dostęp tylko do kanałów w węzłach podłączonych do tego serwera katalogowego. +Istnieją pewne scenariusze, w których może być potrzebny własny serwer katalogów, do którego można by podłączyć wiele portali. Ogranicza to dostęp tylko do kanałów w portalipodłączonych do tego serwera katalogowego. -##Instrukcje dotyczące konfigurowania jednego węzła jako katalogu podstawowego dla wielu węzłów prywatnych.## +##Instrukcje dotyczące konfigurowania jednego portalu jako katalogu podstawowego dla wielu portali prywatnych.## *** -* W węźle, który będzie serwerem katalogów, otwórz plik .htconfig.php i ustaw: +* Na portalu , który będzie serwerem katalogów, otwórz plik .htconfig.php i ustaw: `App::$config['system']['directory_mode'] = DIRECTORY_MODE_PRIMARY;` Domyślnie, opcja ta powinna już być ustawiona na **DIRECTORY_MODE_NORMAL**, więc po prostu wystarczy tylko ustawić nową wartość: **DIRECTORY_MODE_PRIMARY** -* Następnie, w każdym węźle (w tym na serwerze katalogowym), w terminalu, przejdź do folderu, w którym jest zainstalowany kod węzła i uruchomić usługę katalogową: +* Następnie, na każdym portalu (w tym na serwerze katalogowym), w terminalu, przejdź do folderu z kodem $Projectname i uruchom usługę katalogową: `util/config system directory_realm YOURREALMNAME` @@ -27,17 +27,17 @@ Istnieją pewne scenariusze, w których może być potrzebny własny serwer kata (**THEPASSWORD** jest hasłem dla dziedziny katalogowej) - **UWAGA:** Trzeba użyć tej samej nazwy dziedziny i hasła dla każdego węzła + **UWAGA:** Trzeba użyć tej samej nazwy dziedziny i hasła dla każdego portalu -* Na koniec, dla każdego węzła "klienckiego", uruchom (z terminala): +* Na koniec, dla każdego portalu "klienckiego", uruchom (z terminala): `util/config system directory_server https://theaddressofyourdirectoryserver.com` *** -Teraz, gdy przeglądasz katalog każdego węzła, powinien on pokazywać tylko kanały, które istnieją w węzłach ustawionej domeny katalogowej. Do tej pory testowałem to z dwoma węzłami i wydaje się, że działa dobrze. -Kanały utworzone w każdym węźle są odzwierciedlane w katalogu głównym, a następnie w katalogu wszystkich węzłów klienckich +Teraz, gdy przeglądasz katalog każdego portalu, powinien on pokazywać tylko kanały, które istnieją w portalach ustawionej domeny katalogowej. Do tej pory testowałem to z dwoma portalami i wydaje się, że działa dobrze. +Kanały utworzone w każdym portalu są odzwierciedlane w katalogu głównym, a następnie w katalogu wszystkich portali klienckich ##Problemy## *** -Kiedy tworzyłem pierwszy węzeł, był on uruchomiony i działał przez około godzinę, zanim zmieniłem go na PRIMARY_MODE, a po zmianie w katalogu nadal było kilka kanałów z całej matrycy. Usunąłem je z tabeli xchan i wydaje się, że rozwiązało to problem. +Kiedy tworzyłem pierwszy portal, był on uruchomiony i działał przez około godzinę, zanim zmieniłem go na PRIMARY_MODE, a po zmianie w katalogu nadal było kilka kanałów z całej sieci. Usunąłem je z tabeli xchan i wydaje się, że rozwiązało to problem. diff --git a/doc/pl/about/about.bb b/doc/pl/about/about.bb index 943b9dc77..661d29487 100644 --- a/doc/pl/about/about.bb +++ b/doc/pl/about/about.bb @@ -1,11 +1,10 @@ [h3]Co to jest $Projectname?[/h3] -$Projectname to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych działających na specjalnym serwerze internetowym, zwanym "węzłem", który może łączyć się z innymi węzłami w sfederalizowanej sieci internetowej. +$Projectname to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych działających na specjalnym portalu internetowym, zwanym też "hubem", który może łączyć się z innymi portalami w sfederalizowanej sieci internetowej. $Projectname zapewnia użytkownikom zaawansowaną komunikację, tożsamości i usługę kontroli dostępu, które bezproblemowo współpracują w różnych domenach i niezależnych serwisach internetowych. $Projectname pozwala użytkownikom publikować treści, [b]publicznie[/b] lub [b]prywatnie[/b], w swoich "kanałach" (ang. channels), które są zabezpieczonymi kryptograficznie tożsamościami zapewniającymi -uwierzytelnianie uzytkowników niezależnie od węzłów, które hostują te kanały. To rewolucyjne uwolnienie tożsamości inernetowej z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot - nowej strukturze +uwierzytelnianie użytkowników niezależnie od portali, które hostują te kanały. To rewolucyjne uwolnienie tożsamości inernetowej z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot - nowej strukturze zdecentralizowanej kontroli dostępu ze szczegółowymi, rozszerzalnymi uprawnieniami. -Z praktycznego punktu widzenia członków danego węzła, korzystających z oprogramowania $Projectname, oferuje ono szereg znanych, -zintegrowanych aplikacji i usług internetowych, w tym: +Z praktycznego punktu widzenia członków danego portalu, korzystających z oprogramowania $Projectname, oferuje ono szereg znanych, zintegrowanych aplikacji i usług internetowych, w tym: [ul] [li]wątki dyskusyjne w sieciach społecznościowych[/li] [li]przechowywanie plików w chmurze[/li] @@ -13,7 +12,7 @@ zintegrowanych aplikacji i usług internetowych, w tym: [li]hosting stron internetowych z systemem zarządzania treścią[/li] [li]wiki[/li] [li]i dużo więcej ...[/li][/ul] -Chociaż wszystkie te aplikacje i usługi można znaleźć w innych pakietach oprogramowania, tylko $Projectname pozwala ustawić uprawnienia dla grup i osób, [b]które mogą nawet nie mieć kont na Twoim węźle[/b]! W typowych aplikacjach internetowych, jeśli chcesz udostępniać rzeczy prywatnie w Internecie, osoby, którym udostępniasz dane, muszą mieć konta na serwerze, na którym znajdują się Twoje dane; w przeciwnym razie serwer nie może uwierzytelniać odwiedzających witrynę, aby wiedzieć, czy przyznać im dostęp. $Projectname rozwiązuje ten problem za pomocą zaawansowanego systemu zdalnego uwierzytelniania, który weryfikuje tożsamość odwiedzających, wykorzystując techniki obejmujące kryptografię klucza publicznego. +Chociaż wszystkie te aplikacje i usługi można znaleźć w innych pakietach oprogramowania, tylko $Projectname pozwala ustawić uprawnienia dla grup i osób, [b]które mogą nawet nie mieć kont na Twoim portalu[/b]! W typowych aplikacjach internetowych, jeśli chcesz udostępniać rzeczy prywatnie w Internecie, osoby, którym udostępniasz dane, muszą mieć konta na serwerze, na którym znajdują się Twoje dane; w przeciwnym razie serwer nie może uwierzytelniać odwiedzających witrynę, aby wiedzieć, czy przyznać im dostęp. $Projectname rozwiązuje ten problem za pomocą zaawansowanego systemu zdalnego uwierzytelniania, który weryfikuje tożsamość odwiedzających, wykorzystując techniki obejmujące kryptografię klucza publicznego. Dzięki oferowanym aplikacjom, $Projectname świetnie się nadaje do budowy platformy komunikacyjno-publikacyjnej o charkterze społecznościowym dla realnych grup społecznych, takich jak rodziny, lokalne grupy, organizacje społeczne, środowiska szkolne, wspólnoty mieszkańców czy wspólnoty religijne. [h3]Stos programów[/h3] @@ -26,17 +25,17 @@ oraz innych narzędzi zewnętrznych. [h3]Słownik[/h3] [dl terms="b"] -[*= węzeł ([i]ang. hub[/i])] Instancja oprogramowania $Projectname działająca na standardowym serwerze WWW +[*= portal, hub ([i]ang. hub[/i])] Instancja oprogramowania $Projectname działająca na standardowym serwerze WWW -[*= sieć Zot, sieć ([i]w oryginale ang., grid[/i])] Globalna sieć węzłów, które wymieniają między sobą informacje za pomocą protokołu Zot. Nie są to tylko węzły oparte na $Projectname, ale wszystkie węzły implementujace protokół Zot. +[*= sieć Zot, sieć ([i]w oryginale ang., grid[/i])] Globalna sieć portali, które wymieniają między sobą informacje za pomocą protokołu Zot. Nie są to tylko portale oparte na $Projectname, ale wszystkie portale implementujące protokół Zot. [*= kanał ([i]ang. channel[/i])] Forma organizacji treści i techniczny odpowiednik tożsamości. Kanał może mieć formę osobistej witryny internetowej, bloga, forum i innych znanych form publikowania treści. Kanały mogą łączyć się z innymi kanałami w celu udostępniania informacji z możliwością ustawiania bardzo szczegółowych uprawnień dostępu. -[*= klon ([i]ang. clone[/i])] Kanały mogą mieć klony innych na innych niezależnych węzłach. Komunikacja współdzielona z kanałem jest synchronizowana między klonami kanału, co umożliwia kanałowi wysyłanie i odbieranie wiadomości oraz dostęp do współdzielonych treści z wielu węzłów. Zapewnia to odporność na awarie sieci i sprzętu, które mogą stanowić poważny problem w przypadku serwerów WWW utrzymywanych na prywatnych serwerach w hostingu współdzielonym lub o ograniczonych zasobach. Klonowanie umożliwia też całkowite przeniesienie kanału z jednego węzła na drugi, z zabraniem wszystkich danych i połączeń. Zobacz "tożsamość nomadyczna". +[*= klon ([i]ang. clone[/i])] Kanały mogą mieć klony innych na innych niezależnych portalach. Komunikacja współdzielona z kanałem jest synchronizowana między klonami kanału, co umożliwia kanałowi wysyłanie i odbieranie wiadomości oraz dostęp do współdzielonych treści z wielu portali. Zapewnia to odporność na awarie sieci i sprzętu, które mogą stanowić poważny problem w przypadku serwerów WWW utrzymywanych na prywatnych serwerach w hostingu współdzielonym lub o ograniczonych zasobach. Klonowanie umożliwia też całkowite przeniesienie kanału z jednego portalu na drugi, z zabraniem wszystkich danych i połączeń. Zobacz "tożsamość nomadyczna". [*= konto ([i]ang. account[/i])] Umowny rejestr zawierajacy dane rejestracyjne i ewentualnie inne dane użytkownika serwisu internetowego, ściśle związane z umową jaką zwiera użytkownik z operatorem (właścicielem) serwisu o świadczenie usług drogą internetową. Posiadanie konta umożliwia użytkownikowi korzystanie z usług serwisu. Nie jest to pojęcie specyficzne dla platformy Hubzilla ale ma tu znaczenie węższe i należy go odróżniać od profilu lub tożsamości użytkownika. W Hubzilla, użytkownik (w ramach swojego konta) może mieć wiele tożsamości i te tożsamości utrzymywać na wielu odrębnych serwisach w sieci Zotm, w sposób zsynchronizowany. Na tych serwisach użytkownik musi mieć odrębne konta. -[*= tożsamość nomadyczna ([i]ang. nomadic identity[/i])] Możliwość uwierzytelniania i łatwej migracji tożsamości pomiędzy niezależnymi węzłami i domenami internetowymi. Tożsamość nomadyczna zapewnia prawdziwą własność tożsamości internetową, ponieważ tożsamości kontrolowane przez konto w węźle nie są ściśle związane z węzłem. Węzeł bardziej przypomina "hosta" kanałów. W serwisie $Projectname nie masz "konta" na serwerze, tak jak na typowych serwisach internetowych - posiadasz tożsamość, którą możesz przenosić w całej sieci za pomocą mechanizmu klonowania. +[*= tożsamość nomadyczna ([i]ang. nomadic identity[/i])] Możliwość uwierzytelniania i łatwej migracji tożsamości pomiędzy niezależnymi portalami i domenami internetowymi. Tożsamość nomadyczna zapewnia prawdziwą własność tożsamości internetową, ponieważ tożsamości kontrolowane przez konto na portalu nie są ściśle związane z tym portalem. Portal bardziej przypomina "hosta" kanałów. W serwisie $Projectname nie masz "konta" na serwerze, tak jak na typowych serwisach internetowych - posiadasz tożsamość, którą możesz przenosić w całej sieci za pomocą mechanizmu klonowania. [*= [url=[baseurl]/help/developer/zot_protocol]Protokół Zot[/url]] Nowy protokół, oparty na JSON, do wdrażania bezpiecznej, zdecentralizowanej komunikacji i usług. Różni się od wielu innych protokołów komunikacyjnych, budując komunikację na podstawie zdecentralizowanej struktury tożsamości i uwierzytelniania. Składnik uwierzytelniania jest koncepcyjnie podobny do OpenID, ale jest odizolowany od tożsamości opartej na DNS. Tam, gdzie to możliwe, zdalne uwierzytelnianie jest ciche i niewidoczne. Zapewnia to mechanizm kontroli dostępu rozproszonego na skalę sieci WWW, który jest dyskretny. [/dl] @@ -106,7 +105,7 @@ Wpisy i wiadomości mogą być tworzone z datą wygaśnięcia, po którym zostan [h4]Federalizacja usług (Service Federation)[/h4] Oprócz dodatkowych łączników między wpisami z różnych alternatywnych sieci, istnieje natywna obsługa importu treści z kanałów RSS i Atom i wykorzystywania jej do tworzenia specjalnych kanałów. Dostępne są również wtyczki do komunikacji z innymi sieciami za pomocą protokołów Diaspora i GNU-Social (OStatus). Sieci te nie obsługują tożsamości nomadycznej ani kontroli dostępu między domenami. Jednak podstawowa komunikacja jest obsługiwana: do i z Diaspora, Friendica, GNU-Social, Mastodon i innych dostawców, którzy używają tych protokołów. -Istnieje również eksperymentalna obsługa uwierzytelniania OpenID, której można używać na listach kontroli dostępu. To jest jeszcze w trakcie tworzenia, ale poeksperymentować można. Twój węzeł $Projectname może być używany jako dostawca OpenID do uwierzytelniania członków w zewnętrznych usługach korzystających z tej technologii. +Istnieje również eksperymentalna obsługa uwierzytelniania OpenID, której można używać na listach kontroli dostępu. To jest jeszcze w trakcie tworzenia, ale poeksperymentować można. Twój portal $Projectname może być używany jako dostawca OpenID do uwierzytelniania członków w zewnętrznych usługach korzystających z tej technologii. Kanały mogą mieć uprawnienia, aby stać się "kanałami pochodnymi", w przypadku gdy dwa lub więcej istniejących kanałów łączy się, tworząc nowy kanał tematyczny. @@ -118,7 +117,7 @@ Nasza implementacja grup prywatności jest podobna do "kręgów" w Google i "asp Zapewniamy łatwy dostęp do katalogu członków i udostępniamy zdecentralizowane narzędzia, które mogą dostarczać "sugestie" znajomych. Katalogi to zwykłe serwisy $Projectname, które zdecydowały się zaakceptować rolę serwera katalogowego. Wymaga to więcej zasobów niż większość typowych serwisów, więc nie jest to ustawienie domyślne. Katalogi są synchronizowane i dublowane, dzięki czemu wszystkie zawierają aktualne informacje o całej sieci (z zastrzeżeniem normalnych opóźnień propagacji). Więcej na ten temat znajdziesz w artykule [Konfiguracja katalogu](/help/pl/directories). [h4]TLS/SSL[/h4] -W przypadku węzłów $Projectname, które używają TLS/SSL, komunikacja między klientem a serwerem jest szyfrowana za pomocą protokołu TLS/SSL. Biorąc pod uwagę niedawno ujawnione w mediach fakty dotyczące powszechnego, globalnego nadzoru i obchodzenia szyfrowania przez NSA i GCHQ, uzasadnione jest założenie, że komunikacja chroniona przez HTTPS może być zagrożona na różne sposoby. W konsekwencji prywatna komunikacja jest szyfrowana na wyższym poziomie przed wysłaniem na zewnątrz. +W przypadku portali $Projectname, które używają TLS/SSL, komunikacja między klientem a serwerem jest szyfrowana za pomocą protokołu TLS/SSL. Biorąc pod uwagę niedawno ujawnione w mediach fakty dotyczące powszechnego, globalnego nadzoru i obchodzenia szyfrowania przez NSA i GCHQ, uzasadnione jest założenie, że komunikacja chroniona przez HTTPS może być zagrożona na różne sposoby. W konsekwencji prywatna komunikacja jest szyfrowana na wyższym poziomie przed wysłaniem na zewnątrz. [h4]Konfiguracja kanałów[/h4] Podczas tworzenia kanału wybierana jest rola, która stosuje szereg wstępnie skonfigurowanych ustawień zabezpieczeń i prywatności. Są one wybierane z uwzględnieniem najlepszych praktyk, aby zachować prywatność na żądanym poziomie. @@ -143,19 +142,19 @@ Fora to zazwyczaj kanały, w których może uczestniczyć wielu autorów. Obecni Fora mogą być tworzone przez każdego i używane w dowolnym celu. Katalog zawiera opcję wyszukiwania forów publicznych. Fora prywatne mogą być publikowane tylko dla członków i często tylko przez nich widoczne. [h4]Klonowanie tożsamości[/h4] -Kanały platformy $Projectname nazywane są [i]tożsamościami nomadycznymi[/i], ponieważ tożsamość członka (jego profil i związany z nim kanał) nie jest powiązana z węzłem, w którym tożsamość została pierwotnie utworzona. Na przykład, kiedy tworzysz konto na Facebooku lub Gmailu, jest ono ściśle powiązane z tymi usługami - mie możesz używać tych usług poza Facebook.com czy Gmail.com. Z drugiej strony załóżmy, że masz konto na serwisie Hubzillahub.com i w ramach tego konta utworzyłeś kanał o nazwie [code]jacek@Hubzillahub.com[/code]. Możesz sklonować go do innego węzła Hubzilla, wybierając tę ​​samą lub inną nazwę, np. [code]blogJacka@SomeHubzillahub.info[/code]. +Kanały platformy $Projectname nazywane są [i]tożsamościami nomadycznymi[/i], ponieważ tożsamość członka (jego profil i związany z nim kanał) nie jest powiązana z portalem, w którym tożsamość została pierwotnie utworzona. Na przykład, kiedy tworzysz konto na Facebooku lub Gmailu, jest ono ściśle powiązane z tymi usługami - mie możesz używać tych usług poza Facebook.com czy Gmail.com. Z drugiej strony załóżmy, że masz konto na serwisie Hubzillahub.com i w ramach tego konta utworzyłeś kanał o nazwie [code]jacek@Hubzillahub.com[/code]. Możesz sklonować go do innego portalu Hubzilla, wybierając tę ​​samą lub inną nazwę, np. [code]blogJacka@SomeHubzillahub.info[/code]. -Z drugiej strony załóżmy, że utworzyłeś tożsamość $Projectname o nazwie [code]tina@$Projectnamehub.com[/code]. Możesz sklonować ją do innego węzła $Projectname, wybierając tę ​​samą lub inną nazwę, np. [code]liveForever@Some$ProjectnameHub.info[/code]. +Z drugiej strony załóżmy, że utworzyłeś tożsamość $Projectname o nazwie [code]tina@$Projectnamehub.com[/code]. Możesz sklonować ją do innego portalu $Projectname, wybierając tę ​​samą lub inną nazwę, np. [code]liveForever@Some$ProjectnameHub.info[/code]. Oba kanały są teraz zsynchronizowane, co oznacza, że ​​wszystkie Twoje kontakty i preferencje zostaną zduplikowane na klonie. Nie ma znaczenia, czy wyślesz wpis z pierwotnego centrum, czy z nowego. Wpisy będą dublowane na obu kontach. To dość rewolucyjna funkcja, jeśli weźmiemy pod uwagę kilka scenariuszy: - - Co się stanie, jeśli węzeł, na którym oparta jest tożsamość, nagle przestanie działać? Bez sklonowania tożsamości członek tego węzła nie będzie mógł się komunikować, dopóki węzeł nie wróci do trybu online (bez wątpienia wielu z Was widziało i przeklęło "Fail Whale" na Twitterze). Dzięki klonowaniu wystarczy zalogować się na sklonowane konto, a życie toczy się normalnie. + - Co się stanie, jeśli portal, na którym oparta jest tożsamość, nagle przestanie działać? Bez sklonowania tożsamości członek tego portalu nie będzie mógł się komunikować, dopóki portal nie wróci do trybu online (bez wątpienia wielu z Was widziało i przeklęło "Fail Whale" na Twitterze). Dzięki klonowaniu wystarczy zalogować się na sklonowane konto, a życie toczy się normalnie. - - Administrator twojego węzła nie może już sobie pozwolić na opłacanie swojego bezpłatnego i publicznego węzła $Projectname. Zapowiada, że ​​węzeł zostanie zamknięty za dwa tygodnie. Dzięki temu masz wystarczająco dużo czasu na sklonowanie swojej tożsamośc i zachowanie relacji, znajomych i treści z zamykanego serwisu $Projectname. + - Administrator twojego portalu nie może już sobie pozwolić na opłacanie swojego bezpłatnego i publicznego portalu $Projectname. Zapowiada, że portal zostanie zamknięty za dwa tygodnie. Dzięki temu masz wystarczająco dużo czasu na sklonowanie swojej tożsamośc i zachowanie relacji, znajomych i treści z zamykanego serwisu $Projectname. - - A jeśli Twoja tożsamość podlega rządowej cenzurze? Twój dostawca węzła może zostać zmuszony do usunięcia Twojego konta wraz z wszelkimi tożsamościami i powiązanymi danymi. Dzięki klonowaniu, $Projectname stawia opór cenzurze. Możesz mieć setki klonów, jeśli chcesz, wszystkie nazwane inaczej i istniejące w wielu różnych węzłach, rozrzuconych po Internecie. + - A jeśli Twoja tożsamość podlega rządowej cenzurze? Operator Twojego portalu może zostać zmuszony do usunięcia Twojego konta wraz z wszelkimi tożsamościami i powiązanymi danymi. Dzięki klonowaniu, $Projectname stawia opór cenzurze. Możesz mieć setki klonów, jeśli chcesz, wszystkie nazwane inaczej i istniejące w wielu różnych portalach, rozrzuconych po Internecie. $Projectname oferuje interesujące nowe możliwości prywatności. Więcej informacji można znaleźć na stronie "Najlepsze praktyki w komunikacji prywatnej". Obowiązują pewne zastrzeżenia. Aby uzyskać pełne wyjaśnienie klonowania tożsamości, przeczytaj stronę "JAK SKLONOWAĆ SWOJĄ TOŻSAMOŚĆ". @@ -171,7 +170,7 @@ $Projectname oferuje prosty sposób wykonywania kopii zapasowej konta za jednym Konta można natychmiast usunąć, klikając link. Otóż to. Wszystkie powiązane treści są następnie usuwane z sieci (w tym wpisy i wszelkie inne treści utworzone przez usunięty profil). W zależności od liczby posiadanych połączeń proces usuwania zdalnej zawartości może zająć trochę czasu, ale zaplanowany jest tak szybko, jak to możliwe. [h4]Usuwanie treści[/h4] -Wszelkie treści utworzone w Hubzilli pozostają pod kontrolą członka (lub kanału), który je pierwotnie utworzył. W dowolnym momencie członek może usunąć wiadomość lub zakres wiadomości. Proces usuwania zapewnia, że treść zostanie usunięta, niezależnie od tego, czy została opublikowana w głównym (macierzystym) węźle kanału, czy w innym węźle, gdzie kanał został zdalnie uwierzytelniony za pośrednictwem Zot (protokół komunikacji i uwierzytelniania $Projectname). +Wszelkie treści utworzone w Hubzilli pozostają pod kontrolą członka (lub kanału), który je pierwotnie utworzył. W dowolnym momencie członek może usunąć wiadomość lub zakres wiadomości. Proces usuwania zapewnia, że treść zostanie usunięta, niezależnie od tego, czy została opublikowana w głównym (macierzystym) portalu kanału, czy w innym portalu, gdzie kanał został zdalnie uwierzytelniony za pośrednictwem Zot (protokół komunikacji i uwierzytelniania $Projectname). [h4]Media[/h4] Podobnie jak każdy inny nowoczesny system blogowania, sieć społecznościowa lub usługa mikroblogowania, $Projectname obsługuje przesyłanie plików, osadzanie filmów, łączenie stron internetowych. diff --git a/doc/pl/about/project.bb b/doc/pl/about/project.bb index f0cbcbe60..d41bcad63 100644 --- a/doc/pl/about/project.bb +++ b/doc/pl/about/project.bb @@ -26,25 +26,25 @@ Głosowanie społeczności nie zawsze zapewnia Powszechnie akceptowany wynik i m Q: Kto może widzieć moją treść? -A: Domyślnie KAŻDY w Internecie, chyba że ograniczysz do niej dostęp. $Projectname pozwala wybrać żądany poziom prywatności. Treści podlegające ograniczeniom NIE będą widoczne dla "sieci szpiegowskich" i reklamodawców. Będą chroniona przed podsłuchem przez osoby wpisronne - najlepiej jak potrafimy. Administratorzy centrów z wystarczającymi umiejętnościami i cierpliwością MOGĄ być w stanie podsłuchiwać niektóre prywatne wiadomości, ale muszą dołożyć starań, aby to zrobić. W $Projectname istnieją tryby prywatności, które są nawet odporne na podsłuchiwanie przez wykwalifikowanych i zdeterminowanych administratorów węzłów. +A: Domyślnie KAŻDY w Internecie, chyba że ograniczysz do niej dostęp. $Projectname pozwala wybrać żądany poziom prywatności. Treści podlegające ograniczeniom NIE będą widoczne dla "sieci szpiegowskich" i reklamodawców. Będą chroniona przed podsłuchem przez osoby postronne - najlepiej jak potrafimy. Administratorzy portali z wystarczającymi umiejętnościami i cierpliwością MOGĄ być w stanie podsłuchiwać niektóre prywatne wiadomości, ale muszą dołożyć starań, aby to zrobić. W $Projectname istnieją tryby prywatności, które są nawet odporne na podsłuchiwanie przez wykwalifikowanych i zdeterminowanych administratorów portali. Q: Czy moje treści mogą zostać ocenzurowane? -A: Z założenie, $Projectname (jako sieć) NIE MOŻE cenzurować twoich treści. Administratorzy serwerów i węzłów podlegają lokalnemu prawodawstwu i MOGĄ usunąć budzące zastrzeżenia treści ze swojego serwisu (węzła). Każdy może zostać administratorem węzła, w tym Ty. Dlatego publikuj treści, które w innym przypadku mogłyby zostać ocenzurowane. Nadal MOŻESZ podlegać lokalnemu prawodawstwu. +A: Z założenie, $Projectname (jako sieć) NIE MOŻE cenzurować twoich treści. Administratorzy serwerów i portali podlegają lokalnemu prawodawstwu i MOGĄ usunąć budzące zastrzeżenia treści ze swojego portalu. Każdy może zostać administratorem portalu, w tym Ty. Dlatego publikuj treści, które w innym przypadku mogłyby zostać ocenzurowane. Nadal MOŻESZ podlegać lokalnemu prawodawstwu. [h5]Definicje[/h5] **$Projectname** -Inaczej nazywana "siecią", $Projectname jest zbiorem pojedynczych komputerów (serwerów) (czyli **węzłów**. ang. *hubs*), które łączą się razem, tworząc większą sieć kooperacyjną. +Inaczej nazywane "platformą $Projectname", jest oprogramowaniem do budowania portali internetowych zdolnych do tworzenia zdecenralizowanych sieci społecznościowych. Poszczególne portale są węzłami tej sieci (ang. *hubs*) i mogą łączyć się z innymi federacyjnymi sieciami społecznościowymi, tworząc razem globalną sieć społecznosciową, zwaną "Fediverse". -**węzeł** (ang. *hub*) +**portal, hub** (ang. *hub*) -Pojedynczy komputer lub serwer podłączony do $Projectname. Jest on dostarczany przez **administratora węzła** i może być publiczny lub prywatny, płatnu lub bezpłatny. +Implementacja $Projectname na serwerze internetowym. Stanowi serwis internetowy sieci WWW. Jest on dostarczany przez **operatora portalu** i może być publiczny lub prywatny, płatnu lub bezpłatny. -*administrator węzła** +*administrator portalu** -Operator systemu pojedynczego węzła. +Osoba wyznaczona przez operator portalu do zarządzania portalem. [h5]Polityki[/h5] @@ -54,7 +54,7 @@ Wszelkie informacje lub cokolwiek zamieszczone przez Ciebie w $Projectname MOŻE Twoje zdjęcie profilowe, nazwa Twojego kanału i lokalizacja (adres URL lub adres sieciowy) Twojego kanału są widoczne dla każdego w internecie, a kontrola prywatności nie wpływa na wyświetlanie tych elementów. -MOŻESZ dodatkowo podać inne informacje profilowe. Wszelkie informacje, które podajesz w swoim „domyślnym” lub **publicznym profilu** MOGĄ zostać przesłane do innych węzłów w $Projectname i dodatkowo MOGĄ zostać wyświetlone w katalogu kanałów. Możesz ograniczyć wyświetlanie tych informacji profilowych. Może być ograniczone tylko do członków twojego węzła lub tylko połączeń (znajomych) lub innych ograniczonych grup widzów, zgodnie z twoim życzeniem. Jeśli chcesz, aby Twój profil był ograniczony, musisz ustawić odpowiednie ustawienia prywatności lub po prostu NIE podawać dodatkowych informacji. +MOŻESZ dodatkowo podać inne informacje profilowe. Wszelkie informacje, które podajesz w swoim „domyślnym” lub **publicznym profilu** MOGĄ zostać przesłane do innych portali w $Projectname i dodatkowo MOGĄ zostać wyświetlone w katalogu kanałów. Możesz ograniczyć wyświetlanie tych informacji profilowych. Może być ograniczone tylko do członków twojego portalu lub tylko połączeń (znajomych) lub innych ograniczonych grup widzów, zgodnie z twoim życzeniem. Jeśli chcesz, aby Twój profil był ograniczony, musisz ustawić odpowiednie ustawienia prywatności lub po prostu NIE podawać dodatkowych informacji. **Treść** @@ -68,27 +68,27 @@ Komentarze do wpisów stworzonych przez innych oraz wpisy oznaczone jako wpisy n **Informacja prywatna** -Programiści $Projectname zapewnią, że każda dostarczona przez Ciebie zawartość oznaczona jako PRYWATNA będzie chroniona przed podsłuchem - najlepiej jak potrafią. Zawartość kanału prywatnego MOŻE być widoczna w bazie danych każdego zaangażowanego administratora węzła, ale prywatne wiadomości są ukrywane w bazie danych. To ostatnie oznacza, że jest to bardzo trudne, ale NIE niemożliwe, aby te treści były widoczne dla administratora węzła. Treść kanału prywatnego i wiadomości prywatne są również usuwane z powiadomień e-mail. Pełne szyfrowanie jest oferowane jako funkcja opcjonalna i NIE MOŻE być widoczne, nawet dla zdeterminowanego administratora. +Programiści $Projectname zapewnią, że każda dostarczona przez Ciebie zawartość oznaczona jako PRYWATNA będzie chroniona przed podsłuchem - najlepiej jak potrafią. Zawartość kanału prywatnego MOŻE być widoczna w bazie danych każdego zaangażowanego administratora portalu, ale prywatne wiadomości są ukrywane w bazie danych. To ostatnie oznacza, że jest to bardzo trudne, ale NIE niemożliwe, aby te treści były widoczne dla administratora portalu. Treść kanału prywatnego i wiadomości prywatne są również usuwane z powiadomień e-mail. Pełne szyfrowanie jest oferowane jako funkcja opcjonalna i NIE MOŻE być widoczne, nawet dla zdeterminowanego administratora. [h5]Prywatność tożsamości[/h5] -Prywatność dla Twojej tożsamości to kolejny aspekt. Ponieważ masz zdecentralizowaną tożsamość w $Projectname, Twoja prywatność wykracza poza domowy węzeł. Jeśli chcesz mieć pełną kontrolę nad swoją prywatnością i bezpieczeństwem, powinieneś uruchomić własny węzeł na dedykowanym serwerze. Dla wielu osób jest to skomplikowane ale może poszerzyć ich możliwości techniczne. Wymieńmy więc kilka środków ostrożności, które możesz podjąć, aby zapewnić sobie jak największą prywatność. +Prywatność dla Twojej tożsamości to kolejny aspekt. Ponieważ masz zdecentralizowaną tożsamość w $Projectname, Twoja prywatność wykracza poza Twój portal. Jeśli chcesz mieć pełną kontrolę nad swoją prywatnością i bezpieczeństwem, powinieneś uruchomić własny portal na dedykowanym serwerze. Dla wielu osób jest to skomplikowane ale może poszerzyć ich możliwości techniczne. Wymieńmy więc kilka środków ostrożności, które możesz podjąć, aby zapewnić sobie jak największą prywatność. -Zdecentralizowana tożsamość ma wiele zalet i daje wiele interesujących funkcji, ale powinieneś być świadomy faktu, że Twoja tożsamość jest znana innym węzłom w sieci $Projectname. Jedną z tych zalet jest to, że inne kanały mogą udostępniać dostosowane treści i umożliwiać oglądanie prywatnych rzeczy (takich jak prywatne zdjęcia, które inni chcą Ci udostępnić). Z tego powodu te kanały muszą wiedzieć, kim jesteś. Ale rozumiemy, że czasami te inne kanały wiedzą od Ciebie więcej, niż byś sobie tego życzył. Na przykład wtyczka Visage, która może poinformować właściciela kanału o ostatniej wizycie w jego profilu. Możesz łatwo zrezygnować z tego niskiego poziomu i uważamy, że jest to nieszkodliwe śledzenie. +Zdecentralizowana tożsamość ma wiele zalet i daje wiele interesujących funkcji, ale powinieneś być świadomy faktu, że Twoja tożsamość jest znana innym portalom w sieci $Projectname. Jedną z tych zalet jest to, że inne kanały mogą udostępniać dostosowane treści i umożliwiać oglądanie prywatnych rzeczy (takich jak prywatne zdjęcia, które inni chcą Ci udostępnić). Z tego powodu te kanały muszą wiedzieć, kim jesteś. Ale rozumiemy, że czasami te inne kanały wiedzą od Ciebie więcej, niż byś sobie tego życzył. Na przykład wtyczka Visage, która może poinformować właściciela kanału o ostatniej wizycie w jego profilu. Możesz łatwo zrezygnować z tego niskiego poziomu i uważamy, że jest to nieszkodliwe śledzenie. * Możesz włączyć [url=http://donottrack.us/]Do Not Track (DNT)[/url] w swojej przeglądarce internetowej. Szanujemy tą nową propozycję polityki prywatności. Wszystkie nowoczesne przeglądarki obsługują DNT. Znajdziesz to w ustawieniach prywatności swojej przeglądarki lub możesz zapoznać się z instrukcją przeglądarki internetowej. Nie wpłynie to na funkcjonalność $Projectname. To ustawienie jest prawdopodobnie wystarczające dla większości ludzi. * Możesz [url=[baseurl]/settings]wyłączyć publikację[/url] swojego kanału w naszym katalogu kanałów. Jeśli chcesz, aby ludzie mogli znaleźć Twój kanał, podaj im adres swojego kanału. Uważamy, że jest to dobra wskazówka, że wolisz dodatkową prywatność i automatycznie włączasz opcję "Nie śledź", jeśli tak jest. -* Możesz mieć zablokowany węzeł. Oznacza to, że wszystkie kanały i treści w tym wężle nie są publiczne ani widoczne dla świata zewnętrznego. To jest coś, co może zrobić tylko administrator węzła. Szanujemy to również i automatycznie włączamy opcję "Nie śledź:, jeśli jest ustawiona. +* Możesz mieć zablokowany portal. Oznacza to, że wszystkie kanały i treści na tym portalu nie są publiczne ani widoczne dla świata zewnętrznego. To jest coś, co może zrobić tylko administrator portalu. Szanujemy to również i automatycznie włączamy opcję "Nie śledź:, jeśli jest ustawiona. [h5]Cenzura[/h5] $Projectname to globalna sieć obejmująca wszystkie religie i kultury. Nie oznacza to, że każdy członek sieci czuje się tak samo jak Ty w spornych kwestiach, a niektórzy ludzie mogą MOCNO sprzeciwić się publikowanym przez Ciebie treściom. Ogólnie rzecz biorąc, jeśli chcesz opublikować coś, o czym wiesz, że nie jest powszechnie akceptowane, najlepszym rozwiązaniem jest ograniczenie odbiorców za pomocą kontroli prywatności do małego kręgu znajomych. -$Projectname jako dostawca sieci nie może cenzurować zawartości. Jednak administratorzy węzłów MOGĄ cenzurować wszelkie treści, które pojawiają się w ich węźle, aby zachować zgodność z lokalnym prawem, a nawet osobistym osądem. Ich decyzja jest ostateczna. Jeśli masz problemy z jakimkolwiek administratorem węzła, możesz przenieść swoje konto i wpisy do innej witryny, która jest bardziej zgodna z Twoimi oczekiwaniami. Sprawdzaj (okresowo) [Warunki świadczenia usług](help/TermsOfService) swojego węzła, aby poznać wszelkie zasady lub wytyczne. Jeśli Twoje treści składają się z materiałów, które są nielegalne lub mogą powodować problemy, MOCNO zachęcamy do hostowania własnych (zostań administratorem własnego węzła). Mimo to. możesz stwierdzić, że Twoje treści są zablokowane w niektórych węzłach, ale $Projectname jako sieć nie może wogóle zablokować ich publikowania. +$Projectname jako dostawca sieci nie może cenzurować zawartości. Jednak administratorzy portali MOGĄ cenzurować wszelkie treści, które pojawiają się w ich portalu, aby zachować zgodność z lokalnym prawem, a nawet osobistym osądem. Ich decyzja jest ostateczna. Jeśli masz problemy z jakimkolwiek administratorem portali, możesz przenieść swoje konto i wpisy do innej witryny, która jest bardziej zgodna z Twoimi oczekiwaniami. Sprawdzaj (okresowo) [Warunki świadczenia usług](help/TermsOfService) swojego portalu, aby poznać wszelkie zasady lub wytyczne. Jeśli Twoje treści składają się z materiałów, które są nielegalne lub mogą powodować problemy, MOCNO zachęcamy do hostowania własnych (zostań administratorem własnego portalu). Mimo to. możesz stwierdzić, że Twoje treści są zablokowane w niektórych portalach, ale $Projectname jako sieć nie może w ogóle zablokować ich publikowania. -$Projectname ZALECA, aby administratorzy węzłów zapewnili okres karencji wynoszący 1-2 dni między ostrzeżeniem właściciela konta o treści, którą należy usunąć, a fizycznym usunięciem lub wyłączeniem konta. Dzięki temu właściciel treści będzie mógł wyeksportować metadane swojego kanału i zaimportować je do innej witryny. W rzadkich przypadkach treść może mieć taki charakter, że uzasadnia natychmiastowe zamknięcie konta. To jest decyzja właściciela węzła, a nie decyzja $Projectname. +W $Projectname ZALECA się, aby administratorzy portali zapewnili okres karencji wynoszący 1-2 dni między ostrzeżeniem właściciela konta o treści, którą należy usunąć, a fizycznym usunięciem lub wyłączeniem konta. Dzięki temu właściciel treści będzie mógł wyeksportować metadane swojego kanału i zaimportować je do innej witryny. W rzadkich przypadkach treść może mieć taki charakter, że uzasadnia natychmiastowe zamknięcie konta. To jest decyzja właściciela portalu, a nie decyzja $Projectname. Jeśli zazwyczaj i regularnie publikujesz treści dla dorosłych lub obraźliwe, MOCNO zachęcamy do oznaczenia swojego konta jako „NSFW” (Not Safe For Work). Zapobiegnie to wyświetlaniu Twojego zdjęcia profilowego w katalogu, z wyjątkiem przeglądających, którzy zdecydowali się wyłączyć „tryb bezpieczny”. Jeśli administratorzy katalogu uznają Twoje zdjęcie profilowe za nieobyczajne lub obraźliwe, administrator katalogu MOŻE oznaczyć Twoje zdjęcie profilowe jako NSFW. Obecnie nie ma oficjalnego mechanizmu do zakwestionowania lub cofnięcia tej decyzji, dlatego NALEŻY oznaczyć własne konto jako NSFW, jeśli może być nieodpowiednie dla ogółu odbiorców. diff --git a/doc/pl/addons.bb b/doc/pl/addons.bb index bf1ed04f6..5c1690d44 100644 --- a/doc/pl/addons.bb +++ b/doc/pl/addons.bb @@ -10,7 +10,7 @@ [*] calc - kalkulator naukowy [*] chess - interaktywne gry w szachy z uwzględnieniem tożsamości międzydomenowej [*] chords - generowanie wykresów palcowania i alternatyw dla każdego znanego akordu gitarowego -[*] custom_home - ustawianie własnej strony jako strony początkowej węzła +[*] custom_home - ustawianie własnej strony jako strony początkowej portalu [*] diaspora - emulator protokołu Diaspora [*] dirstats - wyświetlanie interesujących statystyk generowanych przez serwer katalogowy [*] docs - alternatywne strony dokumentacji @@ -18,7 +18,7 @@ [*] dreamhost - zapewnia bardziej niezawodną usługę na hostingu współdzielonym Dreamhost [*] dwpost - krzyżowe wpisy do Dreamwidth [*] emojione - zezwala na uzywanie emojis jako emotikonów -[*] extcron - stosowanie zewnętrznej usługi cron do uruchamiania zaplanowanych zadań węzła +[*] extcron - stosowanie zewnętrznej usługi cron do uruchamiania zaplanowanych zadań portalu [*] firefox - dostarcza link do zainstalowania API Sharing Firefoxa [*] flattrwidget - dostarcza przyciski "Flattr Us" [*] flip - tworzenie odwróconego tekstu @@ -28,7 +28,7 @@ [*] gnusoc - protokół GNU-Social (OStatus). W tworzeniu. [*] hexit - narzędzie do konwersji szesnastkowej [*] hilite - umożliwia podświetlanie bloków kodu, specyficzne dla języka programowania, zawartych we wpisach -[*] hubwall - wysyłanie wiadomosci e-mail administratora na wszystkie konta w węźle +[*] hubwall - wysyłanie wiadomosci e-mail administratora na wszystkie konta w portalu [*] ijpost - krzyżówe wpisy do Insanejournal [*] irc - połączenie z czatami IRC [*] jappixmini - czat XMPP @@ -81,7 +81,7 @@ [*] statusnet - wpisy krzyżówe do GNU-social i StatusNet [zrl=[baseurl]/help/addons_gnusocial]Posting To Gnu Social[/zrl] [*] std_embeds - umożłiwia niefiltrowane osadzanie dla popularnych dostawców strumieni, takich jak youtube, vimeo i soundcloud [*] superblock - bardzo zalecane - całkowite blokowanie obraźliwuch kanałów w swoim strumieniu -[*] testdrive - zmienia węzęł w witrynę testową z kontami, które wygasają po okresie próbnym +[*] testdrive - zmienia portal w witrynę testową z kontami, które wygasają po okresie próbnym [*] tictac - 3D tic-tac-toe [*] torch - aplikacja podświetlania (flashlight) [*] tour - prezentacja funkcji dla nowych członków diff --git a/doc/pl/admin/administrator_guide.md b/doc/pl/admin/administrator_guide.md index 3598b1509..344ce81c0 100644 --- a/doc/pl/admin/administrator_guide.md +++ b/doc/pl/admin/administrator_guide.md @@ -20,7 +20,7 @@ POWINNO się używać SSL. Jeśli używasz SSL, MUSISZ użyć certyfikatu uznawa Przetestuj swój certyfikat przed instalacją. Narzędzie internetowe do testowania certyfikatu jest dostępne pod adresem http://www.digicert.com/help/. Odwiedzając witrynę po raz pierwszy, użyj adresu URL SSL (https://), jeśli protokół SSL jest dostępny. Pozwoli to uniknąć późniejszych problemów. Procedura instalacji nie pozwoli na użycie certyfikatu, który nie jest zaufany dla przeglądarki. -To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą zawierać odniesienia do obrazów na Twoim węźle. Inni członkowie przeglądający swój strumień na innych węzłach otrzymają w swojej przeglądarce ostrzeżenia, jeśli Twój certyfikat nie jest zaufany. To może zmylić wiele osób, ponieważ jest to zdecentralizowana sieć i otrzymają ostrzeżenie o Twoim węźle podczas przeglądania własnego węzła i mogą pomyśleć, że ich własny węzeł ma problem. Te ostrzeżenia są bardzo techniczne i przerażające dla niektórych osób, z których wielu nie będzie wiedziało, jak postępować i podporządkuje się zaleceniom przeglądarki. Jest to destrukcyjne dla społeczności. Zdajemy sobie sprawę z problemów związanych z obecną infrastrukturą certyfikatów i zgadzamy się, że istnieje wiele problemów, ale to nie zmienia wymagania - szyfrowanie połączeń HTTP jest konieczne. +To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą zawierać odniesienia do obrazów na Twoim portalu. Inni członkowie przeglądający swój strumień na innych portalach otrzymają w swojej przeglądarce ostrzeżenia, jeśli Twój certyfikat nie jest zaufany. To może zmylić wiele osób, ponieważ jest to zdecentralizowana sieć i otrzymają ostrzeżenie o Twoim portalu podczas przeglądania własnego portalu i mogą pomyśleć, że ich własny portal ma problem. Te ostrzeżenia są bardzo techniczne i przerażające dla niektórych osób, z których wielu nie będzie wiedziało, jak postępować i podporządkuje się zaleceniom przeglądarki. Jest to destrukcyjne dla społeczności. Zdajemy sobie sprawę z problemów związanych z obecną infrastrukturą certyfikatów i zgadzamy się, że istnieje wiele problemów, ale to nie zmienia wymagania - szyfrowanie połączeń HTTP jest konieczne. Bezpłatne certyfikaty zgodne z przeglądarkami są dostępne od dostawców, takich jak StartSSL czy LetsEncrypt. @@ -30,7 +30,7 @@ Jeśli używasz LetsEncrypt do dostarczania certyfikatów i tworzenia pliku pod ### Wdrożenie -Nowy węzeł można wdrożyć na kilka sposobów: +Nowy portal można wdrożyć na kilka sposobów: * ręczna inastalaja na istniejącym serwerze; * automatyczna instalacja na istniejącym serwerze przy użyciu skryptu instalacyjnego; @@ -313,7 +313,7 @@ Na stronie katalogu kanałów może pojawiać się chmura słów kluczowych. Je util/config system disable_directory_keywords 1 -Jeśli twój węzeł pracuje w trybie autonomicznym, ponieważ nie chcesz łączyć się z globalną siecią, możesz zamiast tego ustawić opcję systemową _directory_server_ na wartość pustą: +Jeśli twój portal pracuje w trybie autonomicznym, ponieważ nie chcesz łączyć się z globalną siecią, możesz zamiast tego ustawić opcję systemową _directory_server_ na wartość pustą: util/config system directory_server "" @@ -327,7 +327,7 @@ Istnieje kilka sposobów, w jakie może to się nie powieść i pozostawić syst Ze względów bezpieczeństwa w systemie nie ma strony internetowej ani interfejsu, który daje dostęp administratora. Jeśli potrzebujesz poprawić sytuację, w której system nie ma konta administratora, musisz to zrobić edytując tabelę kont w bazie danych. Nie ma innego wyjścia. Aby to zrobić, będziesz musiał zlokalizować wpis w tabeli kont, który należy do żądanego administratora i ustawić _account_roles_ dla tego wpisu na _4096_. Będziesz wtedy mógł uzyskać dostęp do strony administratora z menu profilu twojego systemu lub bezpośrednio na ścieżce _/admin_. -Węzeł może mieć wielu administratorów i nie ma ograniczeń co do ich liczby. Powtórz powyższą procedurę dla każdego konta, któremu chcesz przyznać uprawnienia administracyjne. +Portal może mieć wielu administratorów i nie ma ograniczeń co do ich liczby. Powtórz powyższą procedurę dla każdego konta, któremu chcesz przyznać uprawnienia administracyjne. ### Rozwiązywanie problemów diff --git a/doc/pl/admin/hub_snapshots.md b/doc/pl/admin/hub_snapshots.md index c928ced9c..64542733f 100644 --- a/doc/pl/admin/hub_snapshots.md +++ b/doc/pl/admin/hub_snapshots.md @@ -1,17 +1,10 @@ -### Narzędzia migawek węzła +### Narzędzia migawek portalu -Programiści Hubzilli często muszą przełączać się między gałęziami, które mogą -mieć niekompatybilne schematy lub zawartość bazy danych. Poniższe dwa skrypty -tworzą i przywracają pełne migawki instancji Hubzilli, w tym zarówno główny -katalog sieciowy, jak i stan całej bazy danych. Każdy skrypt wymaga pliku -konfiguracyjnego o nazwie *hub-snapshot.conf* znajdującego się w tym samym -folderze i zawiera on określone katalogi i szczegóły bazy danych węzłaa. +Programiści Hubzilli często muszą przełączać się między gałęziami, które mogą mieć niekompatybilne schematy lub zawartość bazy danych. Poniższe dwa skrypty tworzą i przywracają pełne migawki instancji Hubzilli, w tym zarówno główny katalog sieciowy, jak i stan całej bazy danych. Każdy skrypt wymaga pliku konfiguracyjnego o nazwie *hub-snapshot.conf* znajdującego się w tym samym folderze i zawiera on określone katalogi i szczegóły bazy danych portalu. ### Konfiguracja -Format pliku konfiguracyjnego jest bardzo ścisły. Między nazwą zmiennej a -wartością nie może być spacji. Zastąp tylko treść w cudzysłowach swoją -konfiguracją. Zapisz ten plik jako *hub-snapshot.conf* obok skryptów. +Format pliku konfiguracyjnego jest bardzo ścisły. Między nazwą zmiennej a wartością nie może być spacji. Zastąp tylko treść w cudzysłowach swoją konfiguracją. Zapisz ten plik jako *hub-snapshot.conf* obok skryptów. # Location of hub root. Typically this is the location of the Hubzilla repo clone. HUBROOT="/var/www/" diff --git a/doc/pl/admins.bb b/doc/pl/admins.bb index 13f7c3bf0..9d5191f60 100644 --- a/doc/pl/admins.bb +++ b/doc/pl/admins.bb @@ -1,9 +1,9 @@ -[h2]Dokumentacja dla administratorów węzła[/h2] -[h3]Wdrozenie swojego węzła[/h3] +[h2]Dokumentacja dla administratorów portalu[/h2] +[h3]Wdrożenie swojego portalu[/h3] [zrl=[baseurl]/help/install]Instalacja[/zrl] [zrl=[baseurl]/help/red2pi]Instalowanie $Projectname na Raspberry Pi[/zrl] [zrl=[baseurl]/help/Hubzilla_on_OpenShift]$Projectname na OpenShift[/zrl] -[h3]Utrzymywanie swojego węzła[/h3] +[h3]Utrzymywanie swojego portalu[/h3] [zrl=[baseurl]/help/troubleshooting]Wskazówki dotyczące rozwiązywania problemów[/zrl] [zrl=[baseurl]/help/theme_management]Zarządzanie motywami[/zrl] [zrl=[baseurl]/help/hidden_configs]Poprawianie ukrytych konfiguracji $Projectname[/zrl] diff --git a/doc/pl/bugs.bb b/doc/pl/bugs.bb index 8b94df5b9..3b3664dc8 100644 --- a/doc/pl/bugs.bb +++ b/doc/pl/bugs.bb @@ -5,13 +5,13 @@ $Projectname Community Server to oprogramowanie typu Open Source, które jest utrzymywane przez "społeczność" - zasadniczo nieopłacanych ochotników. Nikt nie jest odpowiedzialny za naprawianie błędów. Pracujemy razem, aby oprogramowanie i sieć działały płynnie i bez błędów. Jesteś członkiem tej społeczności, więc potrzebujemy również Twojej pomocy, aby zapewnić wysokiej jakości oprogramowanie. Nie ma mitycznych "programistów", którzy w magiczny sposób wszystko naprawiają. Do nas wszystkich należy włączenie się i pomoc. -Pierwszą rzeczą, którą musisz zrobić, jest porozimieć się z administratorem węzła - osobą, która obsługuje Twoją witrynę i zarządza nią. Znajdują się ona w wyjątkowej sytuacji, ponieważ ma dostęp do wewnętrznego oprogramowania i bazy danych oraz [b]plików dziennika[/b] i będzie musiała zaangażować się w naprawę problemu. Inne osoby "w sieci" nie mogą naprawdę Ci tym pomóc. Pierwszą rzeczą, jaką musi zrobić administrator węzła, jest przejrzenie dzienników i podjecie próby odtworzenia problemu. Dlatego staraj się być tak pomocny i uprzejmy, jak to tylko możliwe, pomagając mu przyjrzeć się problemowi. +Pierwszą rzeczą, którą musisz zrobić, jest porozimieć się z administratorem portalu - osobą, która obsługuje Twoją witrynę i zarządza nią. Znajdują się ona w wyjątkowej sytuacji, ponieważ ma dostęp do wewnętrznego oprogramowania i bazy danych oraz [b]plików dziennika[/b] i będzie musiała zaangażować się w naprawę problemu. Inne osoby "w sieci" nie mogą naprawdę Ci tym pomóc. Pierwszą rzeczą, jaką musi zrobić administrator węzła, jest przejrzenie dzienników i podjecie próby odtworzenia problemu. Dlatego staraj się być tak pomocny i uprzejmy, jak to tylko możliwe, pomagając mu przyjrzeć się problemowi. -Aby znaleźć swojego administratora węzła (jeśli nie wiesz, kim on jest), zajrzyj na [url=[baseurl]/siteinfo]tą stronę[/url]. Jeśli nie podał on żadnych informacji kontaktowych na tej stronie lub nie podał "Impressum", zobacz [url=[baseurl]/siteinfo.json]podsumowanie informacji o tej witrynie[/url] znajdujące się pod nagłówkiem "admin:". +Aby znaleźć swojego administratora portalu (jeśli nie wiesz, kim on jest), zajrzyj na [url=[baseurl]/siteinfo]tą stronę[/url]. Jeśli nie podał on żadnych informacji kontaktowych na tej stronie lub nie podał "Impressum", zobacz [url=[baseurl]/siteinfo.json]podsumowanie informacji o tej witrynie[/url] znajdujące się pod nagłówkiem "admin:". -Zdecydowanie zaleca się, aby administratorzy węzła wypełniali raporty o błędach, tak aby możliwe było dołączenie odpowiedniego plik dziennika i informacji z bazy danych istotnych dla problemu oraz aby byli oni gotowi do wypróbowania rozwiązań i testów uzupełniających. Bez tego poziomu współpracy rozwiązanie problemu może nie być możliwe. +Zdecydowanie zaleca się, aby administratorzy portali wypełniali raporty o błędach, tak aby możliwe było dołączenie odpowiedniego plik dziennika i informacji z bazy danych istotnych dla problemu oraz aby byli oni gotowi do wypróbowania rozwiązań i testów uzupełniających. Bez tego poziomu współpracy rozwiązanie problemu może nie być możliwe. -[h3]Jestem administratorem węzła, co mam zrobić?[/h3] +[h3]Jestem administratorem portalu, co mam zrobić?[/h3] Oprogramowania zapewniające tą usługę sieciową jest typu Open Source i jest dostępne do wglądu. Zachęcamy wszystkich do zapoznania się z kodem i zobaczenia, jak wszystko działa i sprawdzenia, czy nie robimy nic złego lub niedbałego. Jeśli został zgłoszony komunikat o błędzie, często można przeszukać pliki źródłowe tego komunikatu o błędzie i dowiedzieć się, co go spowodowało. Dzięki tym informacjom i plikom dziennika serwisu możliwe będzie ustalenie sekwencji zdarzeń prowadzących do błędu. Problem mogą powodować również serwisy zewnętrzne i jego źródłem wcale nie musi być Twój serwis, ale inne miejsce w sieci. Spróbuj określić punkty końcowe komunikacji (węzły lub serwisy), których dotyczy problem i skontaktuj się z administratorem tego serwisu lub tych serwisów. Spróbuj podać czas zdarzenia, w którym coś poszło nie tak, aby można go było znaleźć w dziennikach. Współpracuj z innymi administratorami, aby spróbować znaleźć przyczynę problemu. Pliki dziennika są Twoim przyjacielem. Kiedy w oprogramowaniu dzieje się coś, czego się nie spodziewaliśmy, prawie zawsze zostało to zarejestrowane. diff --git a/doc/pl/general.bb b/doc/pl/general.bb index b00a5188d..9370678c3 100644 --- a/doc/pl/general.bb +++ b/doc/pl/general.bb @@ -10,7 +10,7 @@ [url=https://framagit.org/hubzilla/addons]Witryna dodatków[/url] [url=[baseurl]/help/credits]Podziękowania od $Projectname[/url] [h3]O tym węźle $Projectname[/h3] -[zrl=[baseurl]/help/TermsOfService]Warunki świadczenia usług dla tego węzła[/zrl] +[zrl=[baseurl]/help/TermsOfService]Warunki świadczenia usług dla tego portalu[/zrl] [zrl=[baseurl]/siteinfo]Inormacja o węźle (/siteinfo)[/zrl] [zrl=[baseurl]/siteinfo/json]Szczegółowe informacje techniczne w formacie JSON(/siteinfo/json)[/zrl] diff --git a/doc/pl/hidden_configs.bb b/doc/pl/hidden_configs.bb index 03c6f17c0..cdbad4d63 100644 --- a/doc/pl/hidden_configs.bb +++ b/doc/pl/hidden_configs.bb @@ -18,7 +18,7 @@ W przypadku konfiguracji witryny, innym rozwiązaniem jest dodanie wiersza w pli [h2]Konfiguracja kanału (pconfig)[/h2] [dl terms="mb"] - [*= system.always_my_theme ] Stosowanie własnego motywu podczas oglądania kanałów na tym samym węźle. Jest to realizowane w dość pomysłowy sposób, gdy przegląda się kanały w motywie zależnym od Comanche. + [*= system.always_my_theme ] Stosowanie własnego motywu podczas oglądania kanałów na tym samym portalu. Jest to realizowane w dość pomysłowy sposób, gdy przegląda się kanały w motywie zależnym od Comanche. [*= system.blocked ] Blokowanie tablicy xchans przez ten kanał. Z technicznego punktu widzenia jest to ukryta konfiguracja i nie należy tutaj nic zmieniać, ale niektóre dodatki (w szczególności superblok) udostępniają ją w interfejsie użytkownika. [*= system.default_cipher ] Ustawienie domyślnego szyfrowania E2EE dla elementów. [*= system.display_friend_count ] Ustawienie liczby połączeń wyświetlanych przez widżecie połączeń profilu. @@ -45,14 +45,14 @@ W przypadku konfiguracji witryny, innym rozwiązaniem jest dodanie wiersza w pli [*= system.admin_email ] Określenie adresu e-mail administratora tej witryny. Jest to wstęþnie ustawiane podczas instalacji. [*= system.authlog ] Plik dziennika używany do rejestrowania błędów uwierzytelniania. Służy do podłączania do oprogramowania po stronie serwera, takiego jak fail2ban. Błędy uwierzytelniania są nadal rejestrowane w dziennikach głównych. [*= system.auto_channel_create ] Dodanie elementów formularza niezbędnych do utworzenia pierwszego kanał na stronie rejestracji konta i utwórzemoa go (ewentualnie po sprawdzeniu przez e-mail lub po zatwierdzeniu przez administratora). Wyklucza to możliwość importowania kanału z innej witryny jako pierwszego utworzonego kanału w tej witrynie dla nowego konta. Użyj wraz z opcją system.default_permissions_role, aby usprawnić rejestrację. - [*= system.auto_follow ] Przy utworzeniu pierwszego kanału automatycznie obserwuj kanały tutaj wymienione - listę stron internetowych oddzielonych przecinkami (adresów w postaci członek@węzeł). - [*= system.blacklisted_sites ] Węzły, dla których ma być całkowicie zablokowany dostęp do tego węzła - tablica adresów URL. + [*= system.auto_follow ] Przy utworzeniu pierwszego kanału automatycznie obserwuj kanały tutaj wymienione - listę stron internetowych oddzielonych przecinkami (adresów w postaci członek@portal). + [*= system.blacklisted_sites ] Portale, dla których ma być całkowicie zablokowany dostęp do tego portalu - tablica adresów URL. [*= system.block_public_search ] Podobne do block_public, z tą różnicą, że blokuje tylko publiczny dostęp do funkcji wyszukiwania. Przydatne w przypadku serwisów, które chcą być publiczne, ale bez możliwości publicznego przeszukiwania treści. [*= system.cron_hour ] Określenie godziny, w której ma być uruchamiany cron_daily. Domyślnie, bez konfiguracji Cron będzie uruchamiany o północy czasu UTC. [*= system.default_permissions_role ] Jeśli ustawiono prawidłową nazwę roli uprawnień, użyj tą rolę dla pierwszego kanału utworzonego przez nowe konto i nie pytaj o 'Typ kanału' w formularzu tworzenia kanału. Przykłady prawidłowych nazw to: 'social', 'social_restricted', 'social_private', 'forum', 'forum_restricted' i 'forum_private'. Więcej informacji znadziesz [tutaj](/help/roles). [*= system.default_profile_photo ] Ustawienie zdjęcia profilowego, dla nowych kanałów. Powinna być to nazwa katalogu znajdującego się w images/default_profile_photos/ lub lub być pustą wartością. Jeśli opcja nie jest ustawione, zakłada się, że stosowany będzie obrazek 'rainbow_man'. [*= system.directorytags ] Ustawienie liczby tagów słów kluczowych wyświetlanych na stronie katalogu. Wartość domyślna to 50. - [*= system.disable_directory_keywords ] Jeśli '1', nie pokazuj słów kluczowych z katalogu. Jeśli węzeł jest serwerem katalogowym, nie zezwalaj na zwracanie znaczników do żadnych klientów katalogu. Nie ustawiaj tego dla serwerów katalogowych w dziedzinie RED_GLOBAL. + [*= system.disable_directory_keywords ] Jeśli '1', nie pokazuj słów kluczowych z katalogu. Jeśli portal jest serwerem katalogowym, nie zezwalaj na zwracanie znaczników do żadnych klientów katalogu. Nie ustawiaj tego dla serwerów katalogowych w dziedzinie RED_GLOBAL. [*= system.disable_discover_tab ] Pozwala to całkowicie wyłączyć możliwość wykrywania treści publicznych z witryn zewnętrznych. [*= system.disable_dreport ] Jeśli '1', nie przechowuj raportów doręczenia ani nie stosuj do nich odnośników. [*= system.dlogfile ] Plik dziennika używany do rejestrowania błędów programistycznych. Dokładnie to samo, co rejestrator w innym przypadku. To nie jest magia i wymaga własnych instrukcji logowania. Narzędzie programistyczne. @@ -62,7 +62,7 @@ W przypadku konfiguracji witryny, innym rozwiązaniem jest dodanie wiersza w pli [*= system.photo_storage_type] Jeśli '1', użyj systemu plików, zamiast bazy danych SQL, do przechowywania miniatur. Wartość domyślna to '0'. Wprowadzono w wersji 4.2. [*= system.hidden_version_siteinfo ] Jeśli true, nie wyświetlaj wersji oprogramowania na stronach informacji o witrynie (system.hide_version również ukrywa wersję na tych stronach, ale to ustawienie *tylko* ukrywa wersję na stronach informacji o witrynie). [*= system.hide_help ] Nie wyświetlaj linku do stron pomocy na pasku nawigacyjnym. - [*= system.hide_in_statistics ] Poinformuj serwery statystyk, aby całkowicie ukryły ten węzeł na liście węzłów. + [*= system.hide_in_statistics ] Poinformuj serwery statystyk, aby całkowicie ukryły ten portal na liście portali. [*= system.hide_version ] Jeśli true, nie zgłaszaj wersji oprogramowania na stronach internetowych ani w narzędziach. (*) Trzeba to ustawić w .htconfig.php. [*= system.ignore_imagick ] Zignoruj imagick i używaj GD, nawet jeśli imagick jest zainstalowany na serwerze. Zapobiega to niektórym problemom z plikami PNG w starszych wersjach programu imagick. [*= system.max_daily_registrations ] Ustaw maksymalną liczbę nowych rejestracji dozwolonych w jednym dniu. Przydatne, aby zapobiec nadmiernej subskrypcji po nagłym nagłośnieniu projektu. @@ -83,7 +83,7 @@ W przypadku konfiguracji witryny, innym rozwiązaniem jest dodanie wiersza w pli [*= system.poke_basic ] Zmniejsz liczbę wyrażeń szturchnięć ("poke verbs") do dokładnie 1 ("poke"). Wyłącz inne wyrażenia. [*= system.proc_run_use_exec ] Jeśli 1, użycie wywołania systemowego exec w proc_run do uruchomienia zadania w tle. Domyślnie używamy proc_open i proc_close. W niektórych (obecnie rzadkich) systemach nie działa to dobrze. [*= system.projecthome ] Wyświetl stronę projektu na swojej stronie głównej dla wylogowanych osób. - [*= system.projecthome ] Ustaw stronę główną projektu jako stronę główną swojego węzła. (Przestarzałe) + [*= system.projecthome ] Ustaw stronę główną projektu jako stronę główną swojego portalu. (Przestarzałe) [*= system.register_link ] Ścieżka do strony z linku "Zarejestruj się" w formularzu logowania. W zamkniętych witrynach będzie to przekierowywać do 'pubsites'. W przypadku otwartych witryn zwykle przekierowuje do strony 'register', ale można to zmienić na niestandardową stronę oferującą subskrypcje lub cokolwiek innego. [*= system.reserved_channels ] Nie zezwalaj członkom na rejestrowanie kanałów o nazwach wyszczególnionych na tej liście nazw rozddzielanych przecinkami (bez spacji). [*= system.sellpage ] Adres URL wyświetlany na liście witryn publicznych, prowadzący do strony z cenami usług - parametry kont i ich cena itp. diff --git a/doc/pl/main.bb b/doc/pl/main.bb index dbd6edaf0..153e759cf 100644 --- a/doc/pl/main.bb +++ b/doc/pl/main.bb @@ -1,11 +1,11 @@ [img][baseurl]/images/hubzilla-banner.png[/img] [zrl=[baseurl]/help/about]Co to jest $Projectname?[/zrl] -$Projectname to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych działających na specjalnym serwerze internetowym, zwanym "węzłem" ([i]ang. hub[/i]), który może łączyć się z innymi węzłami w sfederalizowanej sieci internetowej. +$Projectname to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych działających na specjalnym serwerze internetowym, zwanym "portale" lub hubem ([i]ang. hub[/i]), który może łączyć się z innymi portalami w sfederalizowanej sieci internetowej. [zrl=[baseurl]/help/features]Możliwości $Projectname[/zrl] -$Projectname zapewnia użytkownikom zaawansowaną komunikację, tożsamości i usług kontroli dostępu, które bezproblemowo współpracują w różnych domenach i niezależnych witrynach internetowych. Pozwala użytkownikom [b]publicznie[/b] lub [b]prywatnie[/b] publikować treści za pośrednictwem "kanałów" (ang. channel), które są podstawowymi, zabezpieczonymi kryptograficznie tożsamościami zapewniającymi uwierzytelnianie niezależnie od węzłów, które je hostują. To rewolucyjne wyzwolenie tożsamości online z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot, nowej strukturze zdecentralizowanej kontroli dostępu ze szczegółowymi, rozszerzalnymi uprawnieniami. -Z praktycznego punktu widzenia członków danego węzła, korzystających z oprogramowania $Projectname, oferuje ono szereg znanych, zintegrowanych aplikacji i usług internetowych, w tym: +$Projectname zapewnia użytkownikom zaawansowaną komunikację, tożsamości i usług kontroli dostępu, które bezproblemowo współpracują w różnych domenach i niezależnych witrynach internetowych. Pozwala użytkownikom [b]publicznie[/b] lub [b]prywatnie[/b] publikować treści za pośrednictwem "kanałów" (ang. channel), które są podstawowymi, zabezpieczonymi kryptograficznie tożsamościami zapewniającymi uwierzytelnianie niezależnie od portali, które je hostują. To rewolucyjne wyzwolenie tożsamości online z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot, nowej strukturze zdecentralizowanej kontroli dostępu ze szczegółowymi, rozszerzalnymi uprawnieniami. +Z praktycznego punktu widzenia członków danego portalu, korzystających z oprogramowania $Projectname, oferuje ono szereg znanych, zintegrowanych aplikacji i usług internetowych, w tym: [ul] [li]wątki dyskusyjne w sieciach społecznościowych[/li] [li]przechowywanie plików w chmurze[/li] @@ -13,7 +13,7 @@ Z praktycznego punktu widzenia członków danego węzła, korzystających z opro [li]hosting stron internetowych z systemem zarządzania treścią[/li] [li]wiki[/li] [li]i dużo więcej ...[/li][/ul] -Chociaż wszystkie te aplikacje i usługi można znaleźć w innych pakietach oprogramowania, tylko $Projectname pozwala ustawić uprawnienia dla grup i osób, [b]które mogą nawet nie mieć kont na Twoim węźle[/b]! W typowych aplikacjach internetowych, jeśli chcesz udostępniać rzeczy prywatnie w Internecie, osoby, którym udostępniasz dane, muszą mieć konta na serwerze, na którym znajdują się Twoje dane; w przeciwnym razie serwer nie może uwierzytelniać odwiedzających witrynę, aby wiedzieć, czy przyznać im dostęp. $Projectname rozwiązuje ten problem za pomocą zaawansowanego systemu zdalnego uwierzytelniania, który weryfikuje tożsamość odwiedzających, wykorzystując techniki obejmujące kryptografię klucza publicznego. +Chociaż wszystkie te aplikacje i usługi można znaleźć w innych pakietach oprogramowania, tylko $Projectname pozwala ustawić uprawnienia dla grup i osób, [b]które mogą nawet nie mieć kont na Twoim portalu[/b]! W typowych aplikacjach internetowych, jeśli chcesz udostępniać rzeczy prywatnie w Internecie, osoby, którym udostępniasz dane, muszą mieć konta na serwerze, na którym znajdują się Twoje dane; w przeciwnym razie serwer nie może uwierzytelniać odwiedzających witrynę, aby wiedzieć, czy przyznać im dostęp. $Projectname rozwiązuje ten problem za pomocą zaawansowanego systemu zdalnego uwierzytelniania, który weryfikuje tożsamość odwiedzających, wykorzystując techniki obejmujące kryptografię klucza publicznego. Dzięki oferowanym aplikacjom, $Projectname świetnie się nadaje do budowy platformy komunikacyjno-publikacyjnej o charkterze społecznościowym dla realnych grup społecznych, takich jak rodziny, lokalne grupy, organizacje społeczne, środowiska szkolne, wspólnoty mieszkańców czy wspólnoty religijne. [zrl=[baseurl]/help/what_is_zot]Co to jest Zot?[/zrl] diff --git a/doc/pl/member/bbcode.html b/doc/pl/member/bbcode.html index e2258db22..e04e59756 100644 --- a/doc/pl/member/bbcode.html +++ b/doc/pl/member/bbcode.html @@ -318,7 +318,7 @@ Utwórz spis treści na stronie internetowej lub stronie wiki. Proszę zapoznać [nobb][rpost=title]Tekst do publikacji[/rpost][/nobb]
-Obserwator wróci do swojego macierzystego węzła, aby wprowadzić wpis z określonym tytułem i treścią. Obie opcje są opcjonalne[baseurl]/rpost?f=&title=title&body=Text+to+post +Obserwator wróci do swojego macierzystego portalu, aby wprowadzić wpis z określonym tytułem i treścią. Obie opcje są opcjonalne[baseurl]/rpost?f=&title=title&body=Text+to+post Wymaga to wtyczki qrator.
[qr]tekst do publikacji[/qr] diff --git a/doc/pl/member/member_guide.bb b/doc/pl/member/member_guide.bb index 2bba0857e..1f39ef852 100644 --- a/doc/pl/member/member_guide.bb +++ b/doc/pl/member/member_guide.bb @@ -175,7 +175,7 @@ Odwiedź profil tego kanału, klikając jego zdjęcie w katalogu, matrycy lub ko Aby połączyć się z kanałami w innych sieciach niż sieć $Projectname: -Proces łączenia się z kanałami w innych sieciach (takich jak GNU-Social, Mastodon czy Diaspora) jest podobny - wpisz odpowiednie "webbie" do pola "Dodaj nowe połączenia" na stronie "Połączenia". Jednak zanim to zrobisz, odwiedź stronę "Ustawienia" ("Ustawienia funkcji i dodatków") i upewnij się, że w Twoim węźle jest dostępny odpowiedni protokół (Diaspora, GNU-Social/OStatus lub ActivityPub) i [b][i]jest aktywowany[/i] dla Twojego kanału[/b]. Te sieci (protokoły) nie obsługują migracji kont i niezależności lokalizacji, więc jeśli przeniesiesz lokalizację lub sklonujesz swój kanał w inne miejsce, komunikacja z tymi połączeniami może się nie udać. Z tego powodu protokoły te nie są domyślnie aktywowane, ale ich aktywacja wymaga Twojej zgodą. Aktywacja tych protokołów wiąże się z podjęciem ważkiego rozstrzygniecia korzyści płynących z kmunikowania się ze znajomymi w tych sieciach a z drugiej strony, zapewnieniem odporności konta na awarie serwera. +Proces łączenia się z kanałami w innych sieciach (takich jak GNU-Social, Mastodon czy Diaspora) jest podobny - wpisz odpowiednie "webbie" do pola "Dodaj nowe połączenia" na stronie "Połączenia". Jednak zanim to zrobisz, odwiedź stronę "Ustawienia" ("Ustawienia funkcji i dodatków") i upewnij się, że w Twoim portalu jest dostępny odpowiedni protokół (Diaspora, GNU-Social/OStatus lub ActivityPub) i [b][i]jest aktywowany[/i] dla Twojego kanału[/b]. Te sieci (protokoły) nie obsługują migracji kont i niezależności lokalizacji, więc jeśli przeniesiesz lokalizację lub sklonujesz swój kanał w inne miejsce, komunikacja z tymi połączeniami może się nie udać. Z tego powodu protokoły te nie są domyślnie aktywowane, ale ich aktywacja wymaga Twojej zgodą. Aktywacja tych protokołów wiąże się z podjęciem ważkiego rozstrzygniecia korzyści płynących z kmunikowania się ze znajomymi w tych sieciach a z drugiej strony, zapewnieniem odporności konta na awarie serwera. Niektóre rodzaje komunikacji oferują więcej niż jeden protokół. Jeśli chcesz połączyć się z kimś na Mastodonie (na przykład), możesz użyć do komunikacji protokołu "Ostatus" lub "AactivityPub". Generalnie, protokół "ActivityPub" zapewnia lepszą obsługę niż "Ostatus", ale Hubzilla często wybiera pierwszy protokół, który odkryje i może to nie być to, czego chcesz. Możesz połączyć się z kimś przez określony protokół, poprzedzając nazwę protokołu w nawiasach kwadratowych na tym "webbie". Na przykład: @@ -189,7 +189,7 @@ Niektóre rodzaje komunikacji oferują więcej niż jeden protokół. Jeśli chc Aby połączyć zię z kanałami RSS: -Administrator węzła może zezwolić na łączenie się z kanałami RSS. Proces łączenia się z kanałem RSS jest taki sam, z wyjątkiem wpisania (lub wklejenia) adresu URL kanału w polu "Dodaj nowe połączenie". Kanały są przetwarzane tylko raz lub dwa razy dziennie, a administrator węzła może nałożyć ograniczenia na liczbę dodawanych kanałów. +Administrator portalu może zezwolić na łączenie się z kanałami RSS. Proces łączenia się z kanałem RSS jest taki sam, z wyjątkiem wpisania (lub wklejenia) adresu URL kanału w polu "Dodaj nowe połączenie". Kanały są przetwarzane tylko raz lub dwa razy dziennie, a administrator portalu może nałożyć ograniczenia na liczbę dodawanych kanałów. [h4][b]Blokowanie, ignorowanie, archiwizowanie i ukrywanie kanałów[/b][/h4] @@ -235,7 +235,7 @@ Zdecydowanie zalecamy skorzystanie z ustawień "typowej sieci społecznościowej [*= Każdy w Twojej książce adresowej ] Każdy, kto nie znajduje się w Twojej książce adresowej ma odmowę dostępu, ale każdy kogo zaakceptujesz jako kontakt, uzyska zezwolenie. Jest to sposób stosowany na większości starszych platform. - [*= Każdy na tym węźle ] Każdy, kto ma kanał w tym samym węźle co Ty, będzie miał pozwolenie. Każdemu, kto jest zarejestrowany na innym węźle, odmawia się dostępu. + [*= Każdy na tym portalu ] Każdy, kto ma kanał w tym samym portalu co Ty, będzie miał pozwolenie. Każdemu, kto jest zarejestrowany na innym portalu, odmawia się dostępu. [*= Każdy w tej sieci ] Każdy w sieci $Projectname będzie miał zatwierdzone to pozwolenie. Nawet zupełnie obce osoby. Jednak każdemu, kto nie jest zalogowany (uwierzytelniony), tego dostępu się odmiawia. @@ -291,7 +291,7 @@ Ekran edycji połączenia oferuje suwak do wyboru stopnia "zaprzyjaźnienia" z p Suwak na stronie matrycy ma zarówno wartość minimalną, jak i maksymalną. Wpisy będą wyświetlane tylko od osób mieszczących się w tym zakresie. Zaprzyjaźnienie nie ma związku z uprawnieniami i jest przydatna tylko w połączeniu z funkcją narzędzia zaprzyjaźnienia. [h3]Tokeny dostępu gościa[/h3] -Tokeny dostępu gościa (czasami nazywane "tokenami dostępu Zot") umożliwiają udostępnianie pliku, folderu, zdjęcia, albumu lub kanału określonej osobie lub grupie osób, które nie są członkami węzła Hubzilli. Te tokeny umożliwiają udostępnianie poszczególnych elementów poprzez wysłanie linku zawierającego token w adresie URL; alternatywnie, osoby mogą faktycznie logować się przy użyciu poświadczeń tokena, po czym mogą bezproblemowo przeglądać zawartość udostępnioną temu tokenowi. +Tokeny dostępu gościa (czasami nazywane "tokenami dostępu Zot") umożliwiają udostępnianie pliku, folderu, zdjęcia, albumu lub kanału określonej osobie lub grupie osób, które nie są członkami portalu Hubzilli. Te tokeny umożliwiają udostępnianie poszczególnych elementów poprzez wysłanie linku zawierającego token w adresie URL; alternatywnie, osoby mogą faktycznie logować się przy użyciu poświadczeń tokena, po czym mogą bezproblemowo przeglądać zawartość udostępnioną temu tokenowi. W celu utworzenia tokenów dostępu gościa i zarządzać nimi, otwórz stronę ustawień "Tokeny dostępu gościa". Przy każdym załadowaniu strony generowany jest losowy token, który umożliwia utworzenie specjalnego adresu URL zawierającego ten token i opcjonalnie określenie daty wygaśnięcia. Istniejące tokeny są wymienione poniżej okna dialogowego i można je edytować, wybierać lub usuwać. @@ -440,7 +440,7 @@ wytworzy taki HTML: [h4][b]Narzędzie importy elementów strony internetowej[/b][/h4] -Istnieją dwie metody importowania elementów strony internetowej: przesyłanie pliku ZIP lub odwoływanie się do plików we własnym magazynu plików w serwisie. Obie metody wymagają określenia elementów strony sieci internetowej przy użyciu określonej struktury folderów. Narzędzie importu umożliwia zaimportowanie wszystkich elementów niezbędnych do zbudowania całej witryny lub zestawu witryn. Celem jest uwzględnienie zewnętrznego tworzenia stron internetowych, a także narzędzi upraszczających i automatyzujących wdrażanie w węźle. +Istnieją dwie metody importowania elementów strony internetowej: przesyłanie pliku ZIP lub odwoływanie się do plików we własnym magazynu plików w serwisie. Obie metody wymagają określenia elementów strony sieci internetowej przy użyciu określonej struktury folderów. Narzędzie importu umożliwia zaimportowanie wszystkich elementów niezbędnych do zbudowania całej witryny lub zestawu witryn. Celem jest uwzględnienie zewnętrznego tworzenia stron internetowych, a także narzędzi upraszczających i automatyzujących wdrażanie na portalu. [h5][b] Struktura folderu [/b][/h5] Definicje elementów muszą być przechowywane w katalogu głównym repozytorium w folderach o nazwie odpowiadającej typowi elementu: @@ -818,7 +818,7 @@ WebDAV umożliwia kopiowanie plików bezpośrednio do lub z systemu operacyjnego [h4][b]Dostęp CalDAV i CardDAV na Androidzie[/b][/h4] -Możesz zsynchronizować swój kalendarz i kontakty w systemie Android ze swoim węzłem. +Możesz zsynchronizować swój kalendarz i kontakty w systemie Android ze swoim portalem. Poniższe kroki zostały przetestowane pod kątem zasosowania [url=https://f-droid.org/en/packages/at.bitfire.davdroid/] DAVdroid [/url]: @@ -882,7 +882,7 @@ aby uwzględnić katalog zdalny, dodając: [baseurl]/dav/ /mount/point davfs user,noauto,uid=<DesktopUser>,file_mode=600,dir_mode=700 0 1 [/code] -gdzie [baseurl] jest adresem URL węzła, /mount/point to lokalizacja, w której chcesz zamontować katalog zdalny, a <DesktopUser> to użytkownik, którego logujesz się na swoim komputerze. Miej na uwadze, że jeśli montujesz jako zwykły użytkownik (nie root), punkt montowania musi znajdować się w twoim katalogu domowym. +gdzie [baseurl] jest adresem URL portalu, /mount/point to lokalizacja, w której chcesz zamontować katalog zdalny, a <DesktopUser> to użytkownik, którego logujesz się na swoim komputerze. Miej na uwadze, że jeśli montujesz jako zwykły użytkownik (nie root), punkt montowania musi znajdować się w twoim katalogu domowym. Przyjmijmy, że chcesz zamontować swój magazyn plików w katalogu o nazwie 'cloud' w swoim katalogu domowym, a Twoja nazwa użytkownika to 'bob'. Zapis w fstab będzie następujący: @@ -906,7 +906,7 @@ i dodaj tam swoje dane uwierzytelniania w katalogu zdalnym: [baseurl]/dav <username> <password> [/code] -gdzie <username> i <password> to nazwa użytkownika i hasło [i]na Twoim kanale w węźle[/i]. +gdzie <username> i <password> to nazwa użytkownika i hasło [i]na Twoim kanale w portalu[/i]. Nie pozwól, aby ten plik mógł być zapisywany przez kogoś nieupoważnionego: @@ -937,18 +937,18 @@ Jeśli to nadal nie zadziała, wyłącz pamięć podręczną. Pamiętaj, że ma Jeśli [i]nadal[/i] to nie działa, jest jeszcze jedna rzecz, której możesz spróbować. (Ten jest spowodowany błędem w starszych wersjach samego dav2fs, więc aktualizacja do nowej wersji może również pomóc). Włącz słabe usuwanie etagów, ustawiając [code]drop_weak_etags 1[]/code. Odmontuj i ponownie podłącz swój system plików, aby zastosować zmiany. [h5][b]Dolphin[/b][/h5] -Dolphin Browser to przeglądarka internetowa dla Android i iOS. Odwiedź w niej [code]webdavs://example.com/dav[/code], gdzie [code]example.com[/code] to URL do Twojego węzła. +Dolphin Browser to przeglądarka internetowa dla Android i iOS. Odwiedź w niej [code]webdavs://example.com/dav[/code], gdzie [code]example.com[/code] to URL do Twojego portalu. Gdy zostaniesz poproszony o podanie nazwy użytkownika i hasła, wprowadź nazwę swojego kanału (pierwszą część swojej strony internetowej - bez znaku @ i nazwy domeny) i hasło do swojego normalnego konta. Pamiętaj, że jeśli jesteś już zalogowany do interfejsu WWW przez Konqueror, nie zostaniesz poproszony o dalsze uwierzytelnianie. [h5][b]Konqueror[/b][/h5] -Konqueror to przeglądarka internetowa, meadżer plików i przeglądarka dokumentów dla środowiska KDE. Wystarczy odwiedzić w niej serwis [code]webdavs://example.com/dav[/code] po zalogowaniu się do swojego węzła, gdzie [code]example.com[/code] to adres URL węzła. +Konqueror to przeglądarka internetowa, meadżer plików i przeglądarka dokumentów dla środowiska KDE. Wystarczy odwiedzić w niej serwis [code]webdavs://example.com/dav[/code] po zalogowaniu się do swojego portalu, gdzie [code]example.com[/code] to adres URL portalu. -Jeśli jesteś zalogowany do swojego węzła w normalny sposób, nie jest wymagane dalsze uwierzytelnianie. +Jeśli jesteś zalogowany do swojego portalu w normalny sposób, nie jest wymagane dalsze uwierzytelnianie. -Ponadto, jeśli ktoś uwierzytelnił się w innym węźle podczas normalnej sesji przeglądarki, Twoja tożsamość zostanie również przekazana do magazynu plików dla tych węzłów - co oznacza, że możesz uzyskać dostęp do wszelkich prywatnych plików na dowolnym serwerze, o ile masz uprawnienia do ich przeglądania i pod warunkiem, że odwiedziłeś tę witrynę wcześniej podczas sesji. +Ponadto, jeśli ktoś uwierzytelnił się w innym portalu podczas normalnej sesji przeglądarki, Twoja tożsamość zostanie również przekazana do magazynu plików dla tych portali - co oznacza, że możesz uzyskać dostęp do wszelkich prywatnych plików na dowolnym serwerze, o ile masz uprawnienia do ich przeglądania i pod warunkiem, że odwiedziłeś tę witrynę wcześniej podczas sesji. Ta funkcja jest zwykle ograniczona do interfejsu sieciowego i nie jest dostępna dla żadnego innego środowiska graficznego niż KDE. @@ -1009,7 +1009,7 @@ Będziesz musiał potwierdzić swoje hasło i kanał, na którym jesteś obecnie [hl][i][b]To jest nieodwracalne.[/b][/i][/hl] -Jeśli masz klony tożsamości na innych węzłach, nie zostaną one usuniete. Operacja ta spowoduje tylko usunięcie tej instancji kanału, która istnieje w węźle, na którym dokonujesz usunięcia kanału. +Jeśli masz klony tożsamości na innych portalach, nie zostaną one usuniete. Operacja ta spowoduje tylko usunięcie tej instancji kanału, która istnieje w portalu, na którym dokonujesz usunięcia kanału. [h4][b]Usuniecie konta[/b][/h4] @@ -1019,5 +1019,5 @@ Będziesz musiał potwierdzić swoje hasło i konto, na którym jesteś obecnie [hl][i][b]To jest nieodwracalne.[/b][/i][/hl] -Wszystkie Twoje kanały zostaną usunięte. Jeśli masz klony tożsamości na innych węzłach - nie zostaną one usuniete. Operacja ta powoduje tylko usunięcie instancji kanałów, które istnieją w węźle, na którym dokonujesz tą operację. +Wszystkie Twoje kanały zostaną usunięte. Jeśli masz klony tożsamości na innych portalach - nie zostaną one usuniete. Operacja ta powoduje tylko usunięcie instancji kanałów, które istnieją w portalu, na którym dokonujesz tą operację. diff --git a/doc/pl/toc.html b/doc/pl/toc.html index 0dfb80a35..f478fcf15 100644 --- a/doc/pl/toc.html +++ b/doc/pl/toc.html @@ -36,7 +36,7 @@
diff --git a/util/hmessages.po b/util/hmessages.po index 315d51ce8..a51bab69a 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -1,14 +1,14 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. +# PLATFORM_NAME +# Copyright (C) 2012-2016 PLATFORM_NAME +# This file is distributed under the same license as the PLATFORM_NAME package. # Mike Macgirvin, 2012 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 5.7\n" +"Project-Id-Version: STD_VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-07 11:01+0000\n" +"POT-Creation-Date: 2021-05-23 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,15931 +17,16063 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../view/theme/redbasic/php/config.php:15 -#: ../../addon/cart/submodules/orderoptions.php:335 -#: ../../addon/cart/submodules/orderoptions.php:359 -#: ../../addon/cart/submodules/orderoptions.php:435 -#: ../../addon/cart/submodules/orderoptions.php:459 ../../include/text.php:3395 -#: ../../Zotlabs/Module/Admin/Site.php:251 -msgid "Default" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" msgstr "" -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../view/theme/redbasic/php/config.php:94 -#: ../../addon/channelreputation/channelreputation.php:143 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/photocache/Mod_Photocache.php:67 -#: ../../addon/redred/Mod_Redred.php:90 ../../addon/redphotos/redphotos.php:136 -#: ../../addon/statusnet/Mod_Statusnet.php:193 -#: ../../addon/statusnet/Mod_Statusnet.php:251 -#: ../../addon/statusnet/Mod_Statusnet.php:306 -#: ../../addon/statusnet/statusnet.php:602 ../../addon/rtof/Mod_Rtof.php:72 -#: ../../addon/wppost/Mod_Wppost.php:109 -#: ../../addon/content_import/Mod_content_import.php:142 -#: ../../addon/openstreetmap/openstreetmap.php:155 -#: ../../addon/ijpost/Mod_Ijpost.php:72 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:65 -#: ../../addon/dwpost/Mod_Dwpost.php:80 -#: ../../addon/startpage/Mod_Startpage.php:73 ../../addon/mail/Mod_Mail.php:311 -#: ../../addon/twitter/Mod_Twitter.php:184 -#: ../../addon/pumpio/Mod_Pumpio.php:115 -#: ../../addon/cart/submodules/subscriptions.php:410 -#: ../../addon/cart/submodules/hzservices.php:643 -#: ../../addon/cart/submodules/orderoptions.php:312 -#: ../../addon/cart/submodules/orderoptions.php:412 -#: ../../addon/cart/submodules/manualcat.php:248 -#: ../../addon/cart/Settings/Cart.php:132 -#: ../../addon/cart/Settings/Cart.php:142 ../../addon/cart/cart.php:1376 -#: ../../addon/nofed/Mod_Nofed.php:53 -#: ../../addon/smileybutton/Mod_Smileybutton.php:55 -#: ../../addon/redfiles/redfiles.php:124 ../../addon/diaspora/diaspora.php:79 -#: ../../addon/diaspora/Mod_Diaspora.php:102 ../../addon/piwik/piwik.php:95 -#: ../../addon/workflow/workflow.php:1461 -#: ../../addon/workflow/workflow.php:1520 -#: ../../addon/workflow/workflow.php:1639 -#: ../../addon/workflow/workflow.php:2742 -#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:94 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:56 ../../addon/hubwall/hubwall.php:95 -#: ../../addon/flashcards/Mod_Flashcards.php:262 -#: ../../addon/libertree/Mod_Libertree.php:70 ../../addon/logrot/logrot.php:35 -#: ../../addon/skeleton/Mod_Skeleton.php:51 -#: ../../addon/socialauth/Mod_SocialAuth.php:330 -#: ../../addon/nsfw/Mod_Nsfw.php:61 ../../addon/mailtest/mailtest.php:100 -#: ../../addon/ljpost/Mod_Ljpost.php:82 ../../addon/hzfiles/hzfiles.php:86 -#: ../../addon/pageheader/Mod_Pageheader.php:54 ../../addon/irc/irc.php:45 -#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../include/js_strings.php:22 -#: ../../Zotlabs/Widget/Wiki_pages.php:42 -#: ../../Zotlabs/Widget/Wiki_pages.php:99 -#: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Tokens.php:188 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Import.php:647 ../../Zotlabs/Module/Setup.php:306 -#: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Group.php:151 -#: ../../Zotlabs/Module/Group.php:167 ../../Zotlabs/Module/Oauth.php:111 -#: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 -#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Mitem.php:259 -#: ../../Zotlabs/Module/Filestorage.php:208 -#: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Editpost.php:86 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:309 -#: ../../Zotlabs/Module/Admin/Site.php:412 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Regate.php:387 ../../Zotlabs/Module/Events.php:501 -#: ../../Zotlabs/Module/Permcats.php:129 ../../Zotlabs/Module/Mood.php:158 -#: ../../Zotlabs/Module/Appman.php:155 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 -#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Rate.php:168 -#: ../../Zotlabs/Module/Settings/Network.php:62 -#: ../../Zotlabs/Module/Settings/Features.php:48 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Account.php:107 -#: ../../Zotlabs/Module/Settings/Events.php:42 -#: ../../Zotlabs/Module/Settings/Manage.php:43 -#: ../../Zotlabs/Module/Settings/Channel_home.php:91 -#: ../../Zotlabs/Module/Settings/Calendar.php:42 -#: ../../Zotlabs/Module/Settings/Display.php:188 -#: ../../Zotlabs/Module/Settings/Directory.php:42 -#: ../../Zotlabs/Module/Settings/Editor.php:42 -#: ../../Zotlabs/Module/Settings/Connections.php:42 -#: ../../Zotlabs/Module/Settings/Photos.php:42 -#: ../../Zotlabs/Module/Settings/Profiles.php:52 -#: ../../Zotlabs/Module/Settings/Conversation.php:49 -#: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Pconfig.php:116 -#: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Thing.php:328 -#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:108 -#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Connedit.php:897 -#: ../../Zotlabs/Module/Locs.php:132 ../../Zotlabs/Module/Sources.php:125 -#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Lib/ThreadItem.php:827 -#: ../../Zotlabs/Storage/Browser.php:382 -msgid "Submit" +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" msgstr "" -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Theme settings" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Narrow navbar" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/channelreputation/channelreputation.php:111 -#: ../../addon/redred/Mod_Redred.php:63 -#: ../../addon/statusnet/Mod_Statusnet.php:260 -#: ../../addon/statusnet/Mod_Statusnet.php:282 -#: ../../addon/statusnet/Mod_Statusnet.php:291 ../../addon/rtof/Mod_Rtof.php:49 -#: ../../addon/wppost/Mod_Wppost.php:86 ../../addon/wppost/Mod_Wppost.php:90 -#: ../../addon/wppost/Mod_Wppost.php:94 -#: ../../addon/content_import/Mod_content_import.php:137 -#: ../../addon/content_import/Mod_content_import.php:138 -#: ../../addon/ijpost/Mod_Ijpost.php:61 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:45 -#: ../../addon/dwpost/Mod_Dwpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:65 -#: ../../addon/twitter/Mod_Twitter.php:162 -#: ../../addon/twitter/Mod_Twitter.php:171 ../../addon/pumpio/Mod_Pumpio.php:94 -#: ../../addon/pumpio/Mod_Pumpio.php:98 ../../addon/pumpio/Mod_Pumpio.php:102 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/cart/submodules/hzservices.php:65 -#: ../../addon/cart/submodules/hzservices.php:649 -#: ../../addon/cart/submodules/hzservices.php:653 -#: ../../addon/cart/submodules/orderoptions.php:72 -#: ../../addon/cart/submodules/orderoptions.php:338 -#: ../../addon/cart/submodules/orderoptions.php:362 -#: ../../addon/cart/submodules/orderoptions.php:438 -#: ../../addon/cart/submodules/orderoptions.php:462 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/paypalbuttonV2.php:88 -#: ../../addon/cart/submodules/paypalbuttonV2.php:96 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 -#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:42 -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -#: ../../addon/diaspora/Mod_Diaspora.php:72 -#: ../../addon/libertree/Mod_Libertree.php:59 -#: ../../addon/socialauth/Mod_SocialAuth.php:214 -#: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 -#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 -#: ../../Zotlabs/Module/Register.php:512 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 -#: ../../Zotlabs/Module/Settings/Channel.php:311 -#: ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Sources.php:124 -#: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 -#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 -#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 -#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../boot.php:1721 -msgid "No" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/channelreputation/channelreputation.php:111 -#: ../../addon/redred/Mod_Redred.php:63 -#: ../../addon/statusnet/Mod_Statusnet.php:260 -#: ../../addon/statusnet/Mod_Statusnet.php:282 -#: ../../addon/statusnet/Mod_Statusnet.php:291 ../../addon/rtof/Mod_Rtof.php:49 -#: ../../addon/wppost/Mod_Wppost.php:86 ../../addon/wppost/Mod_Wppost.php:90 -#: ../../addon/wppost/Mod_Wppost.php:94 -#: ../../addon/content_import/Mod_content_import.php:137 -#: ../../addon/content_import/Mod_content_import.php:138 -#: ../../addon/ijpost/Mod_Ijpost.php:61 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:45 -#: ../../addon/dwpost/Mod_Dwpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:65 -#: ../../addon/twitter/Mod_Twitter.php:162 -#: ../../addon/twitter/Mod_Twitter.php:171 ../../addon/pumpio/Mod_Pumpio.php:94 -#: ../../addon/pumpio/Mod_Pumpio.php:98 ../../addon/pumpio/Mod_Pumpio.php:102 -#: ../../addon/cart/submodules/subscriptions.php:153 -#: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/cart/submodules/hzservices.php:65 -#: ../../addon/cart/submodules/hzservices.php:649 -#: ../../addon/cart/submodules/hzservices.php:653 -#: ../../addon/cart/submodules/orderoptions.php:72 -#: ../../addon/cart/submodules/orderoptions.php:337 -#: ../../addon/cart/submodules/orderoptions.php:361 -#: ../../addon/cart/submodules/orderoptions.php:437 -#: ../../addon/cart/submodules/orderoptions.php:461 -#: ../../addon/cart/submodules/paypalbutton.php:87 -#: ../../addon/cart/submodules/paypalbutton.php:95 -#: ../../addon/cart/submodules/paypalbuttonV2.php:88 -#: ../../addon/cart/submodules/paypalbuttonV2.php:96 -#: ../../addon/cart/submodules/manualcat.php:63 -#: ../../addon/cart/submodules/manualcat.php:254 -#: ../../addon/cart/submodules/manualcat.php:258 -#: ../../addon/cart/Settings/Cart.php:61 ../../addon/cart/Settings/Cart.php:73 -#: ../../addon/cart/cart.php:1370 ../../addon/nofed/Mod_Nofed.php:42 -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -#: ../../addon/diaspora/Mod_Diaspora.php:72 -#: ../../addon/libertree/Mod_Libertree.php:59 -#: ../../addon/socialauth/Mod_SocialAuth.php:214 -#: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 -#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 -#: ../../Zotlabs/Module/Register.php:512 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 -#: ../../Zotlabs/Module/Settings/Channel.php:311 -#: ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 -#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 -#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1721 -msgid "Yes" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar background color" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar icon color " +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Navigation bar active icon color " +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Link color" +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set font-color for banner" +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background color" +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background image" +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of items" +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via ! mentions in posts" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set the background color of comments" +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-size for the entire application" +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Examples: 1rem, 100%, 16px" +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set font-color for posts and comments" +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social Networking" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set radius of corners" +#: ../../Zotlabs/Access/PermissionRoles.php:288 +msgid "Social - Federation" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Example: 4px" +#: ../../Zotlabs/Access/PermissionRoles.php:289 +msgid "Social - Mostly Public" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set shadow depth of photos" +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Social - Restricted" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set maximum width of content region in pixel" +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Social - Private" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Leave empty for default width" +#: ../../Zotlabs/Access/PermissionRoles.php:294 +msgid "Community Forum" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of conversation author photo" +#: ../../Zotlabs/Access/PermissionRoles.php:295 +msgid "Forum - Mostly Public" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set size of followup author photos" +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Forum - Restricted" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Show advanced settings" +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Forum - Private" msgstr "" -#: ../../util/nconfig.php:34 -msgid "Source channel not found." +#: ../../Zotlabs/Access/PermissionRoles.php:300 +msgid "Feed Republish" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:101 -#: ../../addon/channelreputation/channelreputation.php:102 -#: ../../addon/cart/myshop.php:144 ../../addon/cart/myshop.php:180 -#: ../../addon/cart/myshop.php:214 ../../addon/cart/myshop.php:261 -#: ../../addon/cart/myshop.php:296 ../../addon/cart/myshop.php:319 -msgid "Access Denied" +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Feed - Mostly Public" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:109 -msgid "Enable Community Moderation" +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Feed - Restricted" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:117 -msgid "Reputation automatically given to new members" +#: ../../Zotlabs/Access/PermissionRoles.php:305 +msgid "Special Purpose" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:118 -msgid "Reputation will never fall below this value" +#: ../../Zotlabs/Access/PermissionRoles.php:306 +msgid "Special - Celebrity/Soapbox" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:119 -msgid "Minimum reputation before posting is allowed" +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Special - Group Repository" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:120 -msgid "Minimum reputation before commenting is allowed" +#: ../../Zotlabs/Access/PermissionRoles.php:310 +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Connedit.php:928 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/selectors.php:115 +#: ../../include/selectors.php:151 ../../include/connections.php:741 +#: ../../include/connections.php:748 ../../include/event.php:1429 +#: ../../include/event.php:1436 +msgid "Other" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:121 -msgid "Minimum reputation before a member is able to moderate other posts" +#: ../../Zotlabs/Access/PermissionRoles.php:311 +msgid "Custom/Expert Mode" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:122 -msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from " -"reputation of person being moderated" +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Pdledit.php:35 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Events.php:277 +#: ../../Zotlabs/Module/Bookmarks.php:70 ../../Zotlabs/Module/Webpages.php:133 +#: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:637 +#: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Defperms.php:182 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Group.php:15 +#: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Appman.php:87 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Moderate.php:15 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Filestorage.php:20 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 ../../Zotlabs/Module/Wiki.php:59 +#: ../../Zotlabs/Module/Wiki.php:284 ../../Zotlabs/Module/Wiki.php:427 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Locs.php:100 ../../Zotlabs/Module/Connedit.php:397 +#: ../../Zotlabs/Module/Profile_photo.php:338 +#: ../../Zotlabs/Module/Profile_photo.php:351 +#: ../../Zotlabs/Module/Sharedwithme.php:19 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 +#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 +#: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Regmod.php:20 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Chat.php:113 ../../Zotlabs/Module/Chat.php:118 +#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Display.php:420 +#: ../../Zotlabs/Module/Photos.php:71 ../../Zotlabs/Module/Channel.php:209 +#: ../../Zotlabs/Module/Channel.php:365 ../../Zotlabs/Module/Channel.php:404 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Profile.php:99 +#: ../../Zotlabs/Module/Profile.php:114 +#: ../../Zotlabs/Module/Article_edit.php:51 ../../Zotlabs/Module/Thing.php:282 +#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:343 +#: ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Register.php:200 +#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Menu.php:130 +#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Network.php:19 +#: ../../Zotlabs/Module/Attach_edit.php:90 +#: ../../Zotlabs/Module/Attach_edit.php:99 +#: ../../Zotlabs/Module/Attach_edit.php:106 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Viewsrc.php:19 +#: ../../Zotlabs/Web/WebServer.php:116 ../../Zotlabs/Lib/Chatroom.php:135 +#: ../../include/photos.php:27 ../../include/attach.php:156 +#: ../../include/attach.php:205 ../../include/attach.php:278 +#: ../../include/attach.php:329 ../../include/attach.php:424 +#: ../../include/attach.php:438 ../../include/attach.php:445 +#: ../../include/attach.php:527 ../../include/attach.php:1091 +#: ../../include/attach.php:1164 ../../include/attach.php:1327 +#: ../../include/items.php:4088 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:53 +#: ../../extend/addon/hubzilla-addons/keepout/keepout.php:36 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:26 +#: ../../extend/addon/hubzilla-addons/pumpio/pumpio.php:44 +msgid "Permission denied." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:123 -msgid "Reputation \"cost\" to post" +#: ../../Zotlabs/Module/Pdledit.php:27 +msgid "Layout updated." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:124 -msgid "Reputation \"cost\" to comment" +#: ../../Zotlabs/Module/Pdledit.php:43 +msgid "PDL Editor App" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:125 -msgid "" -"Reputation automatically recovers at this rate per hour until it reaches " -"minimum_to_post" +#: ../../Zotlabs/Module/Pdledit.php:43 ../../Zotlabs/Module/Cdav.php:877 +#: ../../Zotlabs/Module/Bookmarks.php:78 ../../Zotlabs/Module/Webpages.php:48 +#: ../../Zotlabs/Module/Defperms.php:190 ../../Zotlabs/Module/Pubstream.php:20 +#: ../../Zotlabs/Module/Group.php:107 ../../Zotlabs/Module/Oauth.php:100 +#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Wiki.php:52 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Uexport.php:62 +#: ../../Zotlabs/Module/Cards.php:51 ../../Zotlabs/Module/Affinity.php:52 +#: ../../Zotlabs/Module/Randprof.php:29 ../../Zotlabs/Module/Suggest.php:40 +#: ../../Zotlabs/Module/Notes.php:57 ../../Zotlabs/Module/Tokens.php:99 +#: ../../Zotlabs/Module/Articles.php:52 ../../Zotlabs/Module/Mood.php:134 +#: ../../Zotlabs/Module/Permcats.php:63 ../../Zotlabs/Module/Probe.php:19 +#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 +#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Poke.php:165 +#: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:22 +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:32 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:50 +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:23 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:38 +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:35 +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:21 +#: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:20 +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:33 +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:42 +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:35 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:146 +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:40 +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:35 +#: ../../extend/addon/hubzilla-addons/sendzid/Mod_Sendzid.php:20 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:78 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:39 +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:33 +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:21 +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:34 +#: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:58 +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:35 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:36 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:43 +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:28 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:53 +#: ../../extend/addon/hubzilla-addons/nsabait/Mod_Nsabait.php:20 +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:34 +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:50 +msgid "Not Installed" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:126 -msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " -"at this rate per hour" +#: ../../Zotlabs/Module/Pdledit.php:44 +msgid "Provides the ability to edit system page layouts" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:140 -msgid "Community Moderation Settings" +#: ../../Zotlabs/Module/Pdledit.php:57 ../../Zotlabs/Module/Pdledit.php:100 +msgid "Edit System Page Description" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:232 -msgid "Channel Reputation" +#: ../../Zotlabs/Module/Pdledit.php:78 +msgid "(modified)" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:233 -#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:158 -#: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Lib/ThreadItem.php:497 -#: ../../Zotlabs/Storage/Browser.php:411 -msgid "Close" +#: ../../Zotlabs/Module/Pdledit.php:78 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:236 -msgid "An Error has occurred." +#: ../../Zotlabs/Module/Pdledit.php:95 +msgid "Layout not found." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:254 -msgid "Upvote" +#: ../../Zotlabs/Module/Pdledit.php:101 +msgid "Module Name:" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:255 -msgid "Downvote" +#: ../../Zotlabs/Module/Pdledit.php:102 +msgid "Layout Help" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:414 -msgid "Can moderate reputation on my channel." +#: ../../Zotlabs/Module/Pdledit.php:103 +msgid "Edit another layout" msgstr "" -#: ../../addon/superblock/superblock.php:337 -msgid "Block Completely" +#: ../../Zotlabs/Module/Pdledit.php:104 +msgid "System layout" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:21 -msgid "Superblock App" +#: ../../Zotlabs/Module/Pdledit.php:108 ../../Zotlabs/Module/Events.php:501 +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Import.php:647 +#: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Group.php:151 +#: ../../Zotlabs/Module/Group.php:167 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Connect.php:107 +#: ../../Zotlabs/Module/Filestorage.php:208 ../../Zotlabs/Module/Oauth2.php:116 +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Locs.php:132 +#: ../../Zotlabs/Module/Connedit.php:897 ../../Zotlabs/Module/Regate.php:387 +#: ../../Zotlabs/Module/Rate.php:168 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 +#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 +#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Editpost.php:86 +#: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Pconfig.php:116 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Security.php:120 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +#: ../../Zotlabs/Module/Admin/Site.php:412 +#: ../../Zotlabs/Module/Admin/Profs.php:178 ../../Zotlabs/Module/Thing.php:328 +#: ../../Zotlabs/Module/Thing.php:381 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Setup.php:306 +#: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Permcats.php:129 +#: ../../Zotlabs/Module/Settings/Account.php:107 +#: ../../Zotlabs/Module/Settings/Events.php:42 +#: ../../Zotlabs/Module/Settings/Profiles.php:52 +#: ../../Zotlabs/Module/Settings/Editor.php:42 +#: ../../Zotlabs/Module/Settings/Features.php:48 +#: ../../Zotlabs/Module/Settings/Manage.php:43 +#: ../../Zotlabs/Module/Settings/Display.php:188 +#: ../../Zotlabs/Module/Settings/Photos.php:42 +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Connections.php:42 +#: ../../Zotlabs/Module/Settings/Calendar.php:42 +#: ../../Zotlabs/Module/Settings/Directory.php:42 +#: ../../Zotlabs/Module/Settings/Channel_home.php:91 +#: ../../Zotlabs/Module/Settings/Network.php:62 +#: ../../Zotlabs/Module/Settings/Conversation.php:49 +#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Sources.php:125 +#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Poke.php:217 +#: ../../Zotlabs/Storage/Browser.php:382 ../../Zotlabs/Lib/ThreadItem.php:827 +#: ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 +#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 +#: ../../extend/addon/hubzilla-addons/irc/irc.php:45 +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:95 +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:57 +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:95 +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:143 +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:51 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:90 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1376 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:312 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:412 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:643 +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:410 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:248 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:132 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:142 +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:86 +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:102 +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:79 +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:155 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:82 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1461 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1520 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1639 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2742 +#: ../../extend/addon/hubzilla-addons/workflow/Settings/Mod_WorkflowSettings.php:94 +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:70 +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:61 +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:67 +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:70 +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:602 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:193 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:251 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:306 +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:65 +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:72 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:262 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:330 +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:136 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:184 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:80 +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:53 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:142 +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:54 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:311 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:53 +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:55 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:72 +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:35 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:109 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:115 +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:100 +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:124 +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:56 +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:73 +#: ../../view/theme/redbasic/php/config.php:94 +msgid "Submit" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:21 -#: ../../addon/nsabait/Mod_Nsabait.php:20 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 -#: ../../addon/photocache/Mod_Photocache.php:42 -#: ../../addon/gallery/Mod_Gallery.php:58 -#: ../../addon/planets/Mod_Planets.php:20 ../../addon/redred/Mod_Redred.php:50 -#: ../../addon/statusnet/Mod_Statusnet.php:146 ../../addon/rtof/Mod_Rtof.php:36 -#: ../../addon/wppost/Mod_Wppost.php:43 ../../addon/hsse/Mod_Hsse.php:21 -#: ../../addon/ijpost/Mod_Ijpost.php:35 -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:40 -#: ../../addon/dwpost/Mod_Dwpost.php:39 -#: ../../addon/startpage/Mod_Startpage.php:50 -#: ../../addon/twitter/Mod_Twitter.php:78 ../../addon/pumpio/Mod_Pumpio.php:53 -#: ../../addon/sendzid/Mod_Sendzid.php:20 ../../addon/nofed/Mod_Nofed.php:33 -#: ../../addon/smileybutton/Mod_Smileybutton.php:35 -#: ../../addon/diaspora/Mod_Diaspora.php:58 -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 -#: ../../addon/libertree/Mod_Libertree.php:35 -#: ../../addon/hideaside/Mod_Hideaside.php:23 -#: ../../addon/skeleton/Mod_Skeleton.php:32 ../../addon/nsfw/Mod_Nsfw.php:33 -#: ../../addon/gnusoc/Mod_Gnusoc.php:22 ../../addon/ljpost/Mod_Ljpost.php:38 -#: ../../addon/authchoose/Mod_Authchoose.php:28 -#: ../../addon/pageheader/Mod_Pageheader.php:34 -#: ../../addon/xmpp/Mod_Xmpp.php:35 ../../Zotlabs/Module/Tokens.php:99 -#: ../../Zotlabs/Module/Group.php:107 ../../Zotlabs/Module/Oauth.php:100 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Poke.php:165 -#: ../../Zotlabs/Module/Cdav.php:877 ../../Zotlabs/Module/Webpages.php:48 -#: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Permcats.php:63 -#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:62 -#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Cards.php:51 -#: ../../Zotlabs/Module/Articles.php:52 ../../Zotlabs/Module/Bookmarks.php:78 -#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:56 -#: ../../Zotlabs/Module/Invite.php:310 ../../Zotlabs/Module/Notes.php:57 -#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Defperms.php:190 -#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 -#: ../../Zotlabs/Module/Pdledit.php:43 ../../Zotlabs/Module/Wiki.php:52 -#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Sources.php:88 -msgid "Not Installed" +#: ../../Zotlabs/Module/Z6trans.php:19 +msgid "Update to Hubzilla 5.0 step 2" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:22 -msgid "Block channels" +#: ../../Zotlabs/Module/Z6trans.php:21 +msgid "To complete the update please run" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:64 -msgid "superblock settings updated" +#: ../../Zotlabs/Module/Z6trans.php:23 +msgid "php util/z6convert.php" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:88 -msgid "Currently blocked" +#: ../../Zotlabs/Module/Z6trans.php:25 +msgid "from the terminal." msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:90 -msgid "No channels currently blocked" +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Cloud.php:123 +#: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Group.php:99 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Subthread.php:89 ../../Zotlabs/Module/Share.php:72 +#: ../../Zotlabs/Web/WebServer.php:115 ../../include/items.php:441 +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:119 +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:109 +msgid "Permission denied" msgstr "" -#: ../../addon/superblock/Mod_Superblock.php:92 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:459 -#: ../../Zotlabs/Module/Profile_photo.php:501 -#: ../../Zotlabs/Module/Cover_photo.php:424 ../../Zotlabs/Module/Photos.php:996 -msgid "Remove" +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "Invalid message" msgstr "" -#: ../../addon/nsabait/Mod_Nsabait.php:20 -#: ../../addon/nsabait/Mod_Nsabait.php:24 -msgid "NSA Bait App" +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "no results" msgstr "" -#: ../../addon/nsabait/Mod_Nsabait.php:24 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 -#: ../../addon/planets/Mod_Planets.php:23 ../../addon/hsse/Mod_Hsse.php:26 -#: ../../addon/hideaside/Mod_Hideaside.php:27 -#: ../../addon/authchoose/Mod_Authchoose.php:33 -msgid "Installed" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "channel sync processed" msgstr "" -#: ../../addon/nsabait/Mod_Nsabait.php:26 -msgid "Make yourself a political target" +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "queued" msgstr "" -#: ../../addon/visage/Mod_Visage.php:21 -msgid "Who viewed my channel/profile" +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "posted" msgstr "" -#: ../../addon/visage/Mod_Visage.php:25 -msgid "Recent Channel/Profile Viewers" +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "accepted for delivery" msgstr "" -#: ../../addon/visage/Mod_Visage.php:36 -msgid "No entries." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "updated" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "update ignored" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "permission denied" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." +#: ../../Zotlabs/Module/Dreport.php:133 +msgid "recipient not found" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" +#: ../../Zotlabs/Module/Dreport.php:136 +msgid "mail recalled" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." +#: ../../Zotlabs/Module/Dreport.php:139 +msgid "duplicate mail received" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" +#: ../../Zotlabs/Module/Dreport.php:142 +msgid "mail delivered" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." +#: ../../Zotlabs/Module/Dreport.php:162 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:57 ../../include/nav.php:115 -#: ../../include/conversation.php:1083 ../../Zotlabs/Module/Connedit.php:601 -#: ../../Zotlabs/Lib/Apps.php:344 -msgid "View Profile" +#: ../../Zotlabs/Module/Dreport.php:166 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 +msgid "Options" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:120 -#: ../../include/channel.php:1567 -msgid "Edit Profile" +#: ../../Zotlabs/Module/Dreport.php:167 +msgid "Redeliver" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." +#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:362 +#: ../../include/channel.php:1914 +msgid "Profile" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:218 +msgid "All Connections" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Not found" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" +#: ../../Zotlabs/Module/Cloud.php:130 +msgid "Unknown error" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " +#: ../../Zotlabs/Module/Authorize.php:32 ../../include/acl_selectors.php:147 +msgid "Allow" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " +#: ../../Zotlabs/Module/Authorize.php:33 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 +msgid "Deny" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Events.php:28 +msgid "Calendar entries imported." msgstr "" -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" +#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:30 +msgid "No calendar entries found." msgstr "" -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" +#: ../../Zotlabs/Module/Cdav.php:877 +msgid "CardDAV App" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." +#: ../../Zotlabs/Module/Cdav.php:878 +msgid "CalDAV capable addressbook" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:298 -#: ../../Zotlabs/Module/Profile_photo.php:254 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Cdav.php:944 ../../Zotlabs/Module/Cal.php:165 +#: ../../Zotlabs/Module/Channel_calendar.php:392 +msgid "Link to source" msgstr "" -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:468 +msgid "Event title" msgstr "" -#: ../../addon/bookmarker/bookmarker.php:38 -#: ../../Zotlabs/Lib/ThreadItem.php:474 -msgid "Save Bookmarks" +#: ../../Zotlabs/Module/Cdav.php:1011 ../../Zotlabs/Module/Events.php:474 +msgid "Start date and time" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:77 -msgid "Max queueworker threads" +#: ../../Zotlabs/Module/Cdav.php:1012 +msgid "End date and time" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:79 -msgid "Minimum 4, default 4" +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:497 +msgid "Timezone:" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:90 -msgid "Assume workers dead after" +#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:481 +#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:173 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:655 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:260 +msgid "Description" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:92 -msgid "Minimum 120, default 300 seconds" +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:483 +#: ../../Zotlabs/Module/Profiles.php:511 ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Module/Locs.php:128 ../../Zotlabs/Module/Pubsites.php:53 +#: ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:103 -msgid "Pause before starting next task" +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Events.php:706 ../../Zotlabs/Module/Photos.php:947 +#: ../../Zotlabs/Module/Cal.php:203 +msgid "Previous" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:105 -msgid "Minimum 100, default 100 microseconds" +#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:698 +#: ../../Zotlabs/Module/Events.php:707 ../../Zotlabs/Module/Photos.php:956 +#: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Setup.php:262 +msgid "Next" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:113 -msgid "Queueworker Settings" +#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:708 +#: ../../Zotlabs/Module/Cal.php:205 +msgid "Today" msgstr "" -#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1145 -#: ../../include/text.php:1157 ../../Zotlabs/Widget/Notes.php:23 -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Cards.php:113 -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Articles.php:117 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -msgid "Save" +#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:703 +msgid "Month" msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:15 -msgid "Add some colour to tag clouds" +#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:704 +msgid "Week" msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 -msgid "Rainbow Tag App" +#: ../../Zotlabs/Module/Cdav.php:1041 ../../Zotlabs/Module/Events.php:705 +msgid "Day" msgstr "" -#: ../../addon/rainbowtag/Mod_Rainbowtag.php:34 -msgid "Rainbow Tag" +#: ../../Zotlabs/Module/Cdav.php:1042 +msgid "List month" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:27 -msgid "Photo Cache settings saved." +#: ../../Zotlabs/Module/Cdav.php:1043 +msgid "List week" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:36 -msgid "" -"Photo Cache addon saves a copy of images from external sites locally to " -"increase your anonymity in the web." +#: ../../Zotlabs/Module/Cdav.php:1044 +msgid "List day" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:42 -msgid "Photo Cache App" +#: ../../Zotlabs/Module/Cdav.php:1052 +msgid "More" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:53 -msgid "Minimal photo size for caching" +#: ../../Zotlabs/Module/Cdav.php:1053 +msgid "Less" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:55 -msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." +#: ../../Zotlabs/Module/Cdav.php:1054 ../../Zotlabs/Module/Cdav.php:1389 +#: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Oauth.php:53 +#: ../../Zotlabs/Module/Oauth.php:137 ../../Zotlabs/Module/Oauth2.php:58 +#: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Admin/Addons.php:457 ../../Zotlabs/Lib/Apps.php:536 +msgid "Update" msgstr "" -#: ../../addon/photocache/Mod_Photocache.php:64 -msgid "Photo Cache" +#: ../../Zotlabs/Module/Cdav.php:1055 +msgid "Select calendar" msgstr "" -#: ../../addon/gallery/gallery.php:43 ../../addon/gallery/Mod_Gallery.php:136 -msgid "Gallery" +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Widget/Cdav.php:143 +msgid "Channel Calendars" msgstr "" -#: ../../addon/gallery/gallery.php:46 -msgid "Photo Gallery" +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Widget/Cdav.php:129 +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "CalDAV Calendars" msgstr "" -#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1464 -#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Cards.php:42 -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Articles.php:43 -#: ../../Zotlabs/Module/Menu.php:92 ../../Zotlabs/Module/Layouts.php:31 -msgid "Requested profile is not available." +#: ../../Zotlabs/Module/Cdav.php:1057 ../../Zotlabs/Module/Cdav.php:1390 +#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Module/Card_edit.php:130 +#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Editblock.php:139 ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Module/Connections.php:329 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:269 +#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Lib/Apps.php:558 +#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../include/conversation.php:730 +#: ../../include/conversation.php:777 +msgid "Delete" msgstr "" -#: ../../addon/gallery/Mod_Gallery.php:58 -msgid "Gallery App" +#: ../../Zotlabs/Module/Cdav.php:1058 +msgid "Delete all" msgstr "" -#: ../../addon/gallery/Mod_Gallery.php:59 -msgid "A simple gallery for your photo albums" +#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1391 +#: ../../Zotlabs/Module/Filer.php:56 ../../Zotlabs/Module/Profiles.php:803 +#: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 +#: ../../Zotlabs/Module/Card_edit.php:132 ../../Zotlabs/Module/Oauth2.php:117 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profile_photo.php:507 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:111 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:427 +#: ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Storage/Browser.php:383 ../../include/conversation.php:1460 +#: ../../include/conversation.php:1515 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:209 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:258 +msgid "Cancel" msgstr "" -#: ../../addon/planets/Mod_Planets.php:20 -#: ../../addon/planets/Mod_Planets.php:23 -msgid "Random Planet App" +#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1388 +#: ../../Zotlabs/Module/Webpages.php:254 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Menu.php:182 +#: ../../Zotlabs/Storage/Browser.php:365 ../../Zotlabs/Storage/Browser.php:538 +#: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 +msgid "Create" msgstr "" -#: ../../addon/planets/Mod_Planets.php:25 -msgid "" -"Set a random planet from the Star Wars Empire as your location when posting" +#: ../../Zotlabs/Module/Cdav.php:1061 +msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "" -#: ../../addon/openid/Mod_Id.php:53 ../../addon/mail/Mod_Mail.php:26 -#: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 -#: ../../include/photos.php:27 ../../include/items.php:4087 -#: ../../include/attach.php:156 ../../include/attach.php:205 -#: ../../include/attach.php:278 ../../include/attach.php:329 -#: ../../include/attach.php:424 ../../include/attach.php:438 -#: ../../include/attach.php:445 ../../include/attach.php:527 -#: ../../include/attach.php:1091 ../../include/attach.php:1164 -#: ../../include/attach.php:1327 ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/Attach_edit.php:90 -#: ../../Zotlabs/Module/Attach_edit.php:99 -#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Network.php:19 -#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Setup.php:208 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:365 -#: ../../Zotlabs/Module/Channel.php:404 ../../Zotlabs/Module/Group.php:15 -#: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Chat.php:113 -#: ../../Zotlabs/Module/Chat.php:118 -#: ../../Zotlabs/Module/Channel_calendar.php:232 -#: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 -#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 -#: ../../Zotlabs/Module/Profile.php:114 -#: ../../Zotlabs/Module/Sharedwithme.php:19 -#: ../../Zotlabs/Module/Webpages.php:133 -#: ../../Zotlabs/Module/Filestorage.php:20 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:119 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Events.php:277 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/Display.php:420 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Mood.php:126 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Cards.php:86 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Vote.php:19 -#: ../../Zotlabs/Module/Profile_photo.php:338 -#: ../../Zotlabs/Module/Profile_photo.php:351 -#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Connections.php:32 -#: ../../Zotlabs/Module/Cover_photo.php:341 -#: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Photos.php:71 -#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 -#: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:637 -#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Menu.php:130 -#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:182 -#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 -#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 -#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:284 -#: ../../Zotlabs/Module/Wiki.php:427 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Connedit.php:397 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Locs.php:100 -#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Lib/Chatroom.php:135 -#: ../../Zotlabs/Web/WebServer.php:116 -msgid "Permission denied." +#: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 +#: ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../include/contact_widgets.php:112 ../../include/contact_widgets.php:156 +#: ../../include/contact_widgets.php:201 ../../include/contact_widgets.php:236 +#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 +#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 +msgid "Categories" msgstr "" -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1747 -msgid "Male" +#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Group.php:155 +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 +#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Sharedwithme.php:106 ../../Zotlabs/Module/Chat.php:257 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Storage/Browser.php:377 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:172 +msgid "Name" msgstr "" -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1745 -msgid "Female" +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:917 +msgid "Organisation" msgstr "" -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." +#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Connedit.php:918 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2617 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2678 +msgid "Title" msgstr "" -#: ../../addon/openid/Mod_Openid.php:76 ../../addon/openid/Mod_Openid.php:178 -#: ../../Zotlabs/Zot/Auth.php:266 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Profiles.php:788 +#: ../../Zotlabs/Module/Connedit.php:919 +msgid "Phone" msgstr "" -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:320 -msgid "Login failed." +#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:789 +#: ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 ../../include/network.php:1768 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:71 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:56 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:57 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:57 +msgid "Email" msgstr "" -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Connedit.php:921 +msgid "Instant messenger" msgstr "" -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" +#: ../../Zotlabs/Module/Cdav.php:1379 ../../Zotlabs/Module/Profiles.php:791 +#: ../../Zotlabs/Module/Connedit.php:922 +msgid "Website" msgstr "" -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" +#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:504 +#: ../../Zotlabs/Module/Profiles.php:792 ../../Zotlabs/Module/Locs.php:129 +#: ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +msgid "Address" msgstr "" -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:793 +#: ../../Zotlabs/Module/Connedit.php:924 +msgid "Note" msgstr "" -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:75 -msgid "Nickname" +#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:794 +#: ../../Zotlabs/Module/Connedit.php:925 ../../include/connections.php:734 +#: ../../include/event.php:1422 +msgid "Mobile" msgstr "" -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" +#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Connedit.php:926 ../../include/connections.php:735 +#: ../../include/event.php:1423 +msgid "Home" msgstr "" -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/redred/Mod_Redred.php:71 -#: ../../addon/rtof/Mod_Rtof.php:57 ../../include/network.php:1768 -#: ../../Zotlabs/Module/Cdav.php:1377 -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -#: ../../Zotlabs/Module/Admin/Accounts.php:330 -#: ../../Zotlabs/Module/Profiles.php:789 ../../Zotlabs/Module/Connedit.php:920 -msgid "Email" +#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:796 +#: ../../Zotlabs/Module/Connedit.php:927 ../../include/connections.php:738 +#: ../../include/event.php:1426 +msgid "Work" msgstr "" -#: ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 ../../Zotlabs/Lib/Apps.php:361 -msgid "Profile Photo" +#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Connedit.php:929 +msgid "Add Contact" msgstr "" -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" +#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Connedit.php:930 +msgid "Add Field" msgstr "" -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:935 +msgid "P.O. Box" msgstr "" -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" +#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:936 +msgid "Additional" msgstr "" -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" +#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:937 +msgid "Street" msgstr "" -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" +#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:938 +msgid "Locality" msgstr "" -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" +#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:939 +msgid "Region" msgstr "" -#: ../../addon/openid/MysqlProvider.php:67 ../../include/event.php:123 -msgid "Timezone" +#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Connedit.php:940 +msgid "ZIP Code" msgstr "" -#: ../../addon/openid/MysqlProvider.php:68 -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Cdav.php:1398 ../../Zotlabs/Module/Profiles.php:759 +#: ../../Zotlabs/Module/Connedit.php:941 +msgid "Country" msgstr "" -#: ../../addon/openid/MysqlProvider.php:69 ../../Zotlabs/Lib/Apps.php:359 -msgid "Language" +#: ../../Zotlabs/Module/Cdav.php:1457 +msgid "Default Calendar" msgstr "" -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" +#: ../../Zotlabs/Module/Cdav.php:1468 +msgid "Default Addressbook" msgstr "" -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" msgstr "" -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." msgstr "" -#: ../../addon/openid/MysqlProvider.php:74 -#: ../../Zotlabs/Module/Profiles.php:488 -msgid "Gender" +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 +#: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Settings/Display.php:88 +#: ../../Zotlabs/Module/Settings/Channel.php:311 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../include/dir_fns.php:146 +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:72 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:337 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:361 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:437 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:461 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:65 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:649 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:653 +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:153 +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:425 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:88 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:96 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:87 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:95 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:63 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:254 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:258 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:61 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:73 +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:72 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:63 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:67 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:71 +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:59 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:260 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:291 +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:45 +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:61 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:214 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:171 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:61 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:65 +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:138 +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:44 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:49 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:86 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:90 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:94 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:94 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:98 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:102 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 ../../boot.php:1721 +msgid "Yes" msgstr "" -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 +#: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Photos.php:673 +#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Settings/Display.php:88 +#: ../../Zotlabs/Module/Settings/Channel.php:311 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../include/dir_fns.php:146 +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:72 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:338 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:362 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:438 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:462 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:65 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:649 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:653 +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:153 +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:425 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:88 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:96 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:87 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:95 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:63 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:254 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:258 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:61 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:73 +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:72 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:63 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:67 +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:71 +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:59 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:260 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:291 +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:45 +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:61 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:214 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:171 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:61 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:65 +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:138 +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:44 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:49 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:86 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:90 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:94 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:94 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:98 +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:102 +#: ../../view/theme/redbasic/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:116 ../../boot.php:1721 +msgid "No" msgstr "" -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" +#: ../../Zotlabs/Module/Dirsearch.php:28 ../../Zotlabs/Module/Regdir.php:52 +msgid "This site is not a directory server" msgstr "" -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" +#: ../../Zotlabs/Module/Dirsearch.php:37 +msgid "This directory server requires an access token" msgstr "" -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "Enter a folder name" msgstr "" -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" +#: ../../Zotlabs/Module/Filer.php:53 +msgid "or select an existing folder (doubleclick)" msgstr "" -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Cards.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 +#: ../../Zotlabs/Module/Articles.php:117 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Widget/Notes.php:23 +#: ../../include/text.php:1145 ../../include/text.php:1157 +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:116 +msgid "Save" msgstr "" -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Lib/ThreadItem.php:185 +msgid "Save to Folder" msgstr "" -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" +#: ../../Zotlabs/Module/Events.php:113 +#: ../../Zotlabs/Module/Channel_calendar.php:62 +msgid "Event can not end before it has started." msgstr "" -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" +#: ../../Zotlabs/Module/Events.php:115 ../../Zotlabs/Module/Events.php:124 +#: ../../Zotlabs/Module/Events.php:146 +#: ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Channel_calendar.php:72 +#: ../../Zotlabs/Module/Channel_calendar.php:87 +msgid "Unable to generate preview." msgstr "" -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" +#: ../../Zotlabs/Module/Events.php:122 +#: ../../Zotlabs/Module/Channel_calendar.php:70 +msgid "Event title and start time are required." msgstr "" -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" +#: ../../Zotlabs/Module/Events.php:144 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Channel_calendar.php:85 +#: ../../Zotlabs/Module/Channel_calendar.php:226 +msgid "Event not found." msgstr "" -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" +#: ../../Zotlabs/Module/Events.php:266 ../../Zotlabs/Module/Like.php:441 +#: ../../Zotlabs/Module/Tagger.php:75 +#: ../../Zotlabs/Module/Channel_calendar.php:221 +#: ../../include/conversation.php:132 ../../include/text.php:2257 +#: ../../include/event.php:1259 +msgid "event" msgstr "" -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" +#: ../../Zotlabs/Module/Events.php:468 +msgid "Edit event title" msgstr "" -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" +#: ../../Zotlabs/Module/Events.php:468 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Profiles.php:747 ../../Zotlabs/Module/Profiles.php:751 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Appman.php:144 +#: ../../Zotlabs/Module/Register.php:498 ../../include/js_strings.php:123 +#: ../../include/datetime.php:211 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:334 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:358 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:434 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:458 +msgid "Required" msgstr "" -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" +#: ../../Zotlabs/Module/Events.php:470 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" +#: ../../Zotlabs/Module/Events.php:471 +msgid "Edit Category" msgstr "" -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" +#: ../../Zotlabs/Module/Events.php:471 +msgid "Category" msgstr "" -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" +#: ../../Zotlabs/Module/Events.php:474 +msgid "Edit start date and time" msgstr "" -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Events.php:478 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" +#: ../../Zotlabs/Module/Events.php:477 +msgid "Edit finish date and time" msgstr "" -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" +#: ../../Zotlabs/Module/Events.php:477 +msgid "Finish date and time" msgstr "" -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" +#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Events.php:480 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" +#: ../../Zotlabs/Module/Events.php:479 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" +#: ../../Zotlabs/Module/Events.php:481 +msgid "Edit Description" msgstr "" -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" +#: ../../Zotlabs/Module/Events.php:483 +msgid "Edit Location" msgstr "" -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" +#: ../../Zotlabs/Module/Events.php:486 ../../Zotlabs/Module/Webpages.php:262 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:837 +#: ../../include/conversation.php:1404 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:153 +msgid "Preview" msgstr "" -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" +#: ../../Zotlabs/Module/Events.php:487 ../../include/conversation.php:1482 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:225 +msgid "Permission settings" msgstr "" -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" +#: ../../Zotlabs/Module/Events.php:502 +msgid "Advanced Options" msgstr "" -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" +#: ../../Zotlabs/Module/Events.php:613 +msgid "l, F j" msgstr "" -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" +#: ../../Zotlabs/Module/Events.php:641 +#: ../../Zotlabs/Module/Channel_calendar.php:370 +msgid "Edit event" msgstr "" -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" +#: ../../Zotlabs/Module/Events.php:643 +#: ../../Zotlabs/Module/Channel_calendar.php:372 +msgid "Delete event" msgstr "" -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" +#: ../../Zotlabs/Module/Events.php:669 ../../include/text.php:2076 +msgid "Link to Source" msgstr "" -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" +#: ../../Zotlabs/Module/Events.php:677 +#: ../../Zotlabs/Module/Channel_calendar.php:406 +msgid "calendar" msgstr "" -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," +#: ../../Zotlabs/Module/Events.php:696 +msgid "Edit Event" msgstr "" -#: ../../addon/redred/Mod_Redred.php:24 -msgid "Channel is required." +#: ../../Zotlabs/Module/Events.php:696 +msgid "Create Event" msgstr "" -#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:326 -msgid "Invalid channel." +#: ../../Zotlabs/Module/Events.php:699 ../../include/channel.php:1917 +msgid "Export" msgstr "" -#: ../../addon/redred/Mod_Redred.php:38 -msgid "Hubzilla Crosspost Connector Settings saved." +#: ../../Zotlabs/Module/Events.php:702 ../../Zotlabs/Module/Webpages.php:261 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Wiki.php:212 +#: ../../Zotlabs/Module/Wiki.php:408 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Pubsites.php:61 +msgid "View" msgstr "" -#: ../../addon/redred/Mod_Redred.php:50 -#: ../../addon/statusnet/Mod_Statusnet.php:146 -msgid "Hubzilla Crosspost Connector App" +#: ../../Zotlabs/Module/Events.php:739 +msgid "Event removed" msgstr "" -#: ../../addon/redred/Mod_Redred.php:51 -msgid "Relay public postings to another Hubzilla channel" +#: ../../Zotlabs/Module/Events.php:742 +#: ../../Zotlabs/Module/Channel_calendar.php:493 +msgid "Failed to remove event" msgstr "" -#: ../../addon/redred/Mod_Redred.php:63 -msgid "Send public postings to Hubzilla channel by default" +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" msgstr "" -#: ../../addon/redred/Mod_Redred.php:67 -msgid "Hubzilla API Path" +#: ../../Zotlabs/Module/Help.php:83 ../../include/nav.php:434 +msgid "About" msgstr "" -#: ../../addon/redred/Mod_Redred.php:67 ../../addon/rtof/Mod_Rtof.php:53 -msgid "https://{sitename}/api" +#: ../../Zotlabs/Module/Help.php:84 ../../Zotlabs/Module/Group.php:156 +msgid "Members" msgstr "" -#: ../../addon/redred/Mod_Redred.php:71 -msgid "Hubzilla login name" +#: ../../Zotlabs/Module/Help.php:85 +msgid "Administrators" msgstr "" -#: ../../addon/redred/Mod_Redred.php:75 -msgid "Hubzilla channel name" +#: ../../Zotlabs/Module/Help.php:86 +msgid "Developers" msgstr "" -#: ../../addon/redred/Mod_Redred.php:79 -msgid "Hubzilla password" +#: ../../Zotlabs/Module/Help.php:87 +msgid "Tutorials" msgstr "" -#: ../../addon/redred/Mod_Redred.php:87 -msgid "Hubzilla Crosspost Connector" +#: ../../Zotlabs/Module/Help.php:98 +msgid "$Projectname Documentation" msgstr "" -#: ../../addon/redred/redred.php:50 -msgid "Post to Hubzilla" +#: ../../Zotlabs/Module/Help.php:99 +msgid "Contents" msgstr "" -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" +#: ../../Zotlabs/Module/Bookmarks.php:62 +msgid "Bookmark added" msgstr "" -#: ../../addon/redphotos/redphotos.php:119 -#: ../../addon/redfiles/redfiles.php:109 ../../addon/hzfiles/hzfiles.php:75 -#: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:99 -#: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Cloud.php:123 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 -#: ../../Zotlabs/Web/WebServer.php:115 -msgid "Permission denied" +#: ../../Zotlabs/Module/Bookmarks.php:78 +msgid "Bookmarks App" msgstr "" -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "Bookmark links from posts and manage them" msgstr "" -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." +#: ../../Zotlabs/Module/Bookmarks.php:92 +msgid "My Bookmarks" msgstr "" -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" +#: ../../Zotlabs/Module/Bookmarks.php:103 +msgid "My Connections Bookmarks" msgstr "" -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" +#: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Cards.php:42 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Profile.php:27 +#: ../../Zotlabs/Module/Articles.php:43 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Menu.php:92 ../../include/channel.php:1464 +#: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:49 +msgid "Requested profile is not available." msgstr "" -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" +#: ../../Zotlabs/Module/Webpages.php:48 +msgid "Webpages App" msgstr "" -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" +#: ../../Zotlabs/Module/Webpages.php:49 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" +#: ../../Zotlabs/Module/Webpages.php:69 +msgid "Import Webpage Elements" msgstr "" -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import selected" msgstr "" -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" +#: ../../Zotlabs/Module/Webpages.php:93 +msgid "Export Webpage Elements" msgstr "" -#: ../../addon/redphotos/redphotohelper.php:71 ../../addon/pubcrawl/as.php:2101 -#: ../../addon/diaspora/Receiver.php:1649 ../../include/text.php:2254 -#: ../../include/conversation.php:128 ../../Zotlabs/Module/Like.php:439 -#: ../../Zotlabs/Module/Tagger.php:71 ../../Zotlabs/Module/Subthread.php:115 -#: ../../Zotlabs/Lib/Activity.php:3264 -msgid "photo" +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export selected" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:61 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." +#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:341 +#: ../../include/nav.php:524 +msgid "Webpages" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:98 -msgid "We could not contact the GNU social API with the Path you entered." +#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Group.php:253 ../../Zotlabs/Module/Oauth.php:173 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Oauth2.php:194 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:321 +#: ../../Zotlabs/Module/Connections.php:363 +#: ../../Zotlabs/Module/Connections.php:383 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Article_edit.php:98 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:268 +#: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Lib/Apps.php:557 +#: ../../Zotlabs/Lib/ThreadItem.php:149 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/channel.php:1566 +#: ../../include/channel.php:1570 ../../include/menu.php:120 +msgid "Edit" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:130 -msgid "GNU social settings updated." +#: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Widget/Cdav.php:136 +#: ../../include/conversation.php:1437 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:186 +msgid "Share" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:147 -msgid "" -"Relay public postings to a connected GNU social account (formerly StatusNet)" +#: ../../Zotlabs/Module/Webpages.php:263 +msgid "Actions" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:181 -msgid "Globally Available GNU social OAuthKeys" +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Page Link" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:183 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Title" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:198 -msgid "Provide your own OAuth Credentials" +#: ../../Zotlabs/Module/Webpages.php:266 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:178 +msgid "Created" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:200 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as " -"an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." +#: ../../Zotlabs/Module/Webpages.php:267 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:179 +msgid "Edited" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:204 -msgid "OAuth Consumer Key" +#: ../../Zotlabs/Module/Webpages.php:295 +msgid "Invalid file type." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:208 -msgid "OAuth Consumer Secret" +#: ../../Zotlabs/Module/Webpages.php:307 +msgid "Error opening zip file" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:212 -msgid "Base API Path" +#: ../../Zotlabs/Module/Webpages.php:318 +msgid "Invalid folder path." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:212 -msgid "Remember the trailing /" +#: ../../Zotlabs/Module/Webpages.php:345 +msgid "No webpage elements detected." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:216 -msgid "GNU social application name" +#: ../../Zotlabs/Module/Webpages.php:420 +msgid "Import complete." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:239 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." +#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:186 +#: ../../Zotlabs/Module/Profiles.php:243 ../../Zotlabs/Module/Profiles.php:661 +msgid "Profile not found." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:241 -msgid "Log in with GNU social" +#: ../../Zotlabs/Module/Profiles.php:46 +msgid "Profile deleted." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:244 -msgid "Copy the security code from GNU social here" +#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 +msgid "Profile-" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:254 -msgid "Cancel Connection Process" +#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 +msgid "New profile created." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:256 -msgid "Current GNU social API is" +#: ../../Zotlabs/Module/Profiles.php:113 +msgid "Profile unavailable to clone." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:260 -msgid "Cancel GNU social Connection" +#: ../../Zotlabs/Module/Profiles.php:148 +msgid "Profile unavailable to export." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:272 -#: ../../addon/twitter/Mod_Twitter.php:147 -msgid "Currently connected to: " +#: ../../Zotlabs/Module/Profiles.php:254 +msgid "Profile Name is required." msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:277 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." +#: ../../Zotlabs/Module/Profiles.php:461 +msgid "Marital Status" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:282 -msgid "Post to GNU social by default" +#: ../../Zotlabs/Module/Profiles.php:465 +msgid "Romantic Partner" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:282 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" +#: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Profiles.php:774 +msgid "Likes" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:291 -#: ../../addon/twitter/Mod_Twitter.php:171 -msgid "Clear OAuth configuration" +#: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:775 +msgid "Dislikes" msgstr "" -#: ../../addon/statusnet/Mod_Statusnet.php:303 -msgid "GNU-Social Crosspost Connector" +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:782 +msgid "Work/Employment" msgstr "" -#: ../../addon/statusnet/statusnet.php:145 -msgid "Post to GNU social" +#: ../../Zotlabs/Module/Profiles.php:480 +msgid "Religion" msgstr "" -#: ../../addon/statusnet/statusnet.php:593 -#: ../../Zotlabs/Module/Admin/Site.php:420 -msgid "Site name" +#: ../../Zotlabs/Module/Profiles.php:484 +msgid "Political Views" msgstr "" -#: ../../addon/statusnet/statusnet.php:594 -msgid "API URL" +#: ../../Zotlabs/Module/Profiles.php:488 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:74 +msgid "Gender" msgstr "" -#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:506 -#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Profiles.php:492 +msgid "Sexual Preference" msgstr "" -#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:505 -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Profiles.php:496 +msgid "Homepage" msgstr "" -#: ../../addon/statusnet/statusnet.php:597 -msgid "Application name" +#: ../../Zotlabs/Module/Profiles.php:500 +msgid "Interests" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:24 -msgid "Friendica Crosspost Connector Settings saved." +#: ../../Zotlabs/Module/Profiles.php:596 +msgid "Profile updated." msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:36 -msgid "Friendica Crosspost Connector App" +#: ../../Zotlabs/Module/Profiles.php:680 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:37 -msgid "Relay public postings to a connected Friendica account" +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "Edit Profile Details" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:49 -msgid "Send public postings to Friendica by default" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "View this profile" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:53 -msgid "Friendica API Path" +#: ../../Zotlabs/Module/Profiles.php:727 ../../Zotlabs/Module/Profiles.php:826 +#: ../../include/channel.php:1589 +msgid "Edit visibility" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:57 -msgid "Friendica login name" +#: ../../Zotlabs/Module/Profiles.php:728 +msgid "Profile Tools" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:61 -msgid "Friendica password" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Change cover photo" msgstr "" -#: ../../addon/rtof/Mod_Rtof.php:69 -msgid "Friendica Crosspost Connector" +#: ../../Zotlabs/Module/Profiles.php:730 ../../include/channel.php:1559 +msgid "Change profile photo" msgstr "" -#: ../../addon/rtof/rtof.php:51 -msgid "Post to Friendica" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Create a new profile using these settings" msgstr "" -#: ../../addon/wppost/wppost.php:46 -msgid "Post to WordPress" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Clone this profile" msgstr "" -#: ../../addon/wppost/wppost.php:173 ../../addon/wppost/Mod_Wppost.php:98 -#: ../../addon/dwpost/Mod_Dwpost.php:69 ../../addon/dwpost/dwpost.php:134 -#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:383 -msgid "Source" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Delete this profile" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:30 -msgid "Wordpress Settings saved." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Add profile things" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:43 -msgid "Wordpress Post App" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Personal" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:44 -msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" +#: ../../Zotlabs/Module/Profiles.php:737 +msgid "Relationship" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:69 -msgid "WordPress username" +#: ../../Zotlabs/Module/Profiles.php:738 ../../Zotlabs/Widget/Newmember.php:51 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:73 -msgid "WordPress password" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Import profile from file" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:77 -msgid "WordPress API URL" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Export profile to file" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:78 -msgid "Typically https://your-blog.tld/xmlrpc.php" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Your gender" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:81 -msgid "WordPress blogid" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Marital status" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:82 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Sexual preference" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:86 -msgid "Post to WordPress by default" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "Profile name" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:90 -msgid "Forward comments (requires hubzilla_wp plugin)" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "This is your default profile." msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:94 ../../addon/dwpost/Mod_Dwpost.php:65 -#: ../../addon/ljpost/Mod_Ljpost.php:71 -msgid "Add link to original post" +#: ../../Zotlabs/Module/Profiles.php:751 +msgid "Your full name" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:98 ../../addon/dwpost/Mod_Dwpost.php:69 -msgid "Link description (default:" +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Short title/description" msgstr "" -#: ../../addon/wppost/Mod_Wppost.php:106 -msgid "Wordpress Post" +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Maximal 190 characters" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:27 -msgid "No server specified" +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Street address" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:73 -msgid "Posts imported" +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Locality/City" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:113 -msgid "Files imported" +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Region/State" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:122 -msgid "" -"This addon app copies existing content and file storage to a cloned/copied " -"channel. Once the app is installed, visit the newly installed app. This will " -"allow you to set the location of your original channel and an optional date " -"range of files/conversations to copy." +#: ../../Zotlabs/Module/Profiles.php:758 +msgid "Postal/Zip code" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:135 -#: ../../Zotlabs/Lib/Apps.php:332 -msgid "Content Import" +#: ../../Zotlabs/Module/Profiles.php:764 +msgid "Who (if applicable)" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:136 -msgid "" -"This will import all your conversations and cloud files from a cloned " -"channel on another server. This may take a while if you have lots of posts " -"and or files." +#: ../../Zotlabs/Module/Profiles.php:764 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:137 -msgid "Include posts" +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Since (date)" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:137 -msgid "Conversations, Articles, Cards, and other posted content" +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Tell us about yourself" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:138 -msgid "Include files" +#: ../../Zotlabs/Module/Profiles.php:769 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:68 +msgid "Homepage URL" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:138 -msgid "Files, Photos and other cloud storage" +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Hometown" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:139 -msgid "Original Server base URL" +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Political views" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:140 -#: ../../addon/hzfiles/hzfiles.php:84 -msgid "Since modified date yyyy-mm-dd" +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Religious views" msgstr "" -#: ../../addon/content_import/Mod_content_import.php:141 -#: ../../addon/hzfiles/hzfiles.php:85 -msgid "Until modified date yyyy-mm-dd" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Keywords used in directory listings" msgstr "" -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 -msgid "Set your location" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Example: fishing photography software" msgstr "" -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 -msgid "Clear browser location" +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Musical interests" msgstr "" -#: ../../addon/hsse/hsse.php:95 ../../addon/mail/Mod_Mail.php:167 -#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1345 -#: ../../Zotlabs/Module/Article_edit.php:100 -#: ../../Zotlabs/Module/Card_edit.php:101 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:220 -#: ../../Zotlabs/Module/Editblock.php:116 -msgid "Insert web link" +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Books, literature" msgstr "" -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 -msgid "Embed (existing) photo from your photo albums" +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Television" msgstr "" -#: ../../addon/hsse/hsse.php:134 ../../addon/mail/Mod_Mail.php:120 -#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1382 -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 -msgid "Tag term:" +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Hobbies/Interests" msgstr "" -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 -msgid "Where are you right now?" +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Love/Romance" msgstr "" -#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1387 -#: ../../Zotlabs/Module/Profile_photo.php:509 -#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:402 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "School/Education" msgstr "" -#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1388 -#: ../../Zotlabs/Module/Profile_photo.php:510 -#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:403 -msgid "Choose an album" +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "Contact information and social networks" msgstr "" -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 -msgid "Choose a different album..." +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "My other channels" msgstr "" -#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1390 -#: ../../Zotlabs/Module/Profile_photo.php:512 -#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:405 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Communications" msgstr "" -#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1391 -#: ../../Zotlabs/Module/Profile_photo.php:513 -#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:406 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Profiles.php:822 ../../include/channel.php:1585 +msgid "Profile Image" msgstr "" -#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1392 -#: ../../Zotlabs/Module/Profile_photo.php:514 -#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:407 -msgid "Error getting album" +#: ../../Zotlabs/Module/Profiles.php:832 ../../include/channel.php:1566 +#: ../../include/nav.php:118 +msgid "Edit Profiles" msgstr "" -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 -msgid "Comments enabled" +#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:213 +#: ../../Zotlabs/Module/Manage.php:145 ../../Zotlabs/Module/Chat.php:262 +msgid "Create New" msgstr "" -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 -msgid "Comments disabled" +#: ../../Zotlabs/Module/Import.php:69 ../../Zotlabs/Module/Import_items.php:48 +msgid "Nothing to import." msgstr "" -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1404 -#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Events.php:486 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:837 -msgid "Preview" +#: ../../Zotlabs/Module/Import.php:84 ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Unable to download data from old server" msgstr "" -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1437 -#: ../../Zotlabs/Widget/Cdav.php:136 ../../Zotlabs/Module/Webpages.php:256 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Layouts.php:194 -msgid "Share" +#: ../../Zotlabs/Module/Import.php:107 ../../Zotlabs/Module/Import_items.php:77 +msgid "Imported file is empty." msgstr "" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1446 -msgid "Page link name" +#: ../../Zotlabs/Module/Import.php:163 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1449 -msgid "Post as" +#: ../../Zotlabs/Module/Import.php:190 +msgid "No channel. Import failed." msgstr "" -#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1451 -#: ../../Zotlabs/Lib/ThreadItem.php:828 -msgid "Bold" +#: ../../Zotlabs/Module/Import.php:595 +#: ../../extend/addon/hubzilla-addons/diaspora/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1452 -#: ../../Zotlabs/Lib/ThreadItem.php:829 -msgid "Italic" +#: ../../Zotlabs/Module/Import.php:623 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1453 -#: ../../Zotlabs/Lib/ThreadItem.php:830 -msgid "Underline" +#: ../../Zotlabs/Module/Import.php:628 +msgid "Import Channel" msgstr "" -#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1454 -#: ../../Zotlabs/Lib/ThreadItem.php:831 -msgid "Quote" +#: ../../Zotlabs/Module/Import.php:629 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1455 -#: ../../Zotlabs/Lib/ThreadItem.php:832 -msgid "Code" +#: ../../Zotlabs/Module/Import.php:630 +#: ../../Zotlabs/Module/Import_items.php:127 +msgid "File to Upload" msgstr "" -#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1456 -#: ../../Zotlabs/Lib/ThreadItem.php:834 -msgid "Attach/Upload file" +#: ../../Zotlabs/Module/Import.php:631 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1459 -#: ../../Zotlabs/Module/Wiki.php:399 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Import.php:633 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 -#: ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Card_edit.php:132 ../../Zotlabs/Module/Oauth.php:112 -#: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1391 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Editpost.php:111 -#: ../../Zotlabs/Module/Admin/Addons.php:427 -#: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Filer.php:56 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Cover_photo.php:428 -#: ../../Zotlabs/Module/Profiles.php:803 ../../Zotlabs/Module/Oauth2.php:117 -#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 -#: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Cancel" +#: ../../Zotlabs/Module/Import.php:634 +msgid "Your old login email address" msgstr "" -#: ../../addon/hsse/hsse.php:210 ../../addon/hsse/hsse.php:257 -#: ../../include/conversation.php:1461 ../../include/conversation.php:1514 -#: ../../Zotlabs/Module/Profile_photo.php:508 -#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:401 -msgid "OK" +#: ../../Zotlabs/Module/Import.php:635 +msgid "Your old login password" msgstr "" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1463 -msgid "Toggle voting" +#: ../../Zotlabs/Module/Import.php:636 +msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1470 -msgid "Disable comments" +#: ../../Zotlabs/Module/Import.php:638 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1471 -msgid "Toggle comments" +#: ../../Zotlabs/Module/Import.php:640 +msgid "Make this hub my primary location" msgstr "" -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1477 -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Card_edit.php:118 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:674 -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Import.php:641 +msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1481 -msgid "Categories (optional, comma-separated list)" +#: ../../Zotlabs/Module/Import.php:642 +msgid "Use this channel nickname instead of the one provided" msgstr "" -#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1482 -#: ../../Zotlabs/Module/Events.php:487 -msgid "Permission settings" +#: ../../Zotlabs/Module/Import.php:642 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." msgstr "" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1504 -msgid "Other networks and post services" +#: ../../Zotlabs/Module/Import.php:644 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../addon/hsse/hsse.php:250 ../../addon/mail/Mod_Mail.php:171 -#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1507 -msgid "Set expiration date" +#: ../../Zotlabs/Module/Like.php:106 +msgid "Like/Dislike" msgstr "" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1510 -msgid "Set publish date" +#: ../../Zotlabs/Module/Like.php:112 +msgid "This action is restricted to members." msgstr "" -#: ../../addon/hsse/hsse.php:255 ../../addon/mail/Mod_Mail.php:173 -#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1512 -#: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Lib/ThreadItem.php:841 -msgid "Encrypt text" +#: ../../Zotlabs/Module/Like.php:113 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:15 -msgid "WYSIWYG status editor" +#: ../../Zotlabs/Module/Like.php:166 ../../Zotlabs/Module/Like.php:192 +#: ../../Zotlabs/Module/Like.php:230 +msgid "Invalid request." msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/hsse/Mod_Hsse.php:26 -msgid "WYSIWYG Status App" +#: ../../Zotlabs/Module/Like.php:178 ../../include/conversation.php:135 +msgid "channel" msgstr "" -#: ../../addon/hsse/Mod_Hsse.php:34 -msgid "WYSIWYG Status" +#: ../../Zotlabs/Module/Like.php:207 +msgid "thing" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:133 -msgid "View Larger" +#: ../../Zotlabs/Module/Like.php:253 +msgid "Channel unavailable." msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:156 -msgid "Tile Server URL" +#: ../../Zotlabs/Module/Like.php:289 +msgid "Previous action reversed." msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:156 -msgid "" -"A list of public tile servers" +#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Tagger.php:71 +#: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 +#: ../../include/conversation.php:128 ../../include/text.php:2254 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 +#: ../../extend/addon/hubzilla-addons/redphotos/redphotohelper.php:71 +msgid "photo" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:157 -msgid "Nominatim (reverse geocoding) Server URL" +#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 +msgid "status" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:157 -msgid "" -"A list of Nominatim servers" +#: ../../Zotlabs/Module/Like.php:471 ../../Zotlabs/Lib/Activity.php:3297 +#: ../../include/conversation.php:174 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1595 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2138 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:158 -msgid "Default zoom" +#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 +#: ../../include/conversation.php:177 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:158 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" +#: ../../Zotlabs/Module/Like.php:475 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:159 -msgid "Include marker on map" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:159 -msgid "Include a marker on the map." +#: ../../Zotlabs/Module/Like.php:477 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:171 -#: ../../addon/rendezvous/rendezvous.php:82 ../../addon/twitter/twitter.php:494 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/diaspora/diaspora.php:97 -#: ../../addon/piwik/piwik.php:116 ../../addon/logrot/logrot.php:54 -#: ../../addon/xmpp/xmpp.php:54 ../../Zotlabs/Module/Settings/Channel.php:267 -#: ../../Zotlabs/Module/Defperms.php:112 -msgid "Settings updated." +#: ../../Zotlabs/Module/Like.php:479 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:23 -msgid "Insane Journal Crosspost Connector Settings saved." +#: ../../Zotlabs/Module/Like.php:481 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:2226 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:35 -msgid "Insane Journal Crosspost Connector App" +#: ../../Zotlabs/Module/Like.php:483 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:2228 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:36 -msgid "Relay public postings to Insane Journal" +#: ../../Zotlabs/Module/Like.php:485 +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:2230 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:53 -msgid "InsaneJournal username" +#: ../../Zotlabs/Module/Like.php:586 +msgid "Action completed." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:57 -msgid "InsaneJournal password" +#: ../../Zotlabs/Module/Like.php:587 +msgid "Thank you." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:61 -msgid "Post to InsaneJournal by default" +#: ../../Zotlabs/Module/Defperms.php:68 ../../Zotlabs/Module/Connedit.php:90 +msgid "Could not access contact record." msgstr "" -#: ../../addon/ijpost/Mod_Ijpost.php:69 -msgid "Insane Journal Crosspost Connector" +#: ../../Zotlabs/Module/Defperms.php:112 +#: ../../Zotlabs/Module/Settings/Channel.php:267 +#: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:54 +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:116 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:82 +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:97 +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:171 +#: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:54 +#: ../../extend/addon/hubzilla-addons/twitter/twitter.php:494 +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:54 +msgid "Settings updated." msgstr "" -#: ../../addon/ijpost/ijpost.php:44 -msgid "Post to Insane Journal" +#: ../../Zotlabs/Module/Defperms.php:190 +msgid "Default Permissions App" msgstr "" -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" +#: ../../Zotlabs/Module/Defperms.php:191 +msgid "Set custom default permissions for new connections" msgstr "" -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" +#: ../../Zotlabs/Module/Defperms.php:255 ../../Zotlabs/Module/Connedit.php:860 +msgid "Connection Default Permissions" msgstr "" -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" +#: ../../Zotlabs/Module/Defperms.php:256 ../../Zotlabs/Module/Connedit.php:861 +msgid "Apply these permissions automatically" msgstr "" -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" +#: ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Module/Settings/Channel.php:472 +msgid "" +"If enabled, connection requests will be approved without your interaction" msgstr "" -#: ../../addon/pubcrawl/as.php:1189 ../../include/cdav.php:158 -#: ../../include/cdav.php:159 ../../include/cdav.php:167 -#: ../../include/conversation.php:1214 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Pinned.php:268 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Module/Photos.php:793 -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/Activity.php:1552 -#: ../../Zotlabs/Lib/Apps.php:1112 ../../Zotlabs/Lib/Apps.php:1196 -msgid "Unknown" +#: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 +msgid "Permission role" msgstr "" -#: ../../addon/pubcrawl/as.php:1490 ../../addon/pubcrawl/as.php:1939 -#: ../../addon/pubcrawl/as.php:2147 ../../include/network.php:1767 -#: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 -msgid "ActivityPub" +#: ../../Zotlabs/Module/Defperms.php:257 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/Connedit.php:862 +#: ../../Zotlabs/Widget/Notifications.php:182 ../../include/nav.php:324 +msgid "Loading" msgstr "" -#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 -#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 -msgid "status" +#: ../../Zotlabs/Module/Defperms.php:258 ../../Zotlabs/Module/Connedit.php:863 +msgid "Add permission role" msgstr "" -#: ../../addon/pubcrawl/as.php:2138 ../../addon/diaspora/Receiver.php:1595 -#: ../../include/conversation.php:174 ../../Zotlabs/Module/Like.php:471 -#: ../../Zotlabs/Lib/Activity.php:3297 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Connedit.php:876 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../addon/pubcrawl/as.php:2140 ../../include/conversation.php:177 -#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Defperms.php:263 +msgid "Automatic approval settings" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:25 -msgid "ActivityPub Protocol Settings updated." +#: ../../Zotlabs/Module/Defperms.php:265 ../../Zotlabs/Module/Connedit.php:896 +#: ../../Zotlabs/Module/Tokens.php:183 ../../Zotlabs/Module/Permcats.php:124 +msgid "inherited" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:34 -msgid "" -"The activitypub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../Zotlabs/Module/Defperms.php:267 ../../Zotlabs/Module/Connedit.php:901 +#: ../../Zotlabs/Module/Tokens.php:181 ../../Zotlabs/Module/Permcats.php:122 +msgid "My Settings" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:40 -msgid "Activitypub Protocol App" +#: ../../Zotlabs/Module/Defperms.php:270 ../../Zotlabs/Module/Connedit.php:903 +#: ../../Zotlabs/Module/Tokens.php:186 ../../Zotlabs/Module/Permcats.php:127 +msgid "Individual Permissions" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:50 -msgid "Deliver to ActivityPub recipients in privacy groups" +#: ../../Zotlabs/Module/Defperms.php:271 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:50 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Editlayout.php:128 +msgid "Layout Name" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:54 -msgid "Send multi-media HTML articles" +#: ../../Zotlabs/Module/Layouts.php:132 ../../Zotlabs/Module/Editlayout.php:129 +msgid "Layout Description (Optional)" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:54 -msgid "Not supported by some microblog services such as Mastodon" +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2714 +msgid "Layouts" msgstr "" -#: ../../addon/pubcrawl/Mod_Pubcrawl.php:62 -msgid "Activitypub Protocol" +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 +#: ../../include/nav.php:180 ../../include/nav.php:320 +#: ../../include/help.php:117 ../../include/help.php:125 +msgid "Help" msgstr "" -#: ../../addon/ldapauth/ldapauth.php:70 -msgid "An account has been created for you." +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" msgstr "" -#: ../../addon/ldapauth/ldapauth.php:77 -msgid "Authentication successful but rejected: account creation is disabled." +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:26 -msgid "Dreamwidth Crosspost Connector Settings saved." +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:39 -msgid "Dreamwidth Crosspost Connector App" +#: ../../Zotlabs/Module/Pubstream.php:20 +msgid "Public Stream App" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:40 -msgid "Relay public posts to Dreamwidth" +#: ../../Zotlabs/Module/Pubstream.php:21 +msgid "The unmoderated public stream of this hub" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:53 -msgid "Dreamwidth username" +#: ../../Zotlabs/Module/Pubstream.php:95 ../../Zotlabs/Module/Display.php:76 +#: ../../Zotlabs/Module/Channel.php:256 ../../Zotlabs/Module/Hq.php:125 +#: ../../Zotlabs/Module/Network.php:209 +msgid "Reset form" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:57 -msgid "Dreamwidth password" +#: ../../Zotlabs/Module/Pubstream.php:105 ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Widget/Notifications.php:162 +msgid "Public Stream" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:61 -msgid "Post to Dreamwidth by default" +#: ../../Zotlabs/Module/Sse_bs.php:554 ../../Zotlabs/Module/Ping.php:672 +msgid "Private forum" msgstr "" -#: ../../addon/dwpost/Mod_Dwpost.php:77 -msgid "Dreamwidth Crosspost Connector" +#: ../../Zotlabs/Module/Sse_bs.php:554 ../../Zotlabs/Module/Ping.php:672 +msgid "Public forum" msgstr "" -#: ../../addon/dwpost/dwpost.php:49 -msgid "Post to Dreamwidth" +#: ../../Zotlabs/Module/Group.php:46 +msgid "Privacy group created." msgstr "" -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" +#: ../../Zotlabs/Module/Group.php:49 +msgid "Could not create privacy group." msgstr "" -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" +#: ../../Zotlabs/Module/Group.php:62 ../../Zotlabs/Module/Group.php:214 +#: ../../include/items.php:4585 +msgid "Privacy group not found." msgstr "" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" +#: ../../Zotlabs/Module/Group.php:81 +msgid "Privacy group updated." msgstr "" -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" +#: ../../Zotlabs/Module/Group.php:107 +msgid "Privacy Groups App" msgstr "" -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" +#: ../../Zotlabs/Module/Group.php:108 +msgid "Management of privacy groups" msgstr "" -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" +#: ../../Zotlabs/Module/Group.php:142 ../../Zotlabs/Module/Group.php:154 +#: ../../Zotlabs/Lib/Group.php:324 ../../Zotlabs/Lib/Apps.php:364 +#: ../../Zotlabs/Widget/Activity_filter.php:88 ../../include/group.php:327 +#: ../../include/acl_selectors.php:87 ../../include/nav.php:104 +msgid "Privacy Groups" msgstr "" -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" +#: ../../Zotlabs/Module/Group.php:143 +msgid "Add Group" msgstr "" -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" +#: ../../Zotlabs/Module/Group.php:147 +msgid "Privacy group name" msgstr "" -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" +#: ../../Zotlabs/Module/Group.php:148 ../../Zotlabs/Module/Group.php:257 +msgid "Members are visible to other channels" msgstr "" -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group removed." msgstr "" -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" +#: ../../Zotlabs/Module/Group.php:186 +msgid "Unable to remove privacy group." msgstr "" -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" +#: ../../Zotlabs/Module/Group.php:252 +#, php-format +msgid "Privacy Group: %s" msgstr "" -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" +#: ../../Zotlabs/Module/Group.php:254 +msgid "Privacy group name: " msgstr "" -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" +#: ../../Zotlabs/Module/Group.php:259 +msgid "Delete Group" msgstr "" -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" +#: ../../Zotlabs/Module/Group.php:270 +msgid "Group members" msgstr "" -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" +#: ../../Zotlabs/Module/Group.php:272 +msgid "Not in this group" msgstr "" -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" +#: ../../Zotlabs/Module/Group.php:304 +msgid "Click a channel to toggle membership" msgstr "" -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Changeaddr.php:78 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " msgstr "" -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" +#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Changeaddr.php:79 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Remove Channel" msgstr "" -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." msgstr "" -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." msgstr "" -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" +#: ../../Zotlabs/Module/Appman.php:132 +msgid "Embed code" msgstr "" -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Edit App" msgstr "" -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" +#: ../../Zotlabs/Module/Appman.php:138 +msgid "Create App" msgstr "" -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Name of app" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Location (URL) of app" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Photo icon URL" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" +#: ../../Zotlabs/Module/Appman.php:146 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Version ID" msgstr "" -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Price of app" msgstr "" -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" +#: ../../Zotlabs/Module/Appman.php:150 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../Zotlabs/Module/Register.php:100 +#: ../../include/channel.php:226 ../../include/channel.php:706 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:503 -msgid "Submit Settings" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:96 +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../Zotlabs/Module/Register.php:105 +#: ../../include/channel.php:231 ../../include/channel.php:711 msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." +#: ../../Zotlabs/Module/Oauth.php:45 +msgid "Name is required" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" +#: ../../Zotlabs/Module/Oauth.php:49 +msgid "Key and Secret are required" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:172 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Oauth.php:113 -#: ../../Zotlabs/Module/Oauth.php:139 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Lib/NativeWikiPage.php:576 -#: ../../Zotlabs/Storage/Browser.php:377 -msgid "Name" +#: ../../Zotlabs/Module/Oauth.php:100 +msgid "OAuth Apps Manager App" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:173 -#: ../../addon/cart/submodules/hzservices.php:655 -#: ../../addon/cart/submodules/manualcat.php:260 -#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:481 -#: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" +#: ../../Zotlabs/Module/Oauth.php:101 +msgid "OAuth authentication tokens for mobile and remote apps" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" +#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 +#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 +#: ../../Zotlabs/Module/Oauth2.php:193 +msgid "Add application" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" +#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 +#: ../../Zotlabs/Module/Oauth2.php:146 +msgid "Name of application" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:596 +#: ../../extend/addon/hubzilla-addons/twitter/twitter.php:505 +msgid "Consumer Key" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" +#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" +#: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 +#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:595 +#: ../../extend/addon/hubzilla-addons/twitter/twitter.php:506 +msgid "Consumer Secret" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 +#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 +msgid "Redirect" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 +#: ../../Zotlabs/Module/Oauth2.php:148 msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 +msgid "Icon url" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Register.php:498 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" +#: ../../Zotlabs/Module/Oauth.php:128 +msgid "Application not found." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" +#: ../../Zotlabs/Module/Oauth.php:171 +msgid "Connected OAuth Apps" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" +#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 +msgid "Client key starts with" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." +#: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 +msgid "No name" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" +#: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 +msgid "Remove authorization" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." +#: ../../Zotlabs/Module/Email_resend.php:12 +#: ../../Zotlabs/Module/Email_validation.php:24 +msgid "Token verification failed." msgstr "" -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" msgstr "" -#: ../../addon/rendezvous/rendezvous.php:401 ../../Zotlabs/Module/Setup.php:720 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:50 -msgid "Startpage App" +#: ../../Zotlabs/Module/Search.php:21 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Display.php:26 ../../Zotlabs/Module/Photos.php:519 +#: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 +#: ../../Zotlabs/Module/Ratings.php:83 +msgid "Public access denied." msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:51 -msgid "Set a preferred page to load on login from home page" +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Module/Connections.php:379 +#: ../../Zotlabs/Lib/Apps.php:353 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../Zotlabs/Widget/Activity_filter.php:203 ../../include/text.php:1144 +#: ../../include/text.php:1156 ../../include/acl_selectors.php:149 +#: ../../include/nav.php:194 +msgid "Search" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:62 -msgid "Page to load after login" +#: ../../Zotlabs/Module/Search.php:250 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:62 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." +#: ../../Zotlabs/Module/Search.php:252 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../addon/startpage/Mod_Startpage.php:70 -msgid "Startpage" +#: ../../Zotlabs/Module/Moderate.php:67 +msgid "Comment approved" msgstr "" -#: ../../addon/mail/Mod_Mail.php:40 -msgid "Messages" +#: ../../Zotlabs/Module/Moderate.php:71 +msgid "Comment deleted" msgstr "" -#: ../../addon/mail/Mod_Mail.php:53 -msgid "message" +#: ../../Zotlabs/Module/Rpost.php:150 ../../Zotlabs/Module/Editpost.php:110 +msgid "Edit post" msgstr "" -#: ../../addon/mail/Mod_Mail.php:93 -msgid "Message recalled." +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../addon/mail/Mod_Mail.php:106 -msgid "Conversation removed." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../addon/mail/Mod_Mail.php:121 ../../addon/mail/Mod_Mail.php:242 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Chanview.php:95 ../../Zotlabs/Module/Card_edit.php:44 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Block.php:41 ../../Zotlabs/Module/Article_edit.php:44 +#: ../../Zotlabs/Module/Attach.php:22 ../../Zotlabs/Module/Cal.php:31 +#: ../../Zotlabs/Module/Attach_edit.php:52 +msgid "Channel not found." msgstr "" -#: ../../addon/mail/Mod_Mail.php:149 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Module/Chanview.php:132 +msgid "toggle full screen mode" msgstr "" -#: ../../addon/mail/Mod_Mail.php:157 -msgid "Send Private Message" +#: ../../Zotlabs/Module/Tagger.php:50 +msgid "Post not found." msgstr "" -#: ../../addon/mail/Mod_Mail.php:158 ../../addon/mail/Mod_Mail.php:301 -msgid "To:" +#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3264 +#: ../../include/conversation.php:158 ../../include/text.php:2260 +#: ../../include/markdown.php:204 ../../include/bbcode.php:555 +msgid "post" msgstr "" -#: ../../addon/mail/Mod_Mail.php:161 ../../addon/mail/Mod_Mail.php:303 -#: ../../Zotlabs/Module/Invite.php:542 -msgid "Subject:" +#: ../../Zotlabs/Module/Tagger.php:81 ../../include/conversation.php:160 +#: ../../include/text.php:2262 +msgid "comment" msgstr "" -#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:539 -msgid "Your message:" +#: ../../Zotlabs/Module/Tagger.php:121 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../addon/mail/Mod_Mail.php:166 ../../addon/mail/Mod_Mail.php:309 -msgid "Attach file" +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../addon/mail/Mod_Mail.php:168 -msgid "Send" +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" msgstr "" -#: ../../addon/mail/Mod_Mail.php:272 -msgid "Delete message" +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" msgstr "" -#: ../../addon/mail/Mod_Mail.php:273 -msgid "Delivery report" +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../addon/mail/Mod_Mail.php:274 -msgid "Recall message" +#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 +msgid "Continue" msgstr "" -#: ../../addon/mail/Mod_Mail.php:276 -msgid "Message has been recalled." +#: ../../Zotlabs/Module/Connect.php:99 +msgid "Premium Channel Setup" msgstr "" -#: ../../addon/mail/Mod_Mail.php:294 -msgid "Delete Conversation" +#: ../../Zotlabs/Module/Connect.php:101 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../addon/mail/Mod_Mail.php:296 +#: ../../Zotlabs/Module/Connect.php:102 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../addon/mail/Mod_Mail.php:300 -msgid "Send Reply" +#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Connect.php:124 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../addon/mail/Mod_Mail.php:305 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Module/Connect.php:105 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../addon/mail/Mod_Mail.php:385 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../addon/mail/Mod_Mail.php:392 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Module/Connect.php:115 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../addon/mail/Mod_Mail.php:399 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Module/Connect.php:123 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../addon/mail/Mod_Mail.php:417 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Module/New_channel.php:147 ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Your real name is recommended." msgstr "" -#: ../../addon/adultphotoflag/adultphotoflag.php:25 +#: ../../Zotlabs/Module/New_channel.php:160 msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:48 -msgid "Your channel has been upgraded to $Projectname version" +#: ../../Zotlabs/Module/New_channel.php:165 +msgid "" +"This will be used to create a unique network address (like an email address)." msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:50 -msgid "Please have a look at the" +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "Allowed characters are a-z 0-9, - and _" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:52 -msgid "git history" +#: ../../Zotlabs/Module/New_channel.php:175 +msgid "Channel name" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:54 -msgid "change log" +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:510 +msgid "Choose a short nickname" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:55 -msgid "for further info." +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Channel role and privacy" msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:60 -msgid "Upgrade Info" +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." msgstr "" -#: ../../addon/upgrade_info/upgrade_info.php:64 -msgid "Do not show this again" -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:65 -msgid "Twitter settings updated." -msgstr "" - -#: ../../addon/twitter/Mod_Twitter.php:78 -msgid "Twitter Crosspost Connector App" +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "Read more about channel permission roles" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:79 -msgid "Relay public posts to Twitter" +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "Create a Channel" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:103 +#: ../../Zotlabs/Module/New_channel.php:182 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:125 +#: ../../Zotlabs/Module/New_channel.php:183 msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your public posts will " -"be posted to Twitter." +"or import an existing channel from another location." msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:127 -msgid "Log in with Twitter" +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Validate" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:130 -msgid "Copy the PIN from Twitter here" +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +msgid "Available Apps" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:152 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:157 -msgid "Twitter post length" +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage Apps" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:157 -msgid "Maximum tweet length" +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:162 -msgid "Send public postings to Twitter by default" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:162 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../addon/twitter/Mod_Twitter.php:181 -msgid "Twitter Crosspost Connector" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../addon/twitter/twitter.php:109 -msgid "Post to Twitter" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Remove Account" msgstr "" -#: ../../addon/pumpio/pumpio.php:152 -msgid "You are now authenticated to pumpio." +#: ../../Zotlabs/Module/Filestorage.php:14 +#: ../../Zotlabs/Module/Filestorage.php:53 +msgid "Deprecated!" msgstr "" -#: ../../addon/pumpio/pumpio.php:153 -msgid "return to the featured settings page" +#: ../../Zotlabs/Module/Filestorage.php:29 ../../Zotlabs/Module/Display.php:42 +#: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:260 ../../Zotlabs/Module/Thing.php:96 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4011 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:284 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:285 +msgid "Item not found." msgstr "" -#: ../../addon/pumpio/pumpio.php:168 -msgid "Post to Pump.io" +#: ../../Zotlabs/Module/Filestorage.php:109 +#: ../../Zotlabs/Module/Attach_edit.php:69 +msgid "File not found." msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:40 -msgid "Pump.io Settings saved." +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Permission Denied." msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:53 -msgid "Pump.io Crosspost Connector App" +#: ../../Zotlabs/Module/Filestorage.php:190 +msgid "Edit file permissions" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:54 -msgid "Relay public posts to pump.io" +#: ../../Zotlabs/Module/Filestorage.php:195 +#: ../../Zotlabs/Module/Connedit.php:683 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../include/acl_selectors.php:154 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:254 +msgid "Permissions" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:73 -msgid "Pump.io servername" +#: ../../Zotlabs/Module/Filestorage.php:202 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:261 +msgid "Set/edit permissions" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:73 -msgid "Without \"http://\" or \"https://\"" +#: ../../Zotlabs/Module/Filestorage.php:203 +msgid "Include all files and sub folders" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:77 -msgid "Pump.io username" +#: ../../Zotlabs/Module/Filestorage.php:204 +msgid "Return to file list" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:77 -msgid "Without the servername" +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:386 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:88 -msgid "You are not authenticated to pumpio" +#: ../../Zotlabs/Module/Filestorage.php:207 +#: ../../Zotlabs/Storage/Browser.php:387 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:90 -msgid "(Re-)Authenticate your pump.io connection" +#: ../../Zotlabs/Module/Filestorage.php:209 +msgid "Share this file" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:94 -msgid "Post to pump.io by default" +#: ../../Zotlabs/Module/Filestorage.php:210 +msgid "Show URL to this file" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:98 -msgid "Should posts be public" +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Storage/Browser.php:552 +msgid "Show in your contacts shared folder" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:102 -msgid "Mirror all public posts" +#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 +#: ../../Zotlabs/Module/Editblock.php:95 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +msgid "Item not found" msgstr "" -#: ../../addon/pumpio/Mod_Pumpio.php:112 -msgid "Pump.io Crosspost Connector" +#: ../../Zotlabs/Module/Card_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:220 +#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Article_edit.php:100 +#: ../../include/conversation.php:1345 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:95 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:167 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:310 +msgid "Insert web link" msgstr "" -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" +#: ../../Zotlabs/Module/Card_edit.php:118 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:674 +#: ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../include/conversation.php:1477 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:221 +msgid "Title (optional)" msgstr "" -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" +#: ../../Zotlabs/Module/Card_edit.php:129 +msgid "Edit Card" msgstr "" -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." msgstr "" -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" +#: ../../Zotlabs/Module/Viewconnections.php:80 +#: ../../Zotlabs/Module/Connections.php:289 ../../include/text.php:1038 +msgid "Accepts" msgstr "" -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" +#: ../../Zotlabs/Module/Viewconnections.php:83 +#: ../../Zotlabs/Module/Connections.php:292 ../../include/text.php:1041 +msgid "Comments" msgstr "" -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" +#: ../../Zotlabs/Module/Viewconnections.php:88 +#: ../../Zotlabs/Module/Connections.php:297 ../../include/text.php:1046 +msgid "Stream items" msgstr "" -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" +#: ../../Zotlabs/Module/Viewconnections.php:93 +#: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:1051 +msgid "Wall posts" msgstr "" -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." +#: ../../Zotlabs/Module/Viewconnections.php:97 +#: ../../Zotlabs/Module/Connections.php:306 ../../include/text.php:1055 +msgid "Nothing" msgstr "" -#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 -#: ../../addon/xmpp/xmpp.php:43 -msgid "Save Settings" +#: ../../Zotlabs/Module/Viewconnections.php:105 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" +#: ../../Zotlabs/Module/Viewconnections.php:135 +msgid "View Connections" msgstr "" -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" +#: ../../Zotlabs/Module/Oauth2.php:54 +msgid "Name and Secret are required" msgstr "" -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" +#: ../../Zotlabs/Module/Oauth2.php:106 +msgid "OAuth2 Apps Manager App" msgstr "" -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" +#: ../../Zotlabs/Module/Oauth2.php:107 +msgid "OAuth2 authenticatication tokens for mobile and remote apps" msgstr "" -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." +#: ../../Zotlabs/Module/Oauth2.php:115 +msgid "Add OAuth2 application" msgstr "" -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 +msgid "Grant Types" msgstr "" -#: ../../addon/sendzid/Mod_Sendzid.php:14 -msgid "Send your identity to all websites" +#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 +msgid "leave blank unless your application sepcifically requires this" msgstr "" -#: ../../addon/sendzid/Mod_Sendzid.php:20 -msgid "Sendzid App" +#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 +msgid "Authorization scope" msgstr "" -#: ../../addon/sendzid/Mod_Sendzid.php:32 -msgid "Send ZID" +#: ../../Zotlabs/Module/Oauth2.php:134 +msgid "OAuth2 Application not found." msgstr "" -#: ../../addon/cart/widgets/catalogitem.php:57 -#: ../../addon/cart/submodules/hzservices.php:658 -#: ../../addon/cart/submodules/manualcat.php:263 -msgid "Price" +#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 +msgid "leave blank unless your application specifically requires this" msgstr "" -#: ../../addon/cart/manual_payments.php:7 -msgid "Error: order mismatch. Please try again." +#: ../../Zotlabs/Module/Oauth2.php:192 +msgid "Connected OAuth2 Apps" msgstr "" -#: ../../addon/cart/manual_payments.php:61 -msgid "Manual payments are not enabled." +#: ../../Zotlabs/Module/Wiki.php:35 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1410 +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:51 +msgid "Profile Unavailable." msgstr "" -#: ../../addon/cart/manual_payments.php:68 -#: ../../addon/cart/submodules/paypalbutton.php:392 -#: ../../addon/cart/submodules/paypalbuttonV2.php:409 -#: ../../addon/cart/cart.php:1578 -msgid "Order not found." +#: ../../Zotlabs/Module/Wiki.php:52 +msgid "Wiki App" msgstr "" -#: ../../addon/cart/manual_payments.php:77 -msgid "Finished" +#: ../../Zotlabs/Module/Wiki.php:53 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../addon/cart/manual_payments.php:93 -#: ../../addon/cart/submodules/paypalbutton.php:456 -#: ../../addon/cart/submodules/paypalbuttonV2.php:478 -#: ../../addon/cart/myshop.php:37 ../../addon/cart/cart.php:1556 #: ../../Zotlabs/Module/Wiki.php:77 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1556 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:478 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:456 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:37 +#: ../../extend/addon/hubzilla-addons/cart/manual_payments.php:93 msgid "Invalid channel" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:151 -msgid "Enable Subscription Management Module" +#: ../../Zotlabs/Module/Wiki.php:132 +msgid "Error retrieving wiki" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:223 -msgid "" -"Cannot include subscription items with different terms in the same order." +#: ../../Zotlabs/Module/Wiki.php:139 +msgid "Error creating zip file export folder" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:372 -msgid "Select Subscription to Edit" +#: ../../Zotlabs/Module/Wiki.php:190 +msgid "Error downloading wiki: " msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:380 -msgid "Edit Subscriptions" +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../include/nav.php:536 +msgid "Wikis" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:414 -msgid "Subscription SKU" +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Storage/Browser.php:404 +msgid "Download" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:419 -msgid "Catalog Description" +#: ../../Zotlabs/Module/Wiki.php:215 +msgid "Wiki name" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:423 -msgid "Subscription available for purchase." +#: ../../Zotlabs/Module/Wiki.php:216 +msgid "Content type" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:428 -msgid "Maximum active subscriptions to this item per account." +#: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:370 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:2118 +#: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 +msgid "Markdown" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:431 -msgid "Subscription price." +#: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:370 +#: ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:2116 +msgid "BBcode" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:435 -msgid "Quantity" +#: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:2119 +msgid "Text" msgstr "" -#: ../../addon/cart/submodules/subscriptions.php:439 -msgid "Term" +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Storage/Browser.php:378 +msgid "Type" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:63 -msgid "Enable Hubzilla Services Module" +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Any type" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:162 -#: ../../addon/cart/submodules/manualcat.php:172 -msgid "New Sku" +#: ../../Zotlabs/Module/Wiki.php:226 +msgid "Lock content type" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:197 -#: ../../addon/cart/submodules/manualcat.php:208 -msgid "Cannot save edits to locked item." +#: ../../Zotlabs/Module/Wiki.php:227 +msgid "Create a status post for this wiki" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:246 -#: ../../addon/cart/submodules/hzservices.php:333 -msgid "SKU not found." +#: ../../Zotlabs/Module/Wiki.php:228 +msgid "Edit Wiki Name" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:299 -#: ../../addon/cart/submodules/hzservices.php:303 -msgid "Invalid Activation Directive." +#: ../../Zotlabs/Module/Wiki.php:273 +msgid "Wiki not found" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:374 -#: ../../addon/cart/submodules/hzservices.php:378 -msgid "Invalid Deactivation Directive." +#: ../../Zotlabs/Module/Wiki.php:299 +msgid "Rename page" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:564 -msgid "Add to this privacy group" +#: ../../Zotlabs/Module/Wiki.php:320 +msgid "Error retrieving page content" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:580 -msgid "Set user service class" +#: ../../Zotlabs/Module/Wiki.php:328 ../../Zotlabs/Module/Wiki.php:330 +msgid "New page" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:607 -msgid "You must be using a local account to purchase this service." +#: ../../Zotlabs/Module/Wiki.php:365 +msgid "Revision Comparison" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:647 -#: ../../addon/cart/submodules/manualcat.php:252 -msgid "Changes Locked" +#: ../../Zotlabs/Module/Wiki.php:366 ../../Zotlabs/Lib/NativeWikiPage.php:579 +#: ../../Zotlabs/Widget/Wiki_page_history.php:25 +msgid "Revert" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:651 -#: ../../addon/cart/submodules/manualcat.php:256 -msgid "Item available for purchase." +#: ../../Zotlabs/Module/Wiki.php:373 +msgid "Short description of your changes (optional)" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:661 -#: ../../addon/cart/submodules/manualcat.php:266 -msgid "Photo URL" +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../extend/addon/hubzilla-addons/ljpost/ljpost.php:134 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:69 +#: ../../extend/addon/hubzilla-addons/dwpost/dwpost.php:134 +#: ../../extend/addon/hubzilla-addons/wppost/wppost.php:173 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:98 +msgid "Source" msgstr "" -#: ../../addon/cart/submodules/hzservices.php:665 -msgid "Add buyer to privacy group" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:670 -msgid "Add buyer as connection" -msgstr "" - -#: ../../addon/cart/submodules/hzservices.php:678 -#: ../../addon/cart/submodules/hzservices.php:720 -msgid "Set Service Class" +#: ../../Zotlabs/Module/Wiki.php:393 +msgid "New page name" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:70 -msgid "Enable Order/Item Options" +#: ../../Zotlabs/Module/Wiki.php:398 +msgid "Embed image from photo albums" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:333 -#: ../../addon/cart/submodules/orderoptions.php:357 -#: ../../addon/cart/submodules/orderoptions.php:433 -#: ../../addon/cart/submodules/orderoptions.php:457 -msgid "Label" +#: ../../Zotlabs/Module/Wiki.php:399 ../../include/conversation.php:1459 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:208 +msgid "Embed an image from your albums" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:334 -#: ../../addon/cart/submodules/orderoptions.php:358 -#: ../../addon/cart/submodules/orderoptions.php:434 -#: ../../addon/cart/submodules/orderoptions.php:458 -#: ../../include/js_strings.php:123 ../../include/datetime.php:211 -#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Appman.php:143 -#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Profiles.php:747 -#: ../../Zotlabs/Module/Profiles.php:751 -msgid "Required" +#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Profile_photo.php:508 +#: ../../Zotlabs/Module/Cover_photo.php:429 ../../include/conversation.php:1461 +#: ../../include/conversation.php:1514 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:210 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:257 +msgid "OK" msgstr "" -#: ../../addon/cart/submodules/orderoptions.php:336 -#: ../../addon/cart/submodules/orderoptions.php:360 -#: ../../addon/cart/submodules/orderoptions.php:436 -#: ../../addon/cart/submodules/orderoptions.php:460 -msgid "Instructions" +#: ../../Zotlabs/Module/Wiki.php:402 ../../Zotlabs/Module/Profile_photo.php:509 +#: ../../Zotlabs/Module/Cover_photo.php:430 ../../include/conversation.php:1387 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:139 +msgid "Choose images to embed" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:85 -msgid "Enable Paypal Button Module" +#: ../../Zotlabs/Module/Wiki.php:403 ../../Zotlabs/Module/Profile_photo.php:510 +#: ../../Zotlabs/Module/Cover_photo.php:431 ../../include/conversation.php:1388 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:140 +msgid "Choose an album" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:93 -#: ../../addon/cart/submodules/paypalbuttonV2.php:94 -msgid "Use Production Key" +#: ../../Zotlabs/Module/Wiki.php:404 ../../Zotlabs/Module/Profile_photo.php:511 +#: ../../Zotlabs/Module/Cover_photo.php:432 +msgid "Choose a different album" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:100 -#: ../../addon/cart/submodules/paypalbuttonV2.php:101 -msgid "Paypal Sandbox Client Key" +#: ../../Zotlabs/Module/Wiki.php:405 ../../Zotlabs/Module/Profile_photo.php:512 +#: ../../Zotlabs/Module/Cover_photo.php:433 ../../include/conversation.php:1390 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:142 +msgid "Error getting album list" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:107 -#: ../../addon/cart/submodules/paypalbuttonV2.php:108 -msgid "Paypal Sandbox Secret Key" +#: ../../Zotlabs/Module/Wiki.php:406 ../../Zotlabs/Module/Profile_photo.php:513 +#: ../../Zotlabs/Module/Cover_photo.php:434 ../../include/conversation.php:1391 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:143 +msgid "Error getting photo link" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:113 -#: ../../addon/cart/submodules/paypalbuttonV2.php:114 -msgid "Paypal Production Client Key" +#: ../../Zotlabs/Module/Wiki.php:407 ../../Zotlabs/Module/Profile_photo.php:514 +#: ../../Zotlabs/Module/Cover_photo.php:435 ../../include/conversation.php:1392 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:144 +msgid "Error getting album" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:120 -#: ../../addon/cart/submodules/paypalbuttonV2.php:121 -msgid "Paypal Production Secret Key" +#: ../../Zotlabs/Module/Wiki.php:409 +msgid "History" msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:252 -#: ../../addon/cart/submodules/paypalbuttonV2.php:264 -msgid "Paypal button payments are not enabled." +#: ../../Zotlabs/Module/Wiki.php:487 +msgid "Error creating wiki. Invalid name." msgstr "" -#: ../../addon/cart/submodules/paypalbutton.php:270 -#: ../../addon/cart/submodules/paypalbuttonV2.php:282 -msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." +#: ../../Zotlabs/Module/Wiki.php:494 +msgid "A wiki with this name already exists." msgstr "" -#: ../../addon/cart/submodules/paypalbuttonV2.php:86 -msgid "Enable Paypal Button Module (API-v2)" +#: ../../Zotlabs/Module/Wiki.php:507 +msgid "Wiki created, but error creating Home page." msgstr "" -#: ../../addon/cart/submodules/manualcat.php:61 -msgid "Enable Manual Cart Module" +#: ../../Zotlabs/Module/Wiki.php:514 +msgid "Error creating wiki" msgstr "" -#: ../../addon/cart/myshop.php:30 -msgid "Access Denied." +#: ../../Zotlabs/Module/Wiki.php:538 +msgid "Error updating wiki. Invalid name." msgstr "" -#: ../../addon/cart/myshop.php:112 ../../addon/cart/cart.php:1446 -msgid "Order Not Found" +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error updating wiki" msgstr "" -#: ../../addon/cart/myshop.php:189 ../../addon/cart/myshop.php:223 -#: ../../addon/cart/myshop.php:271 ../../addon/cart/myshop.php:329 -msgid "Invalid Item" +#: ../../Zotlabs/Module/Wiki.php:572 +msgid "Wiki delete permission denied." msgstr "" -#: ../../addon/cart/Settings/Cart.php:58 -msgid "Enable Test Catalog" +#: ../../Zotlabs/Module/Wiki.php:582 +msgid "Error deleting wiki" msgstr "" -#: ../../addon/cart/Settings/Cart.php:70 -msgid "Enable Manual Payments" +#: ../../Zotlabs/Module/Wiki.php:615 +msgid "New page created" msgstr "" -#: ../../addon/cart/Settings/Cart.php:90 -msgid "Base Merchant Currency" +#: ../../Zotlabs/Module/Wiki.php:741 +msgid "Cannot delete Home" msgstr "" -#: ../../addon/cart/Settings/Cart.php:129 ../../addon/cart/cart.php:1375 -msgid "Cart Settings" +#: ../../Zotlabs/Module/Wiki.php:817 +msgid "Current Revision" msgstr "" -#: ../../addon/cart/cart.php:252 -msgid "DB Cleanup Failure" +#: ../../Zotlabs/Module/Wiki.php:817 +msgid "Selected Revision" msgstr "" -#: ../../addon/cart/cart.php:674 -msgid "[cart] Item Added" +#: ../../Zotlabs/Module/Wiki.php:872 +msgid "You must be authenticated." msgstr "" -#: ../../addon/cart/cart.php:1063 -msgid "Order already checked out." +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" msgstr "" -#: ../../addon/cart/cart.php:1368 -msgid "Drop database tables when uninstalling." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2712 +msgid "Blocks" msgstr "" -#: ../../addon/cart/cart.php:1387 ../../addon/cart/cart.php:1390 -msgid "Shop" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../addon/cart/cart.php:1410 ../../addon/flashcards/Mod_Flashcards.php:51 -#: ../../Zotlabs/Module/Wiki.php:35 -msgid "Profile Unavailable." +#: ../../Zotlabs/Module/Dircensor.php:42 +msgid "Entry censored" msgstr "" -#: ../../addon/cart/cart.php:1507 -msgid "Cart utilities for orders and payments" +#: ../../Zotlabs/Module/Dircensor.php:45 +msgid "Entry uncensored" msgstr "" -#: ../../addon/cart/cart.php:1545 -msgid "You must be logged into the Grid to shop." +#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:66 +msgid "Location not found." msgstr "" -#: ../../addon/cart/cart.php:1592 -msgid "Access denied." +#: ../../Zotlabs/Module/Locs.php:75 +msgid "Location lookup failed." msgstr "" -#: ../../addon/cart/cart.php:1644 ../../addon/cart/cart.php:1787 -msgid "No Order Found" +#: ../../Zotlabs/Module/Locs.php:79 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../addon/cart/cart.php:1653 -msgid "An unknown error has occurred Please start again." +#: ../../Zotlabs/Module/Locs.php:108 +msgid "Syncing locations" msgstr "" -#: ../../addon/cart/cart.php:1796 -msgid "Requirements not met." +#: ../../Zotlabs/Module/Locs.php:117 +msgid "No locations found." msgstr "" -#: ../../addon/cart/cart.php:1796 -msgid "Review your order and complete any needed requirements." +#: ../../Zotlabs/Module/Locs.php:127 +msgid "Manage Channel Locations" msgstr "" -#: ../../addon/cart/cart.php:1822 -msgid "Invalid Payment Type. Please start again." +#: ../../Zotlabs/Module/Locs.php:130 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:285 +msgid "Primary" msgstr "" -#: ../../addon/cart/cart.php:1829 -msgid "Order not found" +#: ../../Zotlabs/Module/Locs.php:131 ../../Zotlabs/Module/Menu.php:177 +msgid "Drop" msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:21 -msgid "nofed Settings saved." +#: ../../Zotlabs/Module/Locs.php:133 +msgid "Sync Now" msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:33 -msgid "No Federation App" +#: ../../Zotlabs/Module/Locs.php:134 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:34 +#: ../../Zotlabs/Module/Locs.php:135 msgid "" -"Prevent posting from being federated to anybody. It will exist only on your " -"channel page." +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:42 -msgid "Federate posts by default" +#: ../../Zotlabs/Module/Locs.php:136 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../addon/nofed/Mod_Nofed.php:50 -msgid "No Federation" +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" msgstr "" -#: ../../addon/nofed/nofed.php:47 -msgid "Federate" +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:35 -msgid "Smileybutton App" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:345 +#: ../../include/features.php:368 ../../include/nav.php:444 +msgid "Photos" msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:36 -msgid "Adds a smileybutton to the jot editor" +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Storage/Browser.php:351 +#: ../../Zotlabs/Lib/Apps.php:340 ../../include/nav.php:452 +msgid "Files" msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:44 -msgid "Hide the button and show the smilies directly." +#: ../../Zotlabs/Module/Connedit.php:121 +msgid "Could not locate selected profile." msgstr "" -#: ../../addon/smileybutton/Mod_Smileybutton.php:52 -msgid "Smileybutton Settings" +#: ../../Zotlabs/Module/Connedit.php:265 +msgid "Connection updated." msgstr "" -#: ../../addon/redfiles/redfilehelper.php:64 ../../include/attach.php:2099 -msgid "file" +#: ../../Zotlabs/Module/Connedit.php:267 +msgid "Failed to update connection record." msgstr "" -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" +#: ../../Zotlabs/Module/Connedit.php:310 +msgid "is now connected to" msgstr "" -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." +#: ../../Zotlabs/Module/Connedit.php:435 +msgid "Could not access address book record." msgstr "" -#: ../../addon/diaspora/diaspora.php:70 -msgid "" -"Please install the statistics addon to be able to configure a diaspora relay" +#: ../../Zotlabs/Module/Connedit.php:483 ../../Zotlabs/Module/Connedit.php:487 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../addon/diaspora/diaspora.php:80 -msgid "Diaspora Relay Handle" +#: ../../Zotlabs/Module/Connedit.php:502 ../../Zotlabs/Module/Connedit.php:511 +#: ../../Zotlabs/Module/Connedit.php:520 ../../Zotlabs/Module/Connedit.php:529 +#: ../../Zotlabs/Module/Connedit.php:542 +msgid "Unable to set address book parameters." msgstr "" -#: ../../addon/diaspora/diaspora.php:80 -msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Connection has been removed." msgstr "" -#: ../../addon/diaspora/diaspora.php:100 -msgid "Diaspora relay could not be imported" +#: ../../Zotlabs/Module/Connedit.php:601 ../../Zotlabs/Lib/Apps.php:344 +#: ../../include/conversation.php:1083 ../../include/nav.php:115 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:57 +msgid "View Profile" msgstr "" -#: ../../addon/diaspora/p.php:48 ../../addon/diaspora/util.php:336 -#: ../../addon/diaspora/util.php:349 ../../Zotlabs/Lib/Enotify.php:61 -msgid "$projectname" +#: ../../Zotlabs/Module/Connedit.php:604 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:19 -msgid "No username found in import file." +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Permissions" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:44 ../../include/import.php:76 -msgid "Unable to create a unique channel address. Import failed." +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated permissions" msgstr "" -#: ../../addon/diaspora/import_diaspora.php:142 -#: ../../Zotlabs/Module/Import.php:595 -msgid "Import completed." +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Refresh Photo" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:43 -msgid "Diaspora Protocol Settings updated." +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "Fetch updated photo" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:52 -msgid "" -"The diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../Zotlabs/Module/Connedit.php:622 ../../include/conversation.php:1093 +msgid "Recent Activity" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:58 -msgid "Diaspora Protocol App" +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "View recent posts and comments" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:77 -msgid "Allow any Diaspora member to comment or like your public posts" +#: ../../Zotlabs/Module/Connedit.php:629 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 +msgid "Unblock" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:77 -msgid "" -"If this setting is disabled only your contacts will be able to comment or " -"like your public posts" +#: ../../Zotlabs/Module/Connedit.php:629 +#: ../../Zotlabs/Module/Admin/Accounts.php:321 +msgid "Block" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:81 -msgid "Prevent your hashtags from being redirected to other sites" +#: ../../Zotlabs/Module/Connedit.php:632 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:85 -msgid "Sign and forward posts and comments with no existing Diaspora signature" +#: ../../Zotlabs/Module/Connedit.php:633 +msgid "This connection is blocked!" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:90 -msgid "Followed hashtags (comma separated, do not include the #)" +#: ../../Zotlabs/Module/Connedit.php:637 +msgid "Unignore" msgstr "" -#: ../../addon/diaspora/Mod_Diaspora.php:99 -msgid "Diaspora Protocol" +#: ../../Zotlabs/Module/Connedit.php:637 +#: ../../Zotlabs/Module/Connections.php:345 +msgid "Ignore" msgstr "" -#: ../../addon/diaspora/Receiver.php:1599 -#, php-format -msgid "%1$s dislikes %2$s's %3$s" +#: ../../Zotlabs/Module/Connedit.php:640 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../addon/diaspora/Receiver.php:2226 ../../Zotlabs/Module/Like.php:481 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Connedit.php:641 +msgid "This connection is ignored!" msgstr "" -#: ../../addon/diaspora/Receiver.php:2228 ../../Zotlabs/Module/Like.php:483 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Connedit.php:645 +msgid "Unarchive" msgstr "" -#: ../../addon/diaspora/Receiver.php:2230 ../../Zotlabs/Module/Like.php:485 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Connedit.php:645 +msgid "Archive" msgstr "" -#: ../../addon/piwik/piwik.php:85 +#: ../../Zotlabs/Module/Connedit.php:648 msgid "" -"This website is tracked using the Piwik " -"analytics tool." +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." +#: ../../Zotlabs/Module/Connedit.php:649 +msgid "This connection is archived!" msgstr "" -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" +#: ../../Zotlabs/Module/Connedit.php:653 +msgid "Unhide" msgstr "" -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" +#: ../../Zotlabs/Module/Connedit.php:653 +msgid "Hide" msgstr "" -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" +#: ../../Zotlabs/Module/Connedit.php:656 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "" +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "This connection is hidden!" +msgstr "" -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" +#: ../../Zotlabs/Module/Connedit.php:664 +msgid "Delete this connection" msgstr "" -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" +#: ../../Zotlabs/Module/Connedit.php:672 +msgid "Fetch Vcard" msgstr "" -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" +#: ../../Zotlabs/Module/Connedit.php:675 +msgid "Fetch electronic calling card for this connection" msgstr "" -#: ../../addon/workflow/workflow.php:222 -msgid "Workflow user." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Open Individual Permissions section by default" msgstr "" -#: ../../addon/workflow/workflow.php:272 -msgid "This channel" +#: ../../Zotlabs/Module/Connedit.php:709 +msgid "Affinity" msgstr "" -#: ../../addon/workflow/workflow.php:285 ../../Zotlabs/Module/Locs.php:130 -msgid "Primary" +#: ../../Zotlabs/Module/Connedit.php:712 +msgid "Open Set Affinity section by default" msgstr "" -#: ../../addon/workflow/workflow.php:541 ../../addon/workflow/workflow.php:1437 -#: ../../addon/workflow/workflow.php:1456 -msgid "Workflow" +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Widget/Affinity.php:30 +msgid "Me" msgstr "" -#: ../../addon/workflow/workflow.php:1425 -msgid "No Workflows Available" +#: ../../Zotlabs/Module/Connedit.php:717 ../../Zotlabs/Widget/Affinity.php:31 +msgid "Family" msgstr "" -#: ../../addon/workflow/workflow.php:1455 -msgid "Add item to which workflow" +#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Settings/Channel.php:71 +#: ../../Zotlabs/Module/Settings/Channel.php:75 +#: ../../Zotlabs/Module/Settings/Channel.php:76 +#: ../../Zotlabs/Module/Settings/Channel.php:79 +#: ../../Zotlabs/Module/Settings/Channel.php:90 +#: ../../Zotlabs/Widget/Affinity.php:32 ../../include/channel.php:506 +#: ../../include/channel.php:509 ../../include/selectors.php:134 +msgid "Friends" msgstr "" -#: ../../addon/workflow/workflow.php:1515 -#: ../../addon/workflow/workflow.php:1634 -msgid "Create Workflow Item" +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Widget/Affinity.php:33 +msgid "Acquaintances" msgstr "" -#: ../../addon/workflow/workflow.php:2596 -msgid "Link" +#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connections.php:97 +#: ../../Zotlabs/Module/Connections.php:111 +#: ../../Zotlabs/Widget/Affinity.php:34 +msgid "All" msgstr "" -#: ../../addon/workflow/workflow.php:2598 -msgid "Web link." +#: ../../Zotlabs/Module/Connedit.php:749 +msgid "Filter" msgstr "" -#: ../../addon/workflow/workflow.php:2617 -#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1375 -#: ../../Zotlabs/Module/Connedit.php:918 -msgid "Title" +#: ../../Zotlabs/Module/Connedit.php:752 +msgid "Open Custom Filter section by default" msgstr "" -#: ../../addon/workflow/workflow.php:2619 -#: ../../addon/workflow/workflow.php:2680 -msgid "Brief description or title" +#: ../../Zotlabs/Module/Connedit.php:789 +msgid "Approve this connection" msgstr "" -#: ../../addon/workflow/workflow.php:2625 ../../Zotlabs/Widget/Notes.php:21 -#: ../../Zotlabs/Lib/Apps.php:370 -msgid "Notes" +#: ../../Zotlabs/Module/Connedit.php:789 +msgid "Accept connection to allow communication" msgstr "" -#: ../../addon/workflow/workflow.php:2627 -#: ../../addon/workflow/workflow.php:2688 -msgid "Notes and Info" +#: ../../Zotlabs/Module/Connedit.php:794 +msgid "Set Affinity" msgstr "" -#: ../../addon/workflow/workflow.php:2686 -msgid "Body" +#: ../../Zotlabs/Module/Connedit.php:797 +msgid "Set Profile" msgstr "" -#: ../../addon/workflow/Settings/Mod_WorkflowSettings.php:101 -msgid "Workflow Settings" +#: ../../Zotlabs/Module/Connedit.php:800 +msgid "Set Affinity & Profile" msgstr "" -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" +#: ../../Zotlabs/Module/Connedit.php:848 +msgid "This connection is unreachable from this location." msgstr "" -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" +#: ../../Zotlabs/Module/Connedit.php:849 +msgid "This connection may be unreachable from other channel locations." msgstr "" -#: ../../addon/donate/donate.php:49 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Location independence is not supported by their network." msgstr "" -#: ../../addon/donate/donate.php:52 +#: ../../Zotlabs/Module/Connedit.php:857 msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." +"This connection is unreachable from this location. Location independence is " +"not supported by their network." msgstr "" -#: ../../addon/donate/donate.php:53 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" +#: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../addon/donate/donate.php:54 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../addon/donate/donate.php:56 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." +#: ../../Zotlabs/Module/Connedit.php:870 +msgid "This connection's primary address is" msgstr "" -#: ../../addon/donate/donate.php:59 -msgid "Donate" +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Available locations:" msgstr "" -#: ../../addon/donate/donate.php:61 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" +#: ../../Zotlabs/Module/Connedit.php:877 +msgid "Connection Tools" msgstr "" -#: ../../addon/donate/donate.php:62 -msgid "Donate Now" +#: ../../Zotlabs/Module/Connedit.php:879 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../addon/donate/donate.php:63 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" +#: ../../Zotlabs/Module/Connedit.php:880 ../../Zotlabs/Module/Rate.php:157 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../addon/donate/donate.php:64 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" +#: ../../Zotlabs/Module/Connedit.php:881 +msgid "Slide to adjust your rating" msgstr "" -#: ../../addon/donate/donate.php:65 -msgid "Sponsor" +#: ../../Zotlabs/Module/Connedit.php:882 ../../Zotlabs/Module/Connedit.php:887 +msgid "Optionally explain your rating" msgstr "" -#: ../../addon/donate/donate.php:68 -msgid "Special thanks to: " +#: ../../Zotlabs/Module/Connedit.php:884 +msgid "Custom Filter" msgstr "" -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" +#: ../../Zotlabs/Module/Connedit.php:885 +msgid "Only import posts with this text" msgstr "" -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" +#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Admin/Site.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" +#: ../../Zotlabs/Module/Connedit.php:886 +msgid "Do not import posts with this text" msgstr "" -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" +#: ../../Zotlabs/Module/Connedit.php:888 +msgid "This information is public!" msgstr "" -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" +#: ../../Zotlabs/Module/Connedit.php:893 +msgid "Connection Pending Approval" msgstr "" -#: ../../addon/opensearch/opensearch.php:26 +#: ../../Zotlabs/Module/Connedit.php:898 #, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" +#: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Tokens.php:180 +msgid "Their Settings" msgstr "" -#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Invite.php:225 -#: ../../Zotlabs/Module/Invite.php:494 ../../Zotlabs/Module/Invite.php:508 -#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 -#: ../../Zotlabs/Lib/Enotify.php:66 -msgid "$Projectname" +#: ../../Zotlabs/Module/Connedit.php:904 ../../Zotlabs/Module/Tokens.php:187 +#: ../../Zotlabs/Module/Permcats.php:128 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." msgstr "" -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" +#: ../../Zotlabs/Module/Connedit.php:905 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 -msgid "Fuzzloc Settings updated." +#: ../../Zotlabs/Module/Connedit.php:906 +msgid "Last update:" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 -msgid "Fuzzy Location App" +#: ../../Zotlabs/Module/Connedit.php:914 +msgid "Details" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:35 -msgid "" -"Blur your precise location if your channel uses browser location mapping" +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resent" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:40 -msgid "Minimum offset in meters" +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resend failed" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:44 -msgid "Maximum offset in meters" +#: ../../Zotlabs/Module/Regate.php:106 +msgid "Verification successful" msgstr "" -#: ../../addon/fuzzloc/Mod_Fuzzloc.php:53 -msgid "Fuzzy Location" +#: ../../Zotlabs/Module/Regate.php:150 +msgid "Account successfull created" msgstr "" -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" +#: ../../Zotlabs/Module/Regate.php:191 +msgid "Channel successfull created" msgstr "" -#: ../../addon/hubwall/hubwall.php:33 ../../Zotlabs/Lib/Enotify.php:65 -#, php-format -msgid "%s Administrator" +#: ../../Zotlabs/Module/Regate.php:197 +msgid "Automatic channel creation failed. Please create a channel." msgstr "" -#: ../../addon/hubwall/hubwall.php:50 ../../addon/mailtest/mailtest.php:50 -msgid "No recipients found." +#: ../../Zotlabs/Module/Regate.php:209 +msgid "Account creation error" msgstr "" -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." +#: ../../Zotlabs/Module/Regate.php:221 +msgid "Verify failed" msgstr "" -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." +#: ../../Zotlabs/Module/Regate.php:226 +msgid "Token verification failed" msgstr "" -#: ../../addon/hubwall/hubwall.php:92 ../../addon/mailtest/mailtest.php:96 -msgid "Message subject" +#: ../../Zotlabs/Module/Regate.php:231 +msgid "Request not inside time frame" msgstr "" -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" +#: ../../Zotlabs/Module/Regate.php:237 ../../Zotlabs/Module/Regate.php:267 +msgid "Identity unknown" msgstr "" -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" +#: ../../Zotlabs/Module/Regate.php:243 +msgid "dId2 mistaken" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" +#: ../../Zotlabs/Module/Regate.php:271 +msgid "Your Registration ID" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:252 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Regate.php:284 ../../Zotlabs/Module/Regate.php:376 +#: ../../Zotlabs/Module/Regate.php:408 +msgid "Registration verification" msgstr "" -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" +#: ../../Zotlabs/Module/Regate.php:291 ../../Zotlabs/Module/Regate.php:413 +msgid "Hold on, you can start verification in" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:218 -msgid "Not allowed." +#: ../../Zotlabs/Module/Regate.php:292 +msgid "Please remember your verification token for ID" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:254 -#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Photos.php:678 -#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Thing.php:321 -#: ../../Zotlabs/Module/Thing.php:374 ../../Zotlabs/Module/Connedit.php:683 -msgid "Permissions" +#: ../../Zotlabs/Module/Regate.php:294 +msgid "Token validity" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:261 -#: ../../Zotlabs/Module/Filestorage.php:202 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Regate.php:330 +msgid "Resend email" msgstr "" -#: ../../addon/flashcards/Mod_Flashcards.php:284 -#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:4010 -#: ../../Zotlabs/Module/Filestorage.php:29 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:260 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:42 -#: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Thing.php:96 -msgid "Item not found." +#: ../../Zotlabs/Module/Regate.php:335 +msgid "Registration status" msgstr "" -#: ../../addon/libertree/libertree.php:43 -msgid "Post to Libertree" +#: ../../Zotlabs/Module/Regate.php:338 +msgid "Verification successful!" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:25 -msgid "Libertree Crosspost Connector Settings saved." +#: ../../Zotlabs/Module/Regate.php:339 +msgid "Your login ID is" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:35 -msgid "Libertree Crosspost Connector App" +#: ../../Zotlabs/Module/Regate.php:340 +msgid "" +"After your account has been approved by our administrator you will be able " +"to login with your login ID and your provided password." msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:36 -msgid "Relay public posts to Libertree" +#: ../../Zotlabs/Module/Regate.php:352 +msgid "Registration request revoked" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:51 -msgid "Libertree API token" +#: ../../Zotlabs/Module/Regate.php:353 +msgid "Sorry for any inconvience. Thank you for your response." msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:55 -msgid "Libertree site URL" +#: ../../Zotlabs/Module/Regate.php:377 +msgid "Please enter your verification token for ID" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:59 -msgid "Post to Libertree by default" +#: ../../Zotlabs/Module/Regate.php:378 ../../Zotlabs/Module/Regate.php:405 +msgid "Please check your email!" msgstr "" -#: ../../addon/libertree/Mod_Libertree.php:67 -msgid "Libertree Crosspost Connector" +#: ../../Zotlabs/Module/Regate.php:388 +msgid "Verification token" msgstr "" -#: ../../addon/randpost/randpost.php:99 -msgid "You're welcome." +#: ../../Zotlabs/Module/Regate.php:399 +msgid "ID expired" msgstr "" -#: ../../addon/randpost/randpost.php:100 -msgid "Ah shucks..." +#: ../../Zotlabs/Module/Regate.php:414 +msgid "You will require the verification token for ID" msgstr "" -#: ../../addon/randpost/randpost.php:101 -msgid "Don't mention it." +#: ../../Zotlabs/Module/Regate.php:423 +msgid "Unknown or expired ID" msgstr "" -#: ../../addon/randpost/randpost.php:102 -msgid "<blush>" +#: ../../Zotlabs/Module/Regate.php:434 +msgid "dId2 malformed" msgstr "" -#: ../../addon/buglink/buglink.php:16 ../../Zotlabs/Lib/Apps.php:328 -msgid "Report Bug" +#: ../../Zotlabs/Module/Profile_photo.php:93 +#: ../../Zotlabs/Module/Cover_photo.php:85 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../addon/totp/Mod_Totp.php:23 -msgid "TOTP Two-Step Verification" +#: ../../Zotlabs/Module/Profile_photo.php:147 +#: ../../Zotlabs/Module/Profile_photo.php:284 +#: ../../include/photo/photo_driver.php:435 +msgid "Profile Photos" msgstr "" -#: ../../addon/totp/Mod_Totp.php:24 -msgid "Enter the 2-step verification generated by your authenticator app:" +#: ../../Zotlabs/Module/Profile_photo.php:166 +#: ../../Zotlabs/Module/Cover_photo.php:212 +msgid "Image resize failed." msgstr "" -#: ../../addon/totp/Mod_Totp.php:25 -msgid "Success!" +#: ../../Zotlabs/Module/Profile_photo.php:254 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:298 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../addon/totp/Mod_Totp.php:26 -msgid "Invalid code, please try again." +#: ../../Zotlabs/Module/Profile_photo.php:261 +#: ../../Zotlabs/Module/Cover_photo.php:241 ../../include/photos.php:196 +msgid "Unable to process image" msgstr "" -#: ../../addon/totp/Mod_Totp.php:27 -msgid "Too many invalid codes..." +#: ../../Zotlabs/Module/Profile_photo.php:296 +#: ../../Zotlabs/Module/Cover_photo.php:265 +msgid "Image upload failed." msgstr "" -#: ../../addon/totp/Mod_Totp.php:28 -msgid "Verify" +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Cover_photo.php:282 +msgid "Unable to process image." msgstr "" -#: ../../addon/totp/Settings/Totp.php:90 -msgid "" -"You haven't set a TOTP secret yet.\n" -"Please click the button below to generate one and register this site\n" -"with your preferred authenticator app." +#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:431 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../Zotlabs/Module/Cover_photo.php:382 +msgid "Photo not available." msgstr "" -#: ../../addon/totp/Settings/Totp.php:93 -msgid "Your TOTP secret is" +#: ../../Zotlabs/Module/Profile_photo.php:495 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" msgstr "" -#: ../../addon/totp/Settings/Totp.php:94 +#: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Be sure to save it somewhere in case you lose or replace your mobile " -"device.\n" -"Use your mobile device to scan the QR code below to register this site\n" -"with your preferred authenticator app." +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." msgstr "" -#: ../../addon/totp/Settings/Totp.php:99 -msgid "Test" +#: ../../Zotlabs/Module/Profile_photo.php:497 +#: ../../Zotlabs/Module/Cover_photo.php:420 +msgid "Upload File:" msgstr "" -#: ../../addon/totp/Settings/Totp.php:100 -msgid "Generate New Secret" +#: ../../Zotlabs/Module/Profile_photo.php:498 +#: ../../Zotlabs/Module/Cover_photo.php:421 +msgid "Select a profile:" msgstr "" -#: ../../addon/totp/Settings/Totp.php:101 -msgid "Go" +#: ../../Zotlabs/Module/Profile_photo.php:499 +msgid "Use Photo for Profile" msgstr "" -#: ../../addon/totp/Settings/Totp.php:102 -msgid "Enter your password" +#: ../../Zotlabs/Module/Profile_photo.php:499 +msgid "Change Profile Photo" msgstr "" -#: ../../addon/totp/Settings/Totp.php:103 -msgid "enter TOTP code from your device" +#: ../../Zotlabs/Module/Profile_photo.php:500 +msgid "Use" msgstr "" -#: ../../addon/totp/Settings/Totp.php:104 -msgid "Pass!" +#: ../../Zotlabs/Module/Profile_photo.php:500 +#: ../../Zotlabs/Module/Photos.php:688 ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Embedphotos.php:189 +#: ../../Zotlabs/Storage/Browser.php:540 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" msgstr "" -#: ../../addon/totp/Settings/Totp.php:105 -msgid "Fail" +#: ../../Zotlabs/Module/Profile_photo.php:501 +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Admin/Addons.php:459 +#: ../../Zotlabs/Module/Cover_photo.php:424 +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:92 +msgid "Remove" msgstr "" -#: ../../addon/totp/Settings/Totp.php:106 -msgid "Incorrect password, try again." +#: ../../Zotlabs/Module/Profile_photo.php:505 +#: ../../Zotlabs/Module/Profile_photo.php:506 +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Cover_photo.php:427 +msgid "Use a photo from your albums" msgstr "" -#: ../../addon/totp/Settings/Totp.php:107 -msgid "Record your new TOTP secret and rescan the QR code above." +#: ../../Zotlabs/Module/Profile_photo.php:516 +#: ../../Zotlabs/Module/Cover_photo.php:438 +msgid "Select existing photo" msgstr "" -#: ../../addon/totp/Settings/Totp.php:115 -msgid "TOTP Settings" +#: ../../Zotlabs/Module/Profile_photo.php:535 +#: ../../Zotlabs/Module/Cover_photo.php:455 +msgid "Crop Image" msgstr "" -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" +#: ../../Zotlabs/Module/Profile_photo.php:536 +#: ../../Zotlabs/Module/Cover_photo.php:456 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" +#: ../../Zotlabs/Module/Profile_photo.php:538 +#: ../../Zotlabs/Module/Cover_photo.php:458 +msgid "Done Editing" msgstr "" -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "Files: shared with me" msgstr "" -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" +#: ../../Zotlabs/Module/Sharedwithme.php:107 +msgid "NEW" msgstr "" -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:379 ../../include/text.php:1558 +msgid "Size" msgstr "" -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." +#: ../../Zotlabs/Module/Sharedwithme.php:109 +#: ../../Zotlabs/Storage/Browser.php:380 +msgid "Last Modified" msgstr "" -#: ../../addon/hideaside/Mod_Hideaside.php:23 -#: ../../addon/hideaside/Mod_Hideaside.php:27 -msgid "Hide Aside App" +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove all files" msgstr "" -#: ../../addon/hideaside/Mod_Hideaside.php:24 -#: ../../addon/hideaside/Mod_Hideaside.php:28 -msgid "Fade out aside areas after a while when using endless scroll" +#: ../../Zotlabs/Module/Sharedwithme.php:111 +msgid "Remove this file" msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:32 -msgid "Skeleton App" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:33 -msgid "A skeleton for addons, you can copy/paste" +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:40 -msgid "Some setting" +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:337 +#: ../../include/nav.php:101 +msgid "Channel Manager" msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:40 -msgid "A setting" +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" msgstr "" -#: ../../addon/skeleton/Mod_Skeleton.php:48 -msgid "Skeleton Settings" +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:104 -#: ../../addon/socialauth/Mod_SocialAuth.php:176 -msgid "Network error" +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:108 -#: ../../addon/socialauth/Mod_SocialAuth.php:180 -msgid "API error" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:112 -#: ../../addon/socialauth/Mod_SocialAuth.php:184 -msgid "Unknown issue" +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:168 -msgid "Unable to login using email address " +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:202 -msgid "Sign in to Hubzilla using a social account" +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:207 -msgid "Social Authentication using your social media account" +#: ../../Zotlabs/Module/Follow.php:93 +msgid "Connection added." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:211 -msgid "" -"This app enables one or more social provider sign-in buttons on the login " -"page." +#: ../../Zotlabs/Module/Item.php:471 ../../Zotlabs/Module/Pin.php:36 +msgid "Unable to locate original post." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:229 -msgid "Add an identity provider" +#: ../../Zotlabs/Module/Item.php:757 +msgid "Empty post discarded." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:256 -msgid "Enable " +#: ../../Zotlabs/Module/Item.php:1189 +msgid "Duplicate post suppressed." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:263 -msgid "Key" +#: ../../Zotlabs/Module/Item.php:1334 +msgid "System error. Post not saved." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:263 -#: ../../addon/socialauth/Mod_SocialAuth.php:268 -#: ../../addon/socialauth/Mod_SocialAuth.php:284 -#: ../../addon/socialauth/Mod_SocialAuth.php:297 -msgid "Word" +#: ../../Zotlabs/Module/Item.php:1368 +msgid "Your comment is awaiting approval." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:268 -msgid "Secret" +#: ../../Zotlabs/Module/Item.php:1498 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:297 -msgid "Add a custom provider" +#: ../../Zotlabs/Module/Item.php:1505 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:317 -msgid "Remove an identity provider" +#: ../../Zotlabs/Module/Item.php:1512 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:327 -msgid "Social authentication" +#: ../../Zotlabs/Module/Rate.php:158 +msgid "Website:" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:366 -msgid "Error while saving provider settings" +#: ../../Zotlabs/Module/Rate.php:161 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:382 -msgid "Custom provider already exists" +#: ../../Zotlabs/Module/Rate.php:162 +msgid "Rating (this information is public)" msgstr "" -#: ../../addon/socialauth/Mod_SocialAuth.php:399 -msgid "Social authentication settings saved." +#: ../../Zotlabs/Module/Rate.php:163 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../addon/nsfw/nsfw.php:152 -msgid "Possible adult content" +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." msgstr "" -#: ../../addon/nsfw/nsfw.php:167 -#, php-format -msgid "%s - view" +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Display.php:136 +#: ../../Zotlabs/Module/Display.php:153 ../../Zotlabs/Module/Display.php:173 +#: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Web/Router.php:186 ../../Zotlabs/Lib/NativeWikiPage.php:533 +#: ../../include/help.php:132 +msgid "Page not found." msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:22 -msgid "NSFW Settings saved." +#: ../../Zotlabs/Module/Page.php:173 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:33 -msgid "NSFW App" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:34 -msgid "Collapse content that contains predefined words" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:44 -msgid "" -"This app looks in posts for the words/text you specify below, and collapses " -"any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." +#: ../../Zotlabs/Module/Xchan.php:41 ../../Zotlabs/Module/Mitem.php:134 +#: ../../Zotlabs/Module/Menu.php:232 +msgid "Not found." msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:49 -msgid "Comma separated list of keywords to hide" +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:49 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" +#: ../../Zotlabs/Module/Subthread.php:128 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../addon/nsfw/Mod_Nsfw.php:58 -msgid "NSFW" +#: ../../Zotlabs/Module/Subthread.php:130 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:348 +msgid "webpage" msgstr "" -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:354 +msgid "block" msgstr "" -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:351 +msgid "layout" msgstr "" -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:357 +msgid "menu" msgstr "" -#: ../../addon/tictac/tictac.php:59 -msgid "New game" +#: ../../Zotlabs/Module/Impel.php:185 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " +#: ../../Zotlabs/Module/Pubsites.php:25 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" msgstr "" -#: ../../addon/tictac/tictac.php:62 +#: ../../Zotlabs/Module/Pubsites.php:28 msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." +#: ../../Zotlabs/Module/Pubsites.php:34 +msgid "Hub URL" msgstr "" -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." +#: ../../Zotlabs/Module/Pubsites.php:34 +msgid "Access Type" msgstr "" -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." +#: ../../Zotlabs/Module/Pubsites.php:34 +msgid "Registration Policy" msgstr "" -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" +#: ../../Zotlabs/Module/Pubsites.php:34 +msgid "Stats" msgstr "" -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" +#: ../../Zotlabs/Module/Pubsites.php:34 +msgid "Software" msgstr "" -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" +#: ../../Zotlabs/Module/Pubsites.php:36 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:1133 +msgid "Ratings" msgstr "" -#: ../../addon/gnusoc/gnusoc.php:453 -msgid "Follow" +#: ../../Zotlabs/Module/Pubsites.php:50 +msgid "Rate" msgstr "" -#: ../../addon/gnusoc/gnusoc.php:456 -#, php-format -msgid "%1$s is now following %2$s" +#: ../../Zotlabs/Module/Chat.php:29 ../../Zotlabs/Module/Channel.php:44 +#: ../../Zotlabs/Module/Ochannel.php:32 +msgid "You must be logged in to see this page." msgstr "" -#: ../../addon/gnusoc/Mod_Gnusoc.php:16 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../Zotlabs/Module/Chat.php:100 +msgid "Chatrooms App" msgstr "" -#: ../../addon/gnusoc/Mod_Gnusoc.php:22 -msgid "GNU-Social Protocol App" +#: ../../Zotlabs/Module/Chat.php:101 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../addon/gnusoc/Mod_Gnusoc.php:34 -msgid "GNU-Social Protocol" +#: ../../Zotlabs/Module/Chat.php:194 +msgid "Room not found" msgstr "" -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" +#: ../../Zotlabs/Module/Chat.php:210 +msgid "Leave Room" msgstr "" -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." +#: ../../Zotlabs/Module/Chat.php:211 +msgid "Delete Room" msgstr "" -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." +#: ../../Zotlabs/Module/Chat.php:212 +msgid "I am away right now" msgstr "" -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" +#: ../../Zotlabs/Module/Chat.php:213 +msgid "I am online" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:38 -msgid "Livejournal Crosspost Connector App" +#: ../../Zotlabs/Module/Chat.php:215 +msgid "Bookmark this room" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:39 -msgid "Relay public posts to Livejournal" +#: ../../Zotlabs/Module/Chat.php:218 ../../include/conversation.php:1382 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:134 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:120 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:241 +msgid "Please enter a link URL:" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:55 -msgid "Livejournal username" +#: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Lib/ThreadItem.php:841 +#: ../../include/conversation.php:1512 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:255 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:173 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:316 +msgid "Encrypt text" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:59 -msgid "Livejournal password" +#: ../../Zotlabs/Module/Chat.php:238 +msgid "New Chatroom" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:63 -msgid "Post to Livejournal by default" +#: ../../Zotlabs/Module/Chat.php:239 +msgid "Chatroom name" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:67 -msgid "Send wall-to-wall posts to Livejournal" +#: ../../Zotlabs/Module/Chat.php:240 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../addon/ljpost/Mod_Ljpost.php:79 -msgid "Livejournal Crosspost Connector" +#: ../../Zotlabs/Module/Chat.php:256 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../addon/ljpost/ljpost.php:49 -msgid "Post to Livejournal" +#: ../../Zotlabs/Module/Chat.php:261 +msgid "No chatrooms available" msgstr "" -#: ../../addon/ljpost/ljpost.php:127 -msgid "Posted by" +#: ../../Zotlabs/Module/Chat.php:265 +msgid "Expiration" msgstr "" -#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2118 -#: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 -#: ../../Zotlabs/Module/Wiki.php:370 -msgid "Markdown" +#: ../../Zotlabs/Module/Chat.php:266 +msgid "min" msgstr "" -#: ../../addon/mdpost/mdpost.php:42 -msgid "Use markdown for editing posts" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "Channel Export App" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla File Storage Import" +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export your channel" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "This will import all your cloud files from another server." +#: ../../Zotlabs/Module/Uexport.php:73 ../../Zotlabs/Module/Uexport.php:74 +msgid "Export Channel" msgstr "" -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Hubzilla Server base URL" +#: ../../Zotlabs/Module/Uexport.php:75 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -#: ../../addon/authchoose/Mod_Authchoose.php:22 +#: ../../Zotlabs/Module/Uexport.php:76 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:77 msgid "" -"Allow magic authentication only to websites of your immediate connections" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." msgstr "" -#: ../../addon/authchoose/Mod_Authchoose.php:28 -#: ../../addon/authchoose/Mod_Authchoose.php:33 -msgid "Authchoose App" +#: ../../Zotlabs/Module/Uexport.php:79 +msgid "Export your posts from a given year." msgstr "" -#: ../../addon/authchoose/Mod_Authchoose.php:39 -msgid "Authchoose" +#: ../../Zotlabs/Module/Uexport.php:81 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:22 -msgid "pageheader Settings saved." +#: ../../Zotlabs/Module/Uexport.php:82 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:34 -msgid "Page Header App" +#: ../../Zotlabs/Module/Uexport.php:83 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:35 -msgid "Inserts a page header" +#: ../../Zotlabs/Module/Uexport.php:84 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:43 -msgid "Message to display on every page on this server" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../addon/pageheader/Mod_Pageheader.php:51 -msgid "Page Header" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 -msgid "Popular Channels" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../addon/irc/irc.php:37 -msgid "Channels to auto connect" +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 -msgid "Comma separated list" +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../addon/irc/irc.php:45 -msgid "IRC Settings" +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 +msgid "Password Reset" msgstr "" -#: ../../addon/irc/irc.php:54 -msgid "IRC settings saved." +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." msgstr "" -#: ../../addon/irc/irc.php:58 -msgid "IRC Chatroom" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" msgstr "" -#: ../../addon/xmpp/xmpp.php:44 -msgid "Jabber BOSH host" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../addon/xmpp/xmpp.php:45 -msgid "Use central userbase" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" msgstr "" -#: ../../addon/xmpp/xmpp.php:45 +#: ../../Zotlabs/Module/Lostpass.php:96 msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:23 -msgid "XMPP settings updated." +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:35 -msgid "XMPP App" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:36 -msgid "Embedded XMPP (Jabber) client" +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:52 -msgid "Individual credentials" +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:58 -msgid "Jabber BOSH server" +#: ../../Zotlabs/Module/Vote.php:40 +msgid "Poll not found." msgstr "" -#: ../../addon/xmpp/Mod_Xmpp.php:67 -msgid "XMPP Settings" +#: ../../Zotlabs/Module/Vote.php:71 +msgid "Invalid response." msgstr "" -#: ../../include/zot.php:778 -msgid "Invalid data packet" +#: ../../Zotlabs/Module/Vote.php:132 +msgid "Response submitted. Updates may not appear instantly." msgstr "" -#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:655 -msgid "Unable to verify channel signature" +#: ../../Zotlabs/Module/Ping.php:337 ../../Zotlabs/Lib/Enotify.php:948 +msgid "sent you a private message" msgstr "" -#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:740 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../Zotlabs/Module/Ping.php:393 ../../Zotlabs/Lib/Enotify.php:914 +msgid "added your channel" msgstr "" -#: ../../include/zot.php:4378 -msgid "invalid target signature" +#: ../../Zotlabs/Module/Ping.php:418 +msgid "requires approval" msgstr "" -#: ../../include/text.php:523 -msgid "prev" +#: ../../Zotlabs/Module/Ping.php:428 ../../Zotlabs/Lib/Enotify.php:957 +msgid "g A l F d" msgstr "" -#: ../../include/text.php:525 -msgid "first" +#: ../../Zotlabs/Module/Ping.php:446 ../../Zotlabs/Lib/Enotify.php:960 +msgid "[today]" msgstr "" -#: ../../include/text.php:554 -msgid "last" +#: ../../Zotlabs/Module/Ping.php:456 +msgid "posted an event" msgstr "" -#: ../../include/text.php:557 -msgid "next" +#: ../../Zotlabs/Module/Ping.php:490 ../../Zotlabs/Lib/Enotify.php:829 +#: ../../Zotlabs/Lib/Enotify.php:931 +msgid "shared a file with you" msgstr "" -#: ../../include/text.php:575 -msgid "older" -msgstr "" - -#: ../../include/text.php:577 -msgid "newer" +#: ../../Zotlabs/Module/Display.php:354 ../../Zotlabs/Module/Channel.php:483 +msgid "" +"You must enable javascript for your browser to be able to view this content." msgstr "" -#: ../../include/text.php:1018 -msgid "No connections" +#: ../../Zotlabs/Module/Display.php:372 +msgid "Article" msgstr "" -#: ../../include/text.php:1030 ../../include/features.php:133 -#: ../../Zotlabs/Module/Connections.php:375 ../../Zotlabs/Lib/Apps.php:333 -msgid "Connections" +#: ../../Zotlabs/Module/Display.php:417 +msgid "Item has been removed." msgstr "" -#: ../../include/text.php:1038 ../../Zotlabs/Module/Viewconnections.php:80 -#: ../../Zotlabs/Module/Connections.php:289 -msgid "Accepts" +#: ../../Zotlabs/Module/Admin.php:96 +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 +#: ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" msgstr "" -#: ../../include/text.php:1041 ../../Zotlabs/Module/Viewconnections.php:83 -#: ../../Zotlabs/Module/Connections.php:292 -msgid "Comments" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" msgstr "" -#: ../../include/text.php:1046 ../../Zotlabs/Module/Viewconnections.php:88 -#: ../../Zotlabs/Module/Connections.php:297 -msgid "Stream items" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" msgstr "" -#: ../../include/text.php:1051 ../../Zotlabs/Module/Viewconnections.php:93 -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Wall posts" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" msgstr "" -#: ../../include/text.php:1055 ../../Zotlabs/Module/Viewconnections.php:97 -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Nothing" +#: ../../Zotlabs/Module/Admin.php:117 +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" msgstr "" -#: ../../include/text.php:1070 -#, php-format -msgid "View all %s connections" +#: ../../Zotlabs/Module/Admin.php:123 +msgid "Message queues" msgstr "" -#: ../../include/text.php:1133 -#, php-format -msgid "Network: %s" +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Your software should be updated" msgstr "" -#: ../../include/text.php:1144 ../../include/text.php:1156 -#: ../../include/nav.php:194 ../../include/acl_selectors.php:149 -#: ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:203 -#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Module/Connections.php:379 -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Search" +#: ../../Zotlabs/Module/Admin.php:141 ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 +#: ../../Zotlabs/Module/Admin/Site.php:408 +msgid "Administration" msgstr "" -#: ../../include/text.php:1236 ../../include/text.php:1240 -msgid "poke" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" msgstr "" -#: ../../include/text.php:1236 ../../include/text.php:1240 -#: ../../include/conversation.php:267 -msgid "poked" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" msgstr "" -#: ../../include/text.php:1241 -msgid "ping" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" msgstr "" -#: ../../include/text.php:1241 -msgid "pinged" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" msgstr "" -#: ../../include/text.php:1242 -msgid "prod" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active addons" msgstr "" -#: ../../include/text.php:1242 -msgid "prodded" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" msgstr "" -#: ../../include/text.php:1243 -msgid "slap" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" msgstr "" -#: ../../include/text.php:1243 -msgid "slapped" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" msgstr "" -#: ../../include/text.php:1244 -msgid "finger" +#: ../../Zotlabs/Module/Photos.php:80 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../include/text.php:1244 -msgid "fingered" +#: ../../Zotlabs/Module/Photos.php:96 ../../Zotlabs/Module/Photos.php:115 +msgid "Album not found." msgstr "" -#: ../../include/text.php:1245 -msgid "rebuff" +#: ../../Zotlabs/Module/Photos.php:105 +msgid "Delete Album" msgstr "" -#: ../../include/text.php:1245 -msgid "rebuffed" +#: ../../Zotlabs/Module/Photos.php:176 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" msgstr "" -#: ../../include/text.php:1268 -msgid "happy" +#: ../../Zotlabs/Module/Photos.php:530 +msgid "No photos selected" msgstr "" -#: ../../include/text.php:1269 -msgid "sad" +#: ../../Zotlabs/Module/Photos.php:579 +msgid "Access to this item is restricted." msgstr "" -#: ../../include/text.php:1270 -msgid "mellow" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../include/text.php:1271 -msgid "tired" +#: ../../Zotlabs/Module/Photos.php:625 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../include/text.php:1272 -msgid "perky" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Upload Photos" msgstr "" -#: ../../include/text.php:1273 -msgid "angry" +#: ../../Zotlabs/Module/Photos.php:671 +msgid "Enter an album name" msgstr "" -#: ../../include/text.php:1274 -msgid "stupefied" +#: ../../Zotlabs/Module/Photos.php:672 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../include/text.php:1275 -msgid "puzzled" +#: ../../Zotlabs/Module/Photos.php:673 +msgid "Create a status post for this upload" msgstr "" -#: ../../include/text.php:1276 -msgid "interested" +#: ../../Zotlabs/Module/Photos.php:675 +msgid "Description (optional)" msgstr "" -#: ../../include/text.php:1277 -msgid "bitter" +#: ../../Zotlabs/Module/Photos.php:761 +msgid "Show Newest First" msgstr "" -#: ../../include/text.php:1278 -msgid "cheerful" +#: ../../Zotlabs/Module/Photos.php:763 +msgid "Show Oldest First" msgstr "" -#: ../../include/text.php:1279 -msgid "alive" +#: ../../Zotlabs/Module/Photos.php:787 ../../Zotlabs/Module/Photos.php:1333 +#: ../../Zotlabs/Module/Embedphotos.php:171 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" msgstr "" -#: ../../include/text.php:1280 -msgid "annoyed" +#: ../../Zotlabs/Module/Photos.php:793 ../../Zotlabs/Module/Photos.php:1255 +#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Lib/Apps.php:1112 +#: ../../Zotlabs/Lib/Apps.php:1196 ../../Zotlabs/Lib/Activity.php:1552 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Pinned.php:268 +#: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1214 +#: ../../include/cdav.php:158 ../../include/cdav.php:159 +#: ../../include/cdav.php:167 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1189 +msgid "Unknown" msgstr "" -#: ../../include/text.php:1281 -msgid "anxious" +#: ../../Zotlabs/Module/Photos.php:818 ../../Zotlabs/Module/Embedphotos.php:187 +#: ../../Zotlabs/Widget/Portfolio.php:108 ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" msgstr "" -#: ../../include/text.php:1282 -msgid "cranky" +#: ../../Zotlabs/Module/Photos.php:820 ../../Zotlabs/Module/Photos.php:1364 +msgid "Add Photos" msgstr "" -#: ../../include/text.php:1283 -msgid "disturbed" +#: ../../Zotlabs/Module/Photos.php:868 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../include/text.php:1284 -msgid "frustrated" +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Photo not available" msgstr "" -#: ../../include/text.php:1285 -msgid "depressed" +#: ../../Zotlabs/Module/Photos.php:928 +msgid "Use as profile photo" msgstr "" -#: ../../include/text.php:1286 -msgid "motivated" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as cover photo" msgstr "" -#: ../../include/text.php:1287 -msgid "relaxed" +#: ../../Zotlabs/Module/Photos.php:936 +msgid "Private Photo" msgstr "" -#: ../../include/text.php:1288 -msgid "surprised" +#: ../../Zotlabs/Module/Photos.php:951 +msgid "View Full Size" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:99 -msgid "Monday" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:100 -msgid "Tuesday" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:101 -msgid "Wednesday" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:102 -msgid "Thursday" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:103 -msgid "Friday" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:104 -msgid "Saturday" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../include/text.php:1476 ../../include/js_strings.php:98 -msgid "Sunday" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:74 -msgid "January" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:75 -msgid "February" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:76 -msgid "March" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:318 +msgid "I like this (toggle)" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:77 -msgid "April" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:319 +msgid "I don't like this (toggle)" msgstr "" -#: ../../include/text.php:1480 -msgid "May" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:503 +#: ../../include/conversation.php:830 +msgid "Please wait" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:79 -msgid "June" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:824 +msgid "This is you" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:80 -msgid "July" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:826 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:81 -msgid "August" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:652 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:82 -msgid "September" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:653 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:83 -msgid "October" +#: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:77 +#: ../../include/conversation.php:654 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:84 -msgid "November" +#: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:78 +#: ../../include/conversation.php:655 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../include/text.php:1480 ../../include/js_strings.php:85 -msgid "December" +#: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:79 +#: ../../include/conversation.php:656 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../include/text.php:1556 -msgid "Unknown Attachment" +#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Widget/Pinned.php:66 +#: ../../include/conversation.php:657 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../include/text.php:1558 ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:379 -msgid "Size" +#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Widget/Pinned.php:67 +#: ../../include/conversation.php:658 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../include/text.php:1558 ../../include/feedutils.php:872 -msgid "unknown" +#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Widget/Pinned.php:68 +#: ../../include/conversation.php:659 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../include/text.php:1599 -msgid "remove category" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../Zotlabs/Lib/ThreadItem.php:251 +msgid "View all" msgstr "" -#: ../../include/text.php:1676 -msgid "remove from file" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:243 +#: ../../include/conversation.php:1752 ../../include/channel.php:1809 +#: ../../include/taxonomy.php:670 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:1845 ../../include/message.php:13 -msgid "Download binary/encrypted content" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:248 +#: ../../include/conversation.php:1755 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Photo Tools" msgstr "" -#: ../../include/text.php:1916 -msgid "Poll has ended." +#: ../../Zotlabs/Module/Photos.php:1256 +msgid "In This Photo:" msgstr "" -#: ../../include/text.php:1919 -#, php-format -msgid "Poll ends: %s" +#: ../../Zotlabs/Module/Photos.php:1261 +msgid "Map" msgstr "" -#: ../../include/text.php:1924 ../../Zotlabs/Lib/ThreadItem.php:446 -msgid "Vote" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:491 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../include/text.php:2076 ../../Zotlabs/Module/Events.php:669 -msgid "Link to Source" +#: ../../Zotlabs/Module/Photos.php:1270 ../../Zotlabs/Lib/ThreadItem.php:492 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../include/text.php:2098 ../../include/language.php:428 -msgid "default" +#: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Storage/Browser.php:411 +#: ../../Zotlabs/Lib/ThreadItem.php:497 ../../Zotlabs/Widget/Pinned.php:158 +#: ../../include/acl_selectors.php:156 +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:233 +msgid "Close" msgstr "" -#: ../../include/text.php:2106 -msgid "Page layout" +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 ../../include/photos.php:667 +msgid "Recent Photos" msgstr "" -#: ../../include/text.php:2106 -msgid "You can create your own with the layouts tool" +#: ../../Zotlabs/Module/Channel.php:131 ../../Zotlabs/Module/Profile.php:62 +#: ../../Zotlabs/Module/Hcard.php:37 +msgid "Posts and comments" msgstr "" -#: ../../include/text.php:2116 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 -#: ../../Zotlabs/Module/Wiki.php:370 -msgid "BBcode" +#: ../../Zotlabs/Module/Channel.php:138 ../../Zotlabs/Module/Profile.php:69 +#: ../../Zotlabs/Module/Hcard.php:44 +msgid "Only posts" msgstr "" -#: ../../include/text.php:2117 -msgid "HTML" +#: ../../Zotlabs/Module/Channel.php:206 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../include/text.php:2119 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 -msgid "Text" +#: ../../Zotlabs/Module/Channel.php:221 ../../Zotlabs/Module/Network.php:168 +msgid "Search Results For:" msgstr "" -#: ../../include/text.php:2120 -msgid "Comanche Layout" +#: ../../Zotlabs/Module/Cards.php:51 +msgid "Cards App" msgstr "" -#: ../../include/text.php:2125 -msgid "PHP" +#: ../../Zotlabs/Module/Cards.php:52 +msgid "Create personal planning cards" msgstr "" -#: ../../include/text.php:2134 -msgid "Page content type" +#: ../../Zotlabs/Module/Cards.php:112 +msgid "Add Card" msgstr "" -#: ../../include/text.php:2257 ../../include/event.php:1259 -#: ../../include/conversation.php:132 -#: ../../Zotlabs/Module/Channel_calendar.php:221 -#: ../../Zotlabs/Module/Like.php:441 ../../Zotlabs/Module/Tagger.php:75 -#: ../../Zotlabs/Module/Events.php:266 -msgid "event" +#: ../../Zotlabs/Module/Cards.php:207 ../../Zotlabs/Lib/Apps.php:326 +#: ../../include/nav.php:501 +msgid "Cards" msgstr "" -#: ../../include/text.php:2260 ../../include/conversation.php:158 -#: ../../include/bbcode.php:555 ../../include/markdown.php:204 -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3264 -msgid "post" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" msgstr "" -#: ../../include/text.php:2262 ../../include/conversation.php:160 -#: ../../Zotlabs/Module/Tagger.php:81 -msgid "comment" +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" msgstr "" -#: ../../include/text.php:2267 -msgid "activity" +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" msgstr "" -#: ../../include/text.php:2270 -msgid "poll" +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" msgstr "" -#: ../../include/text.php:2383 -msgid "a-z, 0-9, -, and _ only" +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" msgstr "" -#: ../../include/text.php:2709 -msgid "Design Tools" +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" msgstr "" -#: ../../include/text.php:2712 ../../Zotlabs/Module/Blocks.php:154 -msgid "Blocks" +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" msgstr "" -#: ../../include/text.php:2713 ../../Zotlabs/Module/Menu.php:171 -msgid "Menus" +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:41 +msgid "View friend suggestions" msgstr "" -#: ../../include/text.php:2714 ../../Zotlabs/Module/Layouts.php:184 -msgid "Layouts" +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" msgstr "" -#: ../../include/text.php:2715 -msgid "Pages" +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" msgstr "" -#: ../../include/text.php:2727 -msgid "Import" +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" msgstr "" -#: ../../include/text.php:2728 -msgid "Import website..." +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" msgstr "" -#: ../../include/text.php:2729 -msgid "Select folder to import" +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" msgstr "" -#: ../../include/text.php:2730 -msgid "Import from a zipped folder:" +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" msgstr "" -#: ../../include/text.php:2731 -msgid "Import from cloud files:" +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" msgstr "" -#: ../../include/text.php:2732 -msgid "/cloud/channel/path/to/folder" +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:116 +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Active" msgstr "" -#: ../../include/text.php:2733 -msgid "Enter path to website files" +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:279 +msgid "Blocked" msgstr "" -#: ../../include/text.php:2734 -msgid "Select folder" +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:189 +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Ignored" msgstr "" -#: ../../include/text.php:2735 -msgid "Export website..." +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Hidden" msgstr "" -#: ../../include/text.php:2736 -msgid "Export to a zip file" +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:196 +msgid "Archived/Unreachable" msgstr "" -#: ../../include/text.php:2737 -msgid "website.zip" +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Notifications.php:53 ../../Zotlabs/Module/Menu.php:180 +msgid "New" msgstr "" -#: ../../include/text.php:2738 -msgid "Enter a name for the zip file." +#: ../../Zotlabs/Module/Connections.php:158 +msgid "Active Connections" msgstr "" -#: ../../include/text.php:2739 -msgid "Export to cloud files" +#: ../../Zotlabs/Module/Connections.php:161 +msgid "Show active connections" msgstr "" -#: ../../include/text.php:2740 -msgid "/path/to/export/folder" +#: ../../Zotlabs/Module/Connections.php:165 +#: ../../Zotlabs/Widget/Notifications.php:104 +msgid "New Connections" msgstr "" -#: ../../include/text.php:2741 -msgid "Enter a path to a cloud files destination." +#: ../../Zotlabs/Module/Connections.php:168 +msgid "Show pending (new) connections" msgstr "" -#: ../../include/text.php:2742 -msgid "Specify folder" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show blocked connections" msgstr "" -#: ../../include/opengraph.php:56 -#, php-format -msgid "This is the home page of %s." +#: ../../Zotlabs/Module/Connections.php:192 +msgid "Only show ignored connections" msgstr "" -#: ../../include/event.php:33 ../../include/event.php:110 -msgid "l F d, Y \\@ g:i A" +#: ../../Zotlabs/Module/Connections.php:199 +msgid "Only show archived/unreachable connections" msgstr "" -#: ../../include/event.php:41 -msgid "Starts:" +#: ../../Zotlabs/Module/Connections.php:206 +msgid "Only show hidden connections" msgstr "" -#: ../../include/event.php:51 -msgid "Finishes:" +#: ../../Zotlabs/Module/Connections.php:221 +msgid "Show all connections" msgstr "" -#: ../../include/event.php:63 ../../include/event.php:134 -#: ../../include/channel.php:1658 ../../Zotlabs/Module/Directory.php:354 -msgid "Location:" +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Pending approval" msgstr "" -#: ../../include/event.php:110 -msgid "l F d, Y" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Archived" msgstr "" -#: ../../include/event.php:114 -msgid "Start:" +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Not connected at this location" msgstr "" -#: ../../include/event.php:118 -msgid "End:" +#: ../../Zotlabs/Module/Connections.php:319 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../include/event.php:1106 -msgid "This event has been added to your calendar." +#: ../../Zotlabs/Module/Connections.php:320 +msgid "Edit connection" msgstr "" -#: ../../include/event.php:1337 -msgid "Not specified" +#: ../../Zotlabs/Module/Connections.php:322 +msgid "Delete connection" msgstr "" -#: ../../include/event.php:1338 -msgid "Needs Action" +#: ../../Zotlabs/Module/Connections.php:331 +msgid "Channel address" msgstr "" -#: ../../include/event.php:1339 -msgid "Completed" +#: ../../Zotlabs/Module/Connections.php:333 ../../include/features.php:290 +msgid "Network" msgstr "" -#: ../../include/event.php:1340 -msgid "In Process" +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Call" msgstr "" -#: ../../include/event.php:1341 -msgid "Cancelled" +#: ../../Zotlabs/Module/Connections.php:338 +msgid "Status" msgstr "" -#: ../../include/event.php:1422 ../../include/connections.php:734 -#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:794 -#: ../../Zotlabs/Module/Connedit.php:925 -msgid "Mobile" +#: ../../Zotlabs/Module/Connections.php:340 +msgid "Connected" msgstr "" -#: ../../include/event.php:1423 ../../include/connections.php:735 -#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Connedit.php:926 -msgid "Home" +#: ../../Zotlabs/Module/Connections.php:342 +msgid "Approve connection" msgstr "" -#: ../../include/event.php:1424 ../../include/connections.php:736 -msgid "Home, Voice" +#: ../../Zotlabs/Module/Connections.php:343 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 +#: ../../include/conversation.php:776 +msgid "Approve" msgstr "" -#: ../../include/event.php:1425 ../../include/connections.php:737 -msgid "Home, Fax" +#: ../../Zotlabs/Module/Connections.php:344 +msgid "Ignore connection" msgstr "" -#: ../../include/event.php:1426 ../../include/connections.php:738 -#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:796 -#: ../../Zotlabs/Module/Connedit.php:927 -msgid "Work" +#: ../../Zotlabs/Module/Connections.php:346 +msgid "Recent activity" msgstr "" -#: ../../include/event.php:1427 ../../include/connections.php:739 -msgid "Work, Voice" +#: ../../Zotlabs/Module/Connections.php:350 ../../Zotlabs/Module/Suggest.php:71 +#: ../../Zotlabs/Module/Directory.php:370 ../../Zotlabs/Widget/Follow.php:32 +#: ../../Zotlabs/Widget/Suggestions.php:46 ../../include/conversation.php:1103 +#: ../../include/channel.php:1646 ../../include/connections.php:110 +msgid "Connect" msgstr "" -#: ../../include/event.php:1428 ../../include/connections.php:740 -msgid "Work, Fax" +#: ../../Zotlabs/Module/Connections.php:352 +msgid "Connect at this location" msgstr "" -#: ../../include/event.php:1429 ../../include/event.php:1436 -#: ../../include/selectors.php:60 ../../include/selectors.php:77 -#: ../../include/selectors.php:115 ../../include/selectors.php:151 -#: ../../include/connections.php:741 ../../include/connections.php:748 -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 -#: ../../Zotlabs/Module/Connedit.php:928 -#: ../../Zotlabs/Access/PermissionRoles.php:310 -msgid "Other" +#: ../../Zotlabs/Module/Connections.php:375 ../../Zotlabs/Lib/Apps.php:333 +#: ../../include/features.php:133 ../../include/text.php:1030 +msgid "Connections" msgstr "" -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" +#: ../../Zotlabs/Module/Connections.php:380 +msgid "Search your connections" msgstr "" -#: ../../include/features.php:55 ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" +#: ../../Zotlabs/Module/Connections.php:381 +msgid "Connections search" msgstr "" -#: ../../include/features.php:82 ../../include/nav.php:463 -#: ../../include/nav.php:466 ../../Zotlabs/Lib/Apps.php:346 -msgid "Calendar" +#: ../../Zotlabs/Module/Connections.php:382 +#: ../../Zotlabs/Module/Directory.php:433 +#: ../../Zotlabs/Module/Directory.php:438 ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../include/features.php:86 -msgid "Start calendar week on Monday" +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" msgstr "" -#: ../../include/features.php:87 -msgid "Default is Sunday" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../include/features.php:94 -msgid "Event Timezone Selection" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../include/features.php:95 -msgid "Allow event creation in timezones other than your own." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../include/features.php:104 ../../Zotlabs/Lib/Apps.php:343 -msgid "Channel Home" +#: ../../Zotlabs/Module/Affinity.php:35 +msgid "Affinity Tool settings updated." msgstr "" -#: ../../include/features.php:108 -msgid "Search by Date" +#: ../../Zotlabs/Module/Affinity.php:47 +msgid "" +"This app presents a slider control in your connection editor and also on " +"your network page. The slider represents your degree of friendship " +"(affinity) with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." msgstr "" -#: ../../include/features.php:109 -msgid "Ability to select posts by date ranges" +#: ../../Zotlabs/Module/Affinity.php:52 +msgid "Affinity Tool App" msgstr "" -#: ../../include/features.php:116 -msgid "Tag Cloud" +#: ../../Zotlabs/Module/Affinity.php:57 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." msgstr "" -#: ../../include/features.php:117 -msgid "Provide a personal tag cloud on your channel page" +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "Default maximum affinity level" msgstr "" -#: ../../include/features.php:124 ../../include/features.php:358 -msgid "Use blog/list mode" +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "0-99 default 99" msgstr "" -#: ../../include/features.php:125 ../../include/features.php:359 -msgid "Comments will be displayed separately" +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" msgstr "" -#: ../../include/features.php:137 -msgid "Connection Filtering" +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" msgstr "" -#: ../../include/features.php:138 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "Persistent affinity levels" msgstr "" -#: ../../include/features.php:146 -msgid "Conversation" +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "" +"If disabled the max and min levels will be reset to default after page reload" msgstr "" -#: ../../include/features.php:158 -msgid "Emoji Reactions" +#: ../../Zotlabs/Module/Affinity.php:84 +msgid "Affinity Tool Settings" msgstr "" -#: ../../include/features.php:159 -msgid "Add emoji reaction ability to posts" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../include/features.php:166 -msgid "Dislike Posts" +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." msgstr "" -#: ../../include/features.php:167 -msgid "Ability to dislike posts/comments" +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" msgstr "" -#: ../../include/features.php:174 -msgid "Star Posts" +#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" msgstr "" -#: ../../include/features.php:175 -msgid "Ability to mark special posts with a star indicator" +#: ../../Zotlabs/Module/Share.php:120 +msgid "Post repeated" msgstr "" -#: ../../include/features.php:182 -msgid "Reply on comment" +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" msgstr "" -#: ../../include/features.php:183 -msgid "Ability to reply on selected comment" +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" msgstr "" -#: ../../include/features.php:192 ../../Zotlabs/Lib/Apps.php:347 -msgid "Directory" +#: ../../Zotlabs/Module/Profile.php:106 +msgid "vcard" msgstr "" -#: ../../include/features.php:196 -msgid "Advanced Directory Search" +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" msgstr "" -#: ../../include/features.php:197 -msgid "Allows creation of complex directory search queries" +#: ../../Zotlabs/Module/Rmagic.php:46 +msgid "Authentication failed." msgstr "" -#: ../../include/features.php:206 -msgid "Editor" +#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 +#: ../../boot.php:1717 +msgid "Remote Authentication" msgstr "" -#: ../../include/features.php:210 -msgid "Post Categories" +#: ../../Zotlabs/Module/Rmagic.php:97 ../../include/channel.php:2626 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../include/features.php:211 -msgid "Add categories to your posts" +#: ../../Zotlabs/Module/Rmagic.php:98 ../../include/channel.php:2627 +msgid "Authenticate" msgstr "" -#: ../../include/features.php:218 -msgid "Large Photos" +#: ../../Zotlabs/Module/Attach.php:68 +msgid "Item not available." msgstr "" -#: ../../include/features.php:219 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../include/features.php:226 -msgid "Even More Encryption" +#: ../../Zotlabs/Module/Pconfig.php:57 +msgid "Configuration Editor" msgstr "" -#: ../../include/features.php:227 +#: ../../Zotlabs/Module/Pconfig.php:58 msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -#: ../../include/features.php:234 -msgid "Disable Comments" +#: ../../Zotlabs/Module/Randprof.php:29 +msgid "Random Channel App" msgstr "" -#: ../../include/features.php:235 -msgid "Provide the option to disable comments for a post" +#: ../../Zotlabs/Module/Randprof.php:30 +msgid "Visit a random channel in the $Projectname network" msgstr "" -#: ../../include/features.php:242 -msgid "Delayed Posting" +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." msgstr "" -#: ../../include/features.php:243 -msgid "Allow posts to be published at a later date" +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." msgstr "" -#: ../../include/features.php:250 -msgid "Content Expiration" +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:311 +msgid "Disable" msgstr "" -#: ../../include/features.php:251 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:314 +msgid "Enable" msgstr "" -#: ../../include/features.php:258 -msgid "Suppress Duplicate Posts/Comments" +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" msgstr "" -#: ../../include/features.php:259 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" msgstr "" -#: ../../include/features.php:266 -msgid "Auto-save drafts of posts and comments" +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:344 +msgid "Toggle" msgstr "" -#: ../../include/features.php:267 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Widget/Settings_menu.php:61 +#: ../../Zotlabs/Widget/Newmember.php:53 ../../include/nav.php:106 +msgid "Settings" msgstr "" -#: ../../include/features.php:276 -msgid "Manage" +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Author: " msgstr "" -#: ../../include/features.php:280 -msgid "Navigation Channel Select" +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Maintainer: " msgstr "" -#: ../../include/features.php:281 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" msgstr "" -#: ../../include/features.php:290 ../../Zotlabs/Module/Connections.php:333 -msgid "Network" +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" msgstr "" -#: ../../include/features.php:294 -msgid "Events Filter" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../include/features.php:295 -msgid "Ability to display only events" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../include/features.php:302 -msgid "Polls Filter" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" msgstr "" -#: ../../include/features.php:303 -msgid "Ability to display only polls" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:83 -msgid "Saved Searches" +#: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" msgstr "" -#: ../../include/features.php:311 -msgid "Save search terms for re-use" +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Block public" msgstr "" -#: ../../include/features.php:318 ../../include/contact_widgets.php:53 -#: ../../Zotlabs/Widget/Activity_filter.php:189 -#: ../../Zotlabs/Widget/Filer.php:28 -msgid "Saved Folders" +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../include/features.php:319 -msgid "Ability to file posts under folders" +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Provide a cloud root directory" msgstr "" -#: ../../include/features.php:326 -msgid "Alternate Stream Order" +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"The cloud root directory lists all channel names which provide public files" msgstr "" -#: ../../include/features.php:327 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Show total disk space available to cloud uploads" msgstr "" -#: ../../include/features.php:334 -msgid "Contact Filter" +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../include/features.php:335 -msgid "Ability to display only posts of a selected contact" +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../include/features.php:342 -msgid "Forum Filter" +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Allowed email domains" msgstr "" -#: ../../include/features.php:343 -msgid "Ability to display only posts of a specific forum" +#: ../../Zotlabs/Module/Admin/Security.php:106 +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 "" -#: ../../include/features.php:350 -msgid "Personal Posts Filter" +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Not allowed email domains" msgstr "" -#: ../../include/features.php:351 -msgid "Ability to display only posts that you've interacted on" +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../include/features.php:368 ../../include/nav.php:444 -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:345 -msgid "Photos" +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Allow communications only from these sites" msgstr "" -#: ../../include/features.php:372 -msgid "Photo Location" +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../include/features.php:373 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../Zotlabs/Module/Admin/Security.php:109 +msgid "Block communications from these sites" msgstr "" -#: ../../include/features.php:382 ../../Zotlabs/Lib/Apps.php:363 -msgid "Profiles" +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "Allow communications only from these channels" msgstr "" -#: ../../include/features.php:386 -msgid "Advanced Profiles" +#: ../../Zotlabs/Module/Admin/Security.php:110 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../include/features.php:387 -msgid "Additional profile sections and selections" +#: ../../Zotlabs/Module/Admin/Security.php:111 +msgid "Block communications from these channels" msgstr "" -#: ../../include/features.php:394 -msgid "Profile Import/Export" +#: ../../Zotlabs/Module/Admin/Security.php:112 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../include/features.php:395 -msgid "Save and load profile details across sites/channels" +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../include/features.php:402 -msgid "Multiple Profiles" +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../include/features.php:403 -msgid "Ability to create multiple profiles" +#: ../../Zotlabs/Module/Admin/Security.php:114 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../include/security.php:607 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "Allow SVG thumbnails in file browser" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../Zotlabs/Module/Admin/Security.php:115 +msgid "WARNING: SVG images may contain malicious code." msgstr "" -#: ../../include/js_strings.php:6 ../../Zotlabs/Module/Photos.php:1097 -#: ../../Zotlabs/Module/Photos.php:1215 ../../Zotlabs/Lib/ThreadItem.php:826 -msgid "Comment" +#: ../../Zotlabs/Module/Admin/Security.php:116 +msgid "Allow embedded (inline) PDF files" msgstr "" -#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:535 +#: ../../Zotlabs/Module/Admin/Accounts.php:128 #, php-format -msgid "%s show all" -msgstr "" +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" -#: ../../include/js_strings.php:8 +#: ../../Zotlabs/Module/Admin/Accounts.php:135 #, php-format -msgid "%s show less" +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Account not found" msgstr "" -#: ../../include/js_strings.php:9 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/channel.php:2785 #, php-format -msgid "%s expand" +msgid "Account '%s' deleted" msgstr "" -#: ../../include/js_strings.php:10 +#: ../../Zotlabs/Module/Admin/Accounts.php:192 #, php-format -msgid "%s collapse" +msgid "Account '%s' blocked" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../Zotlabs/Module/Admin/Accounts.php:200 +#, php-format +msgid "Account '%s' unblocked" msgstr "" -#: ../../include/js_strings.php:12 ../../Zotlabs/Module/Register.php:161 -msgid "Passwords do not match" +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" msgstr "" -#: ../../include/js_strings.php:13 -msgid "everybody" +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" msgstr "" -#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Rate.php:157 -#: ../../Zotlabs/Module/Connedit.php:880 -msgid "Rating" +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Request date" msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" msgstr "" -#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Pubsites.php:53 -#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:483 -#: ../../Zotlabs/Module/Profiles.php:511 ../../Zotlabs/Module/Profiles.php:736 -#: ../../Zotlabs/Module/Locs.php:128 -msgid "Location" +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" msgstr "" -#: ../../include/js_strings.php:26 -msgid "lovely" +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" msgstr "" -#: ../../include/js_strings.php:27 -msgid "wonderful" +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" msgstr "" -#: ../../include/js_strings.php:28 -msgid "fantastic" +#: ../../Zotlabs/Module/Admin/Accounts.php:329 +msgid "ID" msgstr "" -#: ../../include/js_strings.php:29 -msgid "great" +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" msgstr "" -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" +#: ../../Zotlabs/Module/Admin/Accounts.php:332 +msgid "Register date" msgstr "" -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." +#: ../../Zotlabs/Module/Admin/Accounts.php:333 +msgid "Last login" msgstr "" -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." +#: ../../Zotlabs/Module/Admin/Accounts.php:334 +msgid "Expires" msgstr "" -#: ../../include/js_strings.php:33 -msgid "A channel name is required." +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" msgstr "" -#: ../../include/js_strings.php:34 -msgid "This is a " +#: ../../Zotlabs/Module/Admin/Accounts.php:337 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../include/js_strings.php:35 -msgid " channel name" +#: ../../Zotlabs/Module/Admin/Accounts.php:338 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../include/js_strings.php:36 -msgid "Back to reply" +#: ../../Zotlabs/Module/Admin/Accounts.php:347 +#: ../../include/conversation.php:1123 +msgid "Message" msgstr "" -#: ../../include/js_strings.php:37 -msgid "Pinned" -msgstr "" - -#: ../../include/js_strings.php:38 ../../Zotlabs/Lib/ThreadItem.php:473 -msgid "Pin to the top" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 +msgid "Off" msgstr "" -#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:155 -#: ../../Zotlabs/Lib/ThreadItem.php:473 -msgid "Unpin from the top" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 +msgid "On" msgstr "" -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d minutes" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:46 -#, php-format -msgid "about %d hours" -msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "%d days" -msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:48 -#, php-format -msgid "%d months" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/js_strings.php:49 +#: ../../Zotlabs/Module/Admin/Features.php:56 #, php-format -msgid "%d years" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" +msgid "Lock feature %s" +msgstr "" -#: ../../include/js_strings.php:54 -msgid "timeago.prefixAgo" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../include/js_strings.php:55 -msgid "timeago.prefixFromNow" +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" msgstr "" -#: ../../include/js_strings.php:56 -msgid "timeago.suffixAgo" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" msgstr "" -#: ../../include/js_strings.php:57 -msgid "timeago.suffixFromNow" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" msgstr "" -#: ../../include/js_strings.php:60 -msgid "less than a minute" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" msgstr "" -#: ../../include/js_strings.php:61 -msgid "about a minute" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" msgstr "" -#: ../../include/js_strings.php:63 -msgid "about an hour" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" msgstr "" -#: ../../include/js_strings.php:65 -msgid "a day" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" msgstr "" -#: ../../include/js_strings.php:67 -msgid "about a month" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Update has been marked successful" msgstr "" -#: ../../include/js_strings.php:69 -msgid "about a year" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Verification of update %s failed. Check system logs." msgstr "" -#: ../../include/js_strings.php:71 -msgid " " +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../include/js_strings.php:72 -msgid "timeago.numbers" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Verifying update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../include/js_strings.php:78 -msgctxt "long" -msgid "May" +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." msgstr "" -#: ../../include/js_strings.php:86 -msgid "Jan" +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../include/js_strings.php:87 -msgid "Feb" +#: ../../Zotlabs/Module/Admin/Dbsync.php:71 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." msgstr "" -#: ../../include/js_strings.php:88 -msgid "Mar" +#: ../../Zotlabs/Module/Admin/Dbsync.php:78 +#, php-format +msgid "" +"Update %s did not return a status. It cannot be determined if it was " +"successful." msgstr "" -#: ../../include/js_strings.php:89 -msgid "Apr" +#: ../../Zotlabs/Module/Admin/Dbsync.php:99 +msgid "Failed Updates" msgstr "" -#: ../../include/js_strings.php:90 -msgctxt "short" -msgid "May" +#: ../../Zotlabs/Module/Admin/Dbsync.php:101 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../include/js_strings.php:91 -msgid "Jun" +#: ../../Zotlabs/Module/Admin/Dbsync.php:102 +msgid "Attempt to verify this update if a verification procedure exists" msgstr "" -#: ../../include/js_strings.php:92 -msgid "Jul" +#: ../../Zotlabs/Module/Admin/Dbsync.php:103 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../include/js_strings.php:93 -msgid "Aug" +#: ../../Zotlabs/Module/Admin/Dbsync.php:108 +msgid "No failed updates." msgstr "" -#: ../../include/js_strings.php:94 -msgid "Sep" +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" msgstr "" -#: ../../include/js_strings.php:95 -msgid "Oct" +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" msgstr "" -#: ../../include/js_strings.php:96 -msgid "Nov" +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" msgstr "" -#: ../../include/js_strings.php:97 -msgid "Dec" +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" msgstr "" -#: ../../include/js_strings.php:105 -msgid "Sun" +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" msgstr "" -#: ../../include/js_strings.php:106 -msgid "Mon" +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" msgstr "" -#: ../../include/js_strings.php:107 -msgid "Tue" +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" msgstr "" -#: ../../include/js_strings.php:108 -msgid "Wed" +#: ../../Zotlabs/Module/Admin/Channels.php:150 +#: ../../Zotlabs/Module/Directory.php:362 +msgid "Censor" msgstr "" -#: ../../include/js_strings.php:109 -msgid "Thu" +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Directory.php:362 +msgid "Uncensor" msgstr "" -#: ../../include/js_strings.php:110 -msgid "Fri" +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" msgstr "" -#: ../../include/js_strings.php:111 -msgid "Sat" +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" msgstr "" -#: ../../include/js_strings.php:112 -msgctxt "calendar" -msgid "today" +#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:421 +msgid "Channel" msgstr "" -#: ../../include/js_strings.php:113 -msgctxt "calendar" -msgid "month" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" msgstr "" -#: ../../include/js_strings.php:114 -msgctxt "calendar" -msgid "week" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../include/js_strings.php:115 -msgctxt "calendar" -msgid "day" +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../include/js_strings.php:116 -msgctxt "calendar" -msgid "All day" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." msgstr "" -#: ../../include/js_strings.php:119 -msgid "Please stand by while your download is being prepared." +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" msgstr "" -#: ../../include/js_strings.php:122 -msgid "Email address not valid" +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" msgstr "" -#: ../../include/help.php:80 -msgid "Help:" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" msgstr "" -#: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:180 ../../include/nav.php:320 -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 -msgid "Help" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" msgstr "" -#: ../../include/help.php:129 -msgid "Not Found" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -#: ../../include/help.php:132 ../../Zotlabs/Module/Display.php:136 -#: ../../Zotlabs/Module/Display.php:153 ../../Zotlabs/Module/Display.php:173 -#: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:533 -#: ../../Zotlabs/Web/Router.php:186 -msgid "Page not found." +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" msgstr "" -#: ../../include/photos.php:151 +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format -msgid "Image exceeds website size limit of %lu bytes" +msgid "Password changed for account %d." msgstr "" -#: ../../include/photos.php:162 -msgid "Image file is empty." +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." msgstr "" -#: ../../include/photos.php:196 ../../Zotlabs/Module/Profile_photo.php:261 -#: ../../Zotlabs/Module/Cover_photo.php:241 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." msgstr "" -#: ../../include/photos.php:324 -msgid "Photo storage failed." +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" msgstr "" -#: ../../include/photos.php:373 -msgid "a new photo" +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" msgstr "" -#: ../../include/photos.php:377 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" msgstr "" -#: ../../include/photos.php:666 ../../include/nav.php:447 -msgid "Photo Albums" +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Account language (for emails)" msgstr "" -#: ../../include/photos.php:667 ../../Zotlabs/Module/Photos.php:1348 -#: ../../Zotlabs/Module/Photos.php:1361 ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Admin/Addons.php:290 +#, php-format +msgid "Plugin %s disabled." msgstr "" -#: ../../include/photos.php:671 -msgid "Upload New Photos" +#: ../../Zotlabs/Module/Admin/Addons.php:295 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../include/network.php:1762 ../../include/network.php:1763 -msgid "Friendica" +#: ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Addons.php:441 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" msgstr "" -#: ../../include/network.php:1764 -msgid "OStatus" +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Minimum project version: " msgstr "" -#: ../../include/network.php:1765 -msgid "GNU-Social" +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Maximum project version: " msgstr "" -#: ../../include/network.php:1766 -msgid "RSS/Atom" +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Minimum PHP version: " msgstr "" -#: ../../include/network.php:1769 -msgid "Diaspora" +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Compatible Server Roles: " msgstr "" -#: ../../include/network.php:1770 -msgid "Facebook" +#: ../../Zotlabs/Module/Admin/Addons.php:358 +msgid "Requires: " msgstr "" -#: ../../include/network.php:1771 -msgid "Zot" +#: ../../Zotlabs/Module/Admin/Addons.php:359 +#: ../../Zotlabs/Module/Admin/Addons.php:446 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../include/network.php:1772 -msgid "LinkedIn" +#: ../../Zotlabs/Module/Admin/Addons.php:415 +msgid "Enter the public git repository URL of the addon repo." msgstr "" -#: ../../include/network.php:1773 -msgid "XMPP/IM" +#: ../../Zotlabs/Module/Admin/Addons.php:416 +msgid "Addon repo git URL" msgstr "" -#: ../../include/network.php:1774 -msgid "MySpace" +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "Custom repo name" msgstr "" -#: ../../include/activities.php:42 -msgid " and " +#: ../../Zotlabs/Module/Admin/Addons.php:417 +msgid "(optional)" msgstr "" -#: ../../include/activities.php:50 -msgid "public profile" +#: ../../Zotlabs/Module/Admin/Addons.php:418 +msgid "Download Addon Repo" msgstr "" -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../Zotlabs/Module/Admin/Addons.php:425 +msgid "Install new repo" msgstr "" -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../Zotlabs/Module/Admin/Addons.php:426 ../../Zotlabs/Lib/Apps.php:536 +msgid "Install" msgstr "" -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../Zotlabs/Module/Admin/Addons.php:449 +msgid "Manage Repos" msgstr "" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Addons.php:450 +msgid "Installed Addon Repositories" +msgstr "" -#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 -#: ../../Zotlabs/Module/Admin/Site.php:416 -msgid "Advanced" +#: ../../Zotlabs/Module/Admin/Addons.php:451 +msgid "Install a New Addon Repository" msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" +#: ../../Zotlabs/Module/Admin/Addons.php:458 +msgid "Switch branch" msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../Zotlabs/Module/Admin/Site.php:225 +msgid "Site settings updated." msgstr "" -#: ../../include/contact_widgets.php:23 ../../Zotlabs/Module/Directory.php:433 -#: ../../Zotlabs/Module/Directory.php:438 -#: ../../Zotlabs/Module/Connections.php:382 -msgid "Find" +#: ../../Zotlabs/Module/Admin/Site.php:251 ../../include/text.php:3395 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:335 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:359 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:435 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:459 +#: ../../view/theme/redbasic/php/config.php:15 +msgid "Default" msgstr "" -#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Directory.php:437 -#: ../../Zotlabs/Module/Suggest.php:79 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Settings/Display.php:118 +#, php-format +msgid "%s - (Incompatible)" msgstr "" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "mobile" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" +#: ../../Zotlabs/Module/Admin/Site.php:271 +msgid "experimental" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" +#: ../../Zotlabs/Module/Admin/Site.php:273 +msgid "unsupported" msgstr "" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:115 -#: ../../include/contact_widgets.php:159 ../../include/contact_widgets.php:204 -#: ../../include/contact_widgets.php:239 -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -msgid "Everything" +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Yes - with approval" msgstr "" -#: ../../include/contact_widgets.php:112 ../../include/contact_widgets.php:156 -#: ../../include/contact_widgets.php:201 ../../include/contact_widgets.php:236 -#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 -#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Module/Cdav.php:1071 -#: ../../Zotlabs/Storage/Browser.php:293 ../../Zotlabs/Storage/Browser.php:388 -#: ../../Zotlabs/Storage/Browser.php:403 -msgid "Categories" +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "My site is not a public server" msgstr "" -#: ../../include/contact_widgets.php:269 -msgid "Common Connections" +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "My site has paid access only" msgstr "" -#: ../../include/contact_widgets.php:273 -#, php-format -msgid "View all %d common connections" +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "My site has free access only" msgstr "" -#: ../../include/language.php:441 -msgid "Select an alternate language" +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../include/import.php:29 -msgid "Unable to import a removed channel." +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Default permission role for new accounts" msgstr "" -#: ../../include/import.php:55 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +"This role will be used for the first channel created after registration." msgstr "" -#: ../../include/import.php:121 -msgid "Cloned channel not found. Import failed." +#: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 +msgid "Minute(s)" msgstr "" -#: ../../include/nav.php:95 -msgid "Remote authentication" +#: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 +msgid "Hour(s)" msgstr "" -#: ../../include/nav.php:95 -msgid "Click to authenticate to your home hub" +#: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 +msgid "Day(s)" msgstr "" -#: ../../include/nav.php:101 ../../Zotlabs/Module/Manage.php:170 -#: ../../Zotlabs/Lib/Apps.php:337 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Week(s)" msgstr "" -#: ../../include/nav.php:101 -msgid "Manage your channels" +#: ../../Zotlabs/Module/Admin/Site.php:357 +msgid "Month(s)" msgstr "" -#: ../../include/nav.php:104 ../../include/group.php:327 -#: ../../include/acl_selectors.php:87 -#: ../../Zotlabs/Widget/Activity_filter.php:88 -#: ../../Zotlabs/Module/Group.php:142 ../../Zotlabs/Module/Group.php:154 -#: ../../Zotlabs/Lib/Group.php:324 ../../Zotlabs/Lib/Apps.php:364 -msgid "Privacy Groups" +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Year(s)" msgstr "" -#: ../../include/nav.php:104 -msgid "Manage your privacy groups" +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Register verification delay" msgstr "" -#: ../../include/nav.php:106 ../../Zotlabs/Widget/Settings_menu.php:61 -#: ../../Zotlabs/Widget/Newmember.php:53 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 -msgid "Settings" +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Time to wait before a registration can be verified" msgstr "" -#: ../../include/nav.php:106 -msgid "Account/Channel Settings" +#: ../../Zotlabs/Module/Admin/Site.php:372 +#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 +msgid "duration up from now" msgstr "" -#: ../../include/nav.php:112 ../../include/nav.php:142 -#: ../../include/nav.php:163 ../../boot.php:1715 -msgid "Logout" +#: ../../Zotlabs/Module/Admin/Site.php:388 +msgid "Register verification expiration time" msgstr "" -#: ../../include/nav.php:112 ../../include/nav.php:142 -msgid "End this session" +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Time before an unverified registration will expire" msgstr "" -#: ../../include/nav.php:115 -msgid "Your profile page" +#: ../../Zotlabs/Module/Admin/Site.php:411 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" msgstr "" -#: ../../include/nav.php:118 ../../include/channel.php:1563 -#: ../../Zotlabs/Module/Profiles.php:832 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Admin/Site.php:413 +#: ../../Zotlabs/Module/Register.php:520 +msgid "Registration" msgstr "" -#: ../../include/nav.php:118 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:120 ../../Zotlabs/Widget/Newmember.php:35 -msgid "Edit your profile" +#: ../../Zotlabs/Module/Admin/Site.php:414 +msgid "File upload" msgstr "" -#: ../../include/nav.php:127 ../../include/nav.php:131 -#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1716 -msgid "Login" +#: ../../Zotlabs/Module/Admin/Site.php:415 +msgid "Policies" msgstr "" -#: ../../include/nav.php:127 ../../include/nav.php:131 -msgid "Sign in" +#: ../../Zotlabs/Module/Admin/Site.php:416 ../../include/contact_widgets.php:16 +#: ../../include/acl_selectors.php:145 +msgid "Advanced" msgstr "" -#: ../../include/nav.php:161 -msgid "Take me home" +#: ../../Zotlabs/Module/Admin/Site.php:420 +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:593 +msgid "Site name" msgstr "" -#: ../../include/nav.php:163 -msgid "Log me out of this site" +#: ../../Zotlabs/Module/Admin/Site.php:422 +msgid "Banner/Logo" msgstr "" -#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:542 -#: ../../boot.php:1696 -msgid "Register" +#: ../../Zotlabs/Module/Admin/Site.php:422 +msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "" -#: ../../include/nav.php:168 -msgid "Create an account" +#: ../../Zotlabs/Module/Admin/Site.php:423 +msgid "Administrator Information" msgstr "" -#: ../../include/nav.php:180 -msgid "Help and documentation" +#: ../../Zotlabs/Module/Admin/Site.php:423 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../include/nav.php:194 -msgid "Search site @name, !forum, #tag, ?docs, content" +#: ../../Zotlabs/Module/Admin/Site.php:424 ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" msgstr "" -#: ../../include/nav.php:200 ../../Zotlabs/Widget/Admin.php:55 -msgid "Admin" +#: ../../Zotlabs/Module/Admin/Site.php:424 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" -#: ../../include/nav.php:200 -msgid "Site Setup and Configuration" +#: ../../Zotlabs/Module/Admin/Site.php:425 +msgid "System language" msgstr "" -#: ../../include/nav.php:324 ../../Zotlabs/Widget/Notifications.php:182 -#: ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 -msgid "Loading" +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "System theme" msgstr "" -#: ../../include/nav.php:330 -msgid "@name, !forum, #tag, ?doc, content" +#: ../../Zotlabs/Module/Admin/Site.php:426 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../include/nav.php:331 -msgid "Please wait..." +#: ../../Zotlabs/Module/Admin/Site.php:429 +msgid "Allow Feeds as Connections" msgstr "" -#: ../../include/nav.php:337 -msgid "Add Apps" +#: ../../Zotlabs/Module/Admin/Site.php:429 +msgid "(Heavy system resource usage)" msgstr "" -#: ../../include/nav.php:338 -msgid "Arrange Apps" +#: ../../Zotlabs/Module/Admin/Site.php:430 +msgid "Maximum image size" msgstr "" -#: ../../include/nav.php:339 -msgid "Toggle System Apps" +#: ../../Zotlabs/Module/Admin/Site.php:430 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../include/nav.php:421 ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Channel" +#: ../../Zotlabs/Module/Admin/Site.php:431 +msgid "Minimum age" msgstr "" -#: ../../include/nav.php:424 -msgid "Status Messages and Posts" +#: ../../Zotlabs/Module/Admin/Site.php:431 +msgid "Minimum age (in years) for who may register on this site." msgstr "" -#: ../../include/nav.php:434 ../../Zotlabs/Module/Help.php:83 -msgid "About" +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../include/nav.php:437 -msgid "Profile Details" +#: ../../Zotlabs/Module/Admin/Site.php:432 +msgid "This is displayed on the public server site list." msgstr "" -#: ../../include/nav.php:452 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:340 ../../Zotlabs/Storage/Browser.php:351 -msgid "Files" +#: ../../Zotlabs/Module/Admin/Site.php:438 +msgid "Register text" msgstr "" -#: ../../include/nav.php:455 -msgid "Files and Storage" +#: ../../Zotlabs/Module/Admin/Site.php:440 +msgid "This text will be displayed prominently at the registration page" msgstr "" -#: ../../include/nav.php:477 ../../include/nav.php:480 -#: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../Zotlabs/Lib/Apps.php:330 -msgid "Chatrooms" +#: ../../Zotlabs/Module/Admin/Site.php:444 +msgid "Does this site allow new member registration?" msgstr "" -#: ../../include/nav.php:490 ../../Zotlabs/Lib/Apps.php:329 -msgid "Bookmarks" +#: ../../Zotlabs/Module/Admin/Site.php:451 +msgid "Configure the registration open days/hours" msgstr "" -#: ../../include/nav.php:493 -msgid "Saved Bookmarks" +#: ../../Zotlabs/Module/Admin/Site.php:453 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" msgstr "" -#: ../../include/nav.php:501 ../../Zotlabs/Module/Cards.php:207 -#: ../../Zotlabs/Lib/Apps.php:326 -msgid "Cards" +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "" +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" msgstr "" -#: ../../include/nav.php:504 -msgid "View Cards" +#: ../../Zotlabs/Module/Admin/Site.php:455 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" msgstr "" -#: ../../include/nav.php:512 ../../Zotlabs/Module/Articles.php:225 -#: ../../Zotlabs/Lib/Apps.php:325 -msgid "Articles" +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" msgstr "" -#: ../../include/nav.php:515 -msgid "View Articles" +#: ../../Zotlabs/Module/Admin/Site.php:457 +msgid "Advanced examples:" msgstr "" -#: ../../include/nav.php:524 ../../Zotlabs/Module/Webpages.php:252 -#: ../../Zotlabs/Lib/Apps.php:341 -msgid "Webpages" +#: ../../Zotlabs/Module/Admin/Site.php:457 +#: ../../Zotlabs/Module/Settings/Channel.php:420 +msgid "or" msgstr "" -#: ../../include/nav.php:527 -msgid "View Webpages" +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "Check your configuration" msgstr "" -#: ../../include/nav.php:536 ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../Zotlabs/Module/Wiki.php:205 -msgid "Wikis" +#: ../../Zotlabs/Module/Admin/Site.php:462 +msgid "Max account registrations per day" msgstr "" -#: ../../include/nav.php:539 ../../Zotlabs/Lib/Apps.php:342 -msgid "Wiki" +#: ../../Zotlabs/Module/Admin/Site.php:464 +msgid "Unlimited if zero or no value - default 50" msgstr "" -#: ../../include/auth.php:194 -msgid "Delegation session ended." +#: ../../Zotlabs/Module/Admin/Site.php:468 +msgid "Max account registrations from same IP" msgstr "" -#: ../../include/auth.php:198 -msgid "Logged out." +#: ../../Zotlabs/Module/Admin/Site.php:470 +msgid "Unlimited if zero or no value - default 3" msgstr "" -#: ../../include/auth.php:294 -msgid "Email validation is incomplete. Please check your email." +#: ../../Zotlabs/Module/Admin/Site.php:476 +msgid "Auto channel create" msgstr "" -#: ../../include/auth.php:310 -msgid "Failed authentication" +#: ../../Zotlabs/Module/Admin/Site.php:478 +msgid "" +"If disabled the channel will be created in a separate step during the " +"registration process" msgstr "" -#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:51 -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Admin/Site.php:482 +msgid "Require invite code" msgstr "" -#: ../../include/datetime.php:140 -msgid "Birthday" +#: ../../Zotlabs/Module/Admin/Site.php:487 +msgid "Allow invite code" msgstr "" -#: ../../include/datetime.php:140 -msgid "Age: " +#: ../../Zotlabs/Module/Admin/Site.php:492 +msgid "Require email address" msgstr "" -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" +#: ../../Zotlabs/Module/Admin/Site.php:494 +msgid "The provided email address will be verified (recommended)" msgstr "" -#: ../../include/datetime.php:238 ../../boot.php:2730 -msgid "never" +#: ../../Zotlabs/Module/Admin/Site.php:498 +msgid "Abandon account after x days" msgstr "" -#: ../../include/datetime.php:244 -msgid "less than a second ago" +#: ../../Zotlabs/Module/Admin/Site.php:500 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +#: ../../Zotlabs/Module/Admin/Site.php:505 +msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:505 +msgid "" +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:506 +msgid "Preserve site homepage URL" +msgstr "" -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:506 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:507 +msgid "Allowed friend domains" +msgstr "" -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:507 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "Force publish" +msgstr "" -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" +#: ../../Zotlabs/Module/Admin/Site.php:508 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "Import Public Streams" msgstr "" -#: ../../include/cdav.php:157 -msgid "INVALID EVENT DISMISSED!" +#: ../../Zotlabs/Module/Admin/Site.php:509 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -#: ../../include/cdav.php:158 -msgid "Summary: " +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "Site only Public Streams" msgstr "" -#: ../../include/cdav.php:159 -msgid "Date: " +#: ../../Zotlabs/Module/Admin/Site.php:510 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." msgstr "" -#: ../../include/cdav.php:160 ../../include/cdav.php:168 -msgid "Reason: " +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "Allow anybody on the internet to access the Public streams" msgstr "" -#: ../../include/cdav.php:166 -msgid "INVALID CARD DISMISSED!" +#: ../../Zotlabs/Module/Admin/Site.php:511 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." msgstr "" -#: ../../include/cdav.php:167 -msgid "Name: " +#: ../../Zotlabs/Module/Admin/Site.php:512 +msgid "Only import Public stream posts with this text" msgstr "" -#: ../../include/follow.php:39 ../../Zotlabs/Lib/Connect.php:46 -#: ../../Zotlabs/Lib/Connect.php:143 -msgid "Channel is blocked on this site." +#: ../../Zotlabs/Module/Admin/Site.php:513 +msgid "Do not import Public stream posts with this text" msgstr "" -#: ../../include/follow.php:44 ../../Zotlabs/Lib/Connect.php:51 -msgid "Channel location missing." +#: ../../Zotlabs/Module/Admin/Site.php:516 +msgid "Login on Homepage" msgstr "" -#: ../../include/follow.php:86 -msgid "Response from remote channel was incomplete." +#: ../../Zotlabs/Module/Admin/Site.php:516 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." msgstr "" -#: ../../include/follow.php:98 -msgid "Premium channel - please visit:" +#: ../../Zotlabs/Module/Admin/Site.php:517 +msgid "Enable context help" msgstr "" -#: ../../include/follow.php:112 -msgid "Channel was deleted and no longer exists." +#: ../../Zotlabs/Module/Admin/Site.php:517 +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../include/follow.php:168 ../../Zotlabs/Lib/Connect.php:103 -msgid "Remote channel or protocol unavailable." +#: ../../Zotlabs/Module/Admin/Site.php:519 +msgid "Reply-to email address for system generated email." msgstr "" -#: ../../include/follow.php:192 ../../Zotlabs/Lib/Connect.php:137 -msgid "Channel discovery failed." +#: ../../Zotlabs/Module/Admin/Site.php:520 +msgid "Sender (From) email address for system generated email." msgstr "" -#: ../../include/follow.php:204 ../../Zotlabs/Lib/Connect.php:155 -msgid "Protocol disabled." +#: ../../Zotlabs/Module/Admin/Site.php:521 +msgid "Name of email sender for system generated email." msgstr "" -#: ../../include/follow.php:215 ../../Zotlabs/Lib/Connect.php:167 -msgid "Cannot connect to yourself." +#: ../../Zotlabs/Module/Admin/Site.php:523 +msgid "Directory Server URL" msgstr "" -#: ../../include/conversation.php:135 ../../Zotlabs/Module/Like.php:178 -msgid "channel" +#: ../../Zotlabs/Module/Admin/Site.php:523 +msgid "Default directory server" msgstr "" -#: ../../include/conversation.php:183 -#, php-format -msgid "likes %1$s's %2$s" +#: ../../Zotlabs/Module/Admin/Site.php:525 +msgid "Enable SSE Notifications" msgstr "" -#: ../../include/conversation.php:186 -#, php-format -msgid "doesn't like %1$s's %2$s" +#: ../../Zotlabs/Module/Admin/Site.php:525 +msgid "" +"If disabled, traditional polling will be used. Warning: this setting might " +"not be suited for shared hosting" msgstr "" -#: ../../include/conversation.php:226 ../../include/conversation.php:228 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../Zotlabs/Module/Admin/Site.php:527 +msgid "Proxy user" msgstr "" -#: ../../include/conversation.php:263 -#, php-format -msgid "%1$s poked %2$s" +#: ../../Zotlabs/Module/Admin/Site.php:528 +msgid "Proxy URL" msgstr "" -#: ../../include/conversation.php:286 ../../Zotlabs/Module/Mood.php:76 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Admin/Site.php:529 +msgid "Network timeout" msgstr "" -#: ../../include/conversation.php:516 ../../Zotlabs/Lib/ThreadItem.php:502 -msgid "This is an unsaved preview" +#: ../../Zotlabs/Module/Admin/Site.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../include/conversation.php:652 ../../Zotlabs/Module/Photos.php:1113 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Admin/Site.php:530 +msgid "Delivery interval" msgstr "" -#: ../../include/conversation.php:653 ../../Zotlabs/Module/Photos.php:1113 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Admin/Site.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" -#: ../../include/conversation.php:654 ../../Zotlabs/Widget/Pinned.php:77 -#: ../../Zotlabs/Module/Photos.php:1114 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Admin/Site.php:531 +msgid "Deliveries per process" msgstr "" -#: ../../include/conversation.php:655 ../../Zotlabs/Widget/Pinned.php:78 -#: ../../Zotlabs/Module/Photos.php:1114 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Admin/Site.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../include/conversation.php:656 ../../Zotlabs/Widget/Pinned.php:79 -#: ../../Zotlabs/Module/Photos.php:1114 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "Queue Threshold" msgstr "" -#: ../../include/conversation.php:657 ../../Zotlabs/Widget/Pinned.php:66 -#: ../../Zotlabs/Module/Photos.php:1115 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Admin/Site.php:532 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." msgstr "" -#: ../../include/conversation.php:658 ../../Zotlabs/Widget/Pinned.php:67 -#: ../../Zotlabs/Module/Photos.php:1115 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Admin/Site.php:533 +msgid "Poll interval" msgstr "" -#: ../../include/conversation.php:659 ../../Zotlabs/Widget/Pinned.php:68 -#: ../../Zotlabs/Module/Photos.php:1115 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Admin/Site.php:533 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../include/conversation.php:729 ../../Zotlabs/Lib/ThreadItem.php:181 -msgid "Select" +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "Path to ImageMagick convert program" msgstr "" -#: ../../include/conversation.php:730 ../../include/conversation.php:777 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Card_edit.php:130 ../../Zotlabs/Module/Oauth.php:174 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1057 -#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Module/Admin/Accounts.php:320 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Connections.php:329 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Thing.php:269 -#: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Lib/Apps.php:558 ../../Zotlabs/Lib/ThreadItem.php:171 -#: ../../Zotlabs/Storage/Browser.php:384 -msgid "Delete" +#: ../../Zotlabs/Module/Admin/Site.php:534 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:535 +msgid "Maximum Load Average" msgstr "" -#: ../../include/conversation.php:734 ../../Zotlabs/Lib/ThreadItem.php:274 -msgid "Toggle Star Status" +#: ../../Zotlabs/Module/Admin/Site.php:535 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../include/conversation.php:739 ../../Zotlabs/Lib/ThreadItem.php:103 -msgid "Private Message" +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../include/conversation.php:748 ../../Zotlabs/Widget/Pinned.php:88 -#: ../../Zotlabs/Lib/ThreadItem.php:285 -msgid "Message signature validated" +#: ../../Zotlabs/Module/Admin/Site.php:536 +msgid "0 for no expiration of imported content" msgstr "" -#: ../../include/conversation.php:749 ../../Zotlabs/Widget/Pinned.php:89 -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Message signature incorrect" +#: ../../Zotlabs/Module/Admin/Site.php:537 +msgid "" +"Do not expire any posts which have comments less than this many days ago" msgstr "" -#: ../../include/conversation.php:776 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 -#: ../../Zotlabs/Module/Connections.php:343 -msgid "Approve" +#: ../../Zotlabs/Module/Admin/Site.php:538 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" msgstr "" -#: ../../include/conversation.php:781 +#: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format -msgid "View %s's profile @ %s" +msgid "Create this page first. Default is %s/register" msgstr "" -#: ../../include/conversation.php:802 -msgid "Categories:" +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "Page to display after creating a new channel" msgstr "" -#: ../../include/conversation.php:803 -msgid "Filed under:" +#: ../../Zotlabs/Module/Admin/Site.php:539 +msgid "Default: profiles" msgstr "" -#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:132 -#: ../../Zotlabs/Lib/ThreadItem.php:430 -#, php-format -msgid "from %s" +#: ../../Zotlabs/Module/Admin/Site.php:540 +msgid "Optional: site location" msgstr "" -#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:135 -#: ../../Zotlabs/Lib/ThreadItem.php:433 -#, php-format -msgid "last edited: %s" +#: ../../Zotlabs/Module/Admin/Site.php:540 +msgid "Region or country" msgstr "" -#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:136 -#: ../../Zotlabs/Lib/ThreadItem.php:434 -#, php-format -msgid "Expires: %s" +#: ../../Zotlabs/Module/Admin/Site.php:625 +#: ../../Zotlabs/Module/Admin/Site.php:626 +msgid "Invalid 24h time value (hhmm/hmm)" msgstr "" -#: ../../include/conversation.php:828 -msgid "View in context" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" msgstr "" -#: ../../include/conversation.php:830 ../../Zotlabs/Module/Photos.php:1079 -#: ../../Zotlabs/Lib/ThreadItem.php:503 -msgid "Please wait" +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" msgstr "" -#: ../../include/conversation.php:930 -msgid "remove" +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" msgstr "" -#: ../../include/conversation.php:934 -msgid "Loading..." +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" msgstr "" -#: ../../include/conversation.php:935 ../../Zotlabs/Lib/ThreadItem.php:302 -msgid "Conversation Tools" +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" msgstr "" -#: ../../include/conversation.php:936 -msgid "Delete Selected Items" +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" msgstr "" -#: ../../include/conversation.php:980 -msgid "View Source" +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" msgstr "" -#: ../../include/conversation.php:990 -msgid "Follow Thread" +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" msgstr "" -#: ../../include/conversation.php:999 -msgid "Unfollow Thread" +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" msgstr "" -#: ../../include/conversation.php:1093 ../../Zotlabs/Module/Connedit.php:622 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" msgstr "" -#: ../../include/conversation.php:1103 ../../include/connections.php:110 -#: ../../include/channel.php:1643 ../../Zotlabs/Widget/Suggestions.php:46 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Directory.php:370 -#: ../../Zotlabs/Module/Connections.php:350 ../../Zotlabs/Module/Suggest.php:71 -msgid "Connect" +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" msgstr "" -#: ../../include/conversation.php:1113 -msgid "Edit Connection" +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" msgstr "" -#: ../../include/conversation.php:1123 -#: ../../Zotlabs/Module/Admin/Accounts.php:347 -msgid "Message" +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" msgstr "" -#: ../../include/conversation.php:1133 ../../Zotlabs/Module/Pubsites.php:36 -#: ../../Zotlabs/Module/Ratings.php:97 -msgid "Ratings" +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" msgstr "" -#: ../../include/conversation.php:1143 ../../Zotlabs/Module/Poke.php:199 -#: ../../Zotlabs/Lib/Apps.php:351 -msgid "Poke" +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" msgstr "" -#: ../../include/conversation.php:1265 -#, php-format -msgid "%s likes this." +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" msgstr "" -#: ../../include/conversation.php:1265 -#, php-format -msgid "%s doesn't like this." +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" msgstr "" -#: ../../include/conversation.php:1269 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1271 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1277 -msgid "and" +#: ../../Zotlabs/Module/Notify.php:61 ../../Zotlabs/Module/Notifications.php:58 +msgid "No more system notifications." msgstr "" -#: ../../include/conversation.php:1280 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1281 -#, php-format -msgid "%s like this." +#: ../../Zotlabs/Module/Notify.php:65 ../../Zotlabs/Module/Notifications.php:62 +msgid "System Notifications" msgstr "" -#: ../../include/conversation.php:1281 -#, php-format -msgid "%s don't like this." +#: ../../Zotlabs/Module/Cal.php:62 +msgid "Permissions denied." msgstr "" -#: ../../include/conversation.php:1464 -msgid "Toggle poll" +#: ../../Zotlabs/Module/Thing.php:122 +msgid "Thing updated" msgstr "" -#: ../../include/conversation.php:1465 -msgid "Option" +#: ../../Zotlabs/Module/Thing.php:174 +msgid "Object store: failed" msgstr "" -#: ../../include/conversation.php:1466 -msgid "Add option" +#: ../../Zotlabs/Module/Thing.php:178 +msgid "Thing added" msgstr "" -#: ../../include/conversation.php:1467 -msgid "Minutes" +#: ../../Zotlabs/Module/Thing.php:204 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../include/conversation.php:1467 -msgid "Hours" +#: ../../Zotlabs/Module/Thing.php:267 +msgid "Show Thing" msgstr "" -#: ../../include/conversation.php:1467 -msgid "Days" +#: ../../Zotlabs/Module/Thing.php:274 +msgid "item not found." msgstr "" -#: ../../include/conversation.php:1468 -msgid "Allow multiple answers" +#: ../../Zotlabs/Module/Thing.php:307 +msgid "Edit Thing" msgstr "" -#: ../../include/conversation.php:1478 -msgid "Summary (optional)" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 +msgid "Select a profile" msgstr "" -#: ../../include/conversation.php:1752 ../../include/taxonomy.php:670 -#: ../../include/channel.php:1806 ../../Zotlabs/Module/Photos.php:1136 -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1755 ../../Zotlabs/Module/Photos.php:1141 -#: ../../Zotlabs/Lib/ThreadItem.php:248 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1758 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1761 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1764 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1767 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1770 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Post an activity" +msgstr "" -#: ../../include/conversation.php:1773 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Only sends to viewers of the applicable profile" +msgstr "" -#: ../../include/selectors.php:18 -msgid "Profile to assign new connections" +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 +msgid "Name of thing e.g. something" msgstr "" -#: ../../include/selectors.php:41 -msgid "Frequently" +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 +msgid "URL of thing (optional)" msgstr "" -#: ../../include/selectors.php:42 -msgid "Hourly" +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../include/selectors.php:43 -msgid "Twice daily" +#: ../../Zotlabs/Module/Thing.php:364 +msgid "Add Thing to your Profile" msgstr "" -#: ../../include/selectors.php:44 -msgid "Daily" +#: ../../Zotlabs/Module/Suggest.php:40 +msgid "Suggest Channels App" msgstr "" -#: ../../include/selectors.php:45 -msgid "Weekly" +#: ../../Zotlabs/Module/Suggest.php:41 +msgid "" +"Suggestions for channels in the $Projectname network you might be interested " +"in" msgstr "" -#: ../../include/selectors.php:46 -msgid "Monthly" +#: ../../Zotlabs/Module/Suggest.php:54 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../include/selectors.php:60 -msgid "Currently Male" +#: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 +msgid "Ignore/Hide" msgstr "" -#: ../../include/selectors.php:60 -msgid "Currently Female" +#: ../../Zotlabs/Module/Suggest.php:79 ../../Zotlabs/Module/Directory.php:437 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../include/selectors.php:60 -msgid "Mostly Male" +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" msgstr "" -#: ../../include/selectors.php:60 -msgid "Mostly Female" +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." msgstr "" -#: ../../include/selectors.php:60 -msgid "Transgender" +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" msgstr "" -#: ../../include/selectors.php:60 -msgid "Intersex" +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" msgstr "" -#: ../../include/selectors.php:60 -msgid "Transsexual" +#: ../../Zotlabs/Module/Notes.php:57 +msgid "Notes App" msgstr "" -#: ../../include/selectors.php:60 -msgid "Hermaphrodite" +#: ../../Zotlabs/Module/Notes.php:58 +msgid "A simple notes app with a widget (note: notes are not encrypted)" msgstr "" -#: ../../include/selectors.php:60 ../../include/channel.php:1751 -msgid "Neuter" +#: ../../Zotlabs/Module/Tokens.php:39 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../include/selectors.php:60 ../../include/channel.php:1753 -msgid "Non-specific" +#: ../../Zotlabs/Module/Tokens.php:45 +msgid "Name and Password are required." msgstr "" -#: ../../include/selectors.php:60 -msgid "Undecided" +#: ../../Zotlabs/Module/Tokens.php:85 +msgid "Token saved." msgstr "" -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Males" +#: ../../Zotlabs/Module/Tokens.php:99 +msgid "Guest Access App" msgstr "" -#: ../../include/selectors.php:96 ../../include/selectors.php:115 -msgid "Females" +#: ../../Zotlabs/Module/Tokens.php:100 +msgid "Create access tokens so that non-members can access private content" msgstr "" -#: ../../include/selectors.php:96 -msgid "Gay" +#: ../../Zotlabs/Module/Tokens.php:133 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../include/selectors.php:96 -msgid "Lesbian" +#: ../../Zotlabs/Module/Tokens.php:135 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../include/selectors.php:96 -msgid "No Preference" +#: ../../Zotlabs/Module/Tokens.php:170 +msgid "Guest Access Tokens" msgstr "" -#: ../../include/selectors.php:96 -msgid "Bisexual" +#: ../../Zotlabs/Module/Tokens.php:177 +msgid "Login Name" msgstr "" -#: ../../include/selectors.php:96 -msgid "Autosexual" +#: ../../Zotlabs/Module/Tokens.php:178 +msgid "Login Password" msgstr "" -#: ../../include/selectors.php:96 -msgid "Abstinent" +#: ../../Zotlabs/Module/Tokens.php:179 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../include/selectors.php:96 -msgid "Virgin" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../include/selectors.php:96 -msgid "Deviant" +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" msgstr "" -#: ../../include/selectors.php:96 -msgid "Fetish" +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" msgstr "" -#: ../../include/selectors.php:96 -msgid "Oodles" +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -#: ../../include/selectors.php:96 -msgid "Nonsexual" +#: ../../Zotlabs/Module/Notifications.php:63 +#: ../../Zotlabs/Lib/ThreadItem.php:484 +msgid "Mark all seen" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Single" +#: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 +#: ../../Zotlabs/Module/Invite.php:225 ../../Zotlabs/Module/Invite.php:494 +#: ../../Zotlabs/Module/Invite.php:508 ../../Zotlabs/Lib/Enotify.php:66 +#: ../../extend/addon/hubzilla-addons/opensearch/opensearch.php:42 +msgid "$Projectname" msgstr "" -#: ../../include/selectors.php:134 -msgid "Lonely" +#: ../../Zotlabs/Module/Home.php:104 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../include/selectors.php:134 -msgid "Available" +#: ../../Zotlabs/Module/Articles.php:52 +msgid "Articles App" msgstr "" -#: ../../include/selectors.php:134 -msgid "Unavailable" +#: ../../Zotlabs/Module/Articles.php:53 +msgid "Create interactive articles" msgstr "" -#: ../../include/selectors.php:134 -msgid "Has crush" +#: ../../Zotlabs/Module/Articles.php:116 +msgid "Add Article" msgstr "" -#: ../../include/selectors.php:134 -msgid "Infatuated" +#: ../../Zotlabs/Module/Articles.php:225 ../../Zotlabs/Lib/Apps.php:325 +#: ../../include/nav.php:512 +msgid "Articles" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Dating" +#: ../../Zotlabs/Module/Setup.php:169 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../include/selectors.php:134 -msgid "Unfaithful" +#: ../../Zotlabs/Module/Setup.php:173 +msgid "Could not connect to database." msgstr "" -#: ../../include/selectors.php:134 -msgid "Sex Addict" +#: ../../Zotlabs/Module/Setup.php:177 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../include/selectors.php:134 ../../include/channel.php:506 -#: ../../include/channel.php:509 ../../Zotlabs/Widget/Affinity.php:32 -#: ../../Zotlabs/Module/Settings/Channel.php:71 -#: ../../Zotlabs/Module/Settings/Channel.php:75 -#: ../../Zotlabs/Module/Settings/Channel.php:76 -#: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:90 -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Friends" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "Could not create table." msgstr "" -#: ../../include/selectors.php:134 -msgid "Friends/Benefits" +#: ../../Zotlabs/Module/Setup.php:190 +msgid "Your site database has been installed." msgstr "" -#: ../../include/selectors.php:134 -msgid "Casual" +#: ../../Zotlabs/Module/Setup.php:196 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../include/selectors.php:134 -msgid "Engaged" +#: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:768 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Married" +#: ../../Zotlabs/Module/Setup.php:258 +msgid "System check" msgstr "" -#: ../../include/selectors.php:134 -msgid "Imaginarily married" +#: ../../Zotlabs/Module/Setup.php:263 +msgid "Check again" msgstr "" -#: ../../include/selectors.php:134 -msgid "Partners" +#: ../../Zotlabs/Module/Setup.php:284 +msgid "Database connection" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Cohabiting" +#: ../../Zotlabs/Module/Setup.php:285 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../include/selectors.php:134 -msgid "Common law" +#: ../../Zotlabs/Module/Setup.php:286 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../include/selectors.php:134 -msgid "Happy" +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../include/selectors.php:134 -msgid "Not looking" +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Database Server Name" msgstr "" -#: ../../include/selectors.php:134 -msgid "Swinger" +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../include/selectors.php:134 -msgid "Betrayed" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "Database Port" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Separated" +#: ../../Zotlabs/Module/Setup.php:292 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../include/selectors.php:134 -msgid "Unstable" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Login Name" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Divorced" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Login Password" msgstr "" -#: ../../include/selectors.php:134 -msgid "Imaginarily divorced" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Name" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "Widowed" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Type" msgstr "" -#: ../../include/selectors.php:134 -msgid "Uncertain" +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 +msgid "Site administrator email address" msgstr "" -#: ../../include/selectors.php:134 ../../include/selectors.php:151 -msgid "It's complicated" +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../include/selectors.php:134 -msgid "Don't care" +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 +msgid "Website URL" msgstr "" -#: ../../include/selectors.php:134 -msgid "Ask me" +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../include/connections.php:134 -msgid "New window" +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../include/connections.php:135 -msgid "Open the selected location in a different window or browser tab" +#: ../../Zotlabs/Module/Setup.php:327 +msgid "Site settings" msgstr "" -#: ../../include/group.php:23 ../../Zotlabs/Lib/Group.php:28 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../Zotlabs/Module/Setup.php:381 +msgid "PHP version 7.1 or greater is required." msgstr "" -#: ../../include/group.php:271 ../../Zotlabs/Lib/Group.php:270 -msgid "Add new connections to this privacy group" +#: ../../Zotlabs/Module/Setup.php:382 +msgid "PHP version" msgstr "" -#: ../../include/group.php:305 ../../Zotlabs/Lib/AccessList.php:311 -#: ../../Zotlabs/Lib/Group.php:302 -msgid "edit" +#: ../../Zotlabs/Module/Setup.php:398 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../include/group.php:328 ../../Zotlabs/Lib/Group.php:325 -msgid "Edit group" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../include/group.php:329 ../../Zotlabs/Lib/Group.php:326 -msgid "Add privacy group" +#: ../../Zotlabs/Module/Setup.php:403 +msgid "PHP executable path" msgstr "" -#: ../../include/group.php:330 ../../Zotlabs/Lib/Group.php:327 -msgid "Channels not in any privacy group" +#: ../../Zotlabs/Module/Setup.php:403 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:84 -#: ../../Zotlabs/Lib/AccessList.php:336 ../../Zotlabs/Lib/Group.php:329 -msgid "add" +#: ../../Zotlabs/Module/Setup.php:408 +msgid "Command line PHP" msgstr "" -#: ../../include/taxonomy.php:323 -msgid "Trending" +#: ../../Zotlabs/Module/Setup.php:418 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." msgstr "" -#: ../../include/taxonomy.php:323 ../../include/taxonomy.php:460 -#: ../../include/taxonomy.php:481 ../../Zotlabs/Widget/Tagcloud.php:22 -msgid "Tags" +#: ../../Zotlabs/Module/Setup.php:422 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../include/taxonomy.php:561 -msgid "Keywords" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "This is required for message delivery to work." msgstr "" -#: ../../include/taxonomy.php:582 -msgid "have" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "PHP register_argc_argv" msgstr "" -#: ../../include/taxonomy.php:582 -msgid "has" +#: ../../Zotlabs/Module/Setup.php:446 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." msgstr "" -#: ../../include/taxonomy.php:583 -msgid "want" +#: ../../Zotlabs/Module/Setup.php:448 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../include/taxonomy.php:583 -msgid "wants" +#: ../../Zotlabs/Module/Setup.php:454 +msgid "You can adjust these settings in the server php.ini file." msgstr "" -#: ../../include/taxonomy.php:584 ../../Zotlabs/Lib/ThreadItem.php:318 -msgid "like" +#: ../../Zotlabs/Module/Setup.php:456 +msgid "PHP upload limits" msgstr "" -#: ../../include/taxonomy.php:584 -msgid "likes" +#: ../../Zotlabs/Module/Setup.php:479 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../include/taxonomy.php:585 ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "dislike" +#: ../../Zotlabs/Module/Setup.php:480 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../include/taxonomy.php:585 -msgid "dislikes" +#: ../../Zotlabs/Module/Setup.php:483 +msgid "Generate encryption keys" msgstr "" -#: ../../include/items.php:1037 ../../include/items.php:1097 -msgid "(Unknown)" +#: ../../Zotlabs/Module/Setup.php:500 +msgid "libCurl PHP module" msgstr "" -#: ../../include/items.php:1301 -msgid "Visible to anybody on the internet." +#: ../../Zotlabs/Module/Setup.php:501 +msgid "GD graphics PHP module" msgstr "" -#: ../../include/items.php:1303 -msgid "Visible to you only." +#: ../../Zotlabs/Module/Setup.php:502 +msgid "OpenSSL PHP module" msgstr "" -#: ../../include/items.php:1305 -msgid "Visible to anybody in this network." +#: ../../Zotlabs/Module/Setup.php:503 +msgid "PDO database PHP module" msgstr "" -#: ../../include/items.php:1307 -msgid "Visible to anybody authenticated." +#: ../../Zotlabs/Module/Setup.php:504 +msgid "mb_string PHP module" msgstr "" -#: ../../include/items.php:1309 -#, php-format -msgid "Visible to anybody on %s." +#: ../../Zotlabs/Module/Setup.php:505 +msgid "xml PHP module" msgstr "" -#: ../../include/items.php:1311 -msgid "Visible to all connections." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "zip PHP module" msgstr "" -#: ../../include/items.php:1313 -msgid "Visible to approved connections." +#: ../../Zotlabs/Module/Setup.php:510 ../../Zotlabs/Module/Setup.php:512 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../include/items.php:1315 -msgid "Visible to specific connections." +#: ../../Zotlabs/Module/Setup.php:510 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../include/items.php:4584 ../../Zotlabs/Module/Group.php:62 -#: ../../Zotlabs/Module/Group.php:214 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 +msgid "exec" msgstr "" -#: ../../include/items.php:4600 -msgid "Privacy group is empty." +#: ../../Zotlabs/Module/Setup.php:516 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" msgstr "" -#: ../../include/items.php:4607 -#, php-format -msgid "Privacy group: %s" +#: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 +msgid "shell_exec" msgstr "" -#: ../../include/items.php:4617 ../../Zotlabs/Module/Connedit.php:860 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Setup.php:522 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../include/items.php:4619 -msgid "Connection not found." +#: ../../Zotlabs/Module/Setup.php:530 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../include/items.php:4965 ../../Zotlabs/Module/Cover_photo.php:297 -msgid "female" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." msgstr "" -#: ../../include/items.php:4966 ../../Zotlabs/Module/Cover_photo.php:298 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../include/items.php:4967 ../../Zotlabs/Module/Cover_photo.php:299 -msgid "male" +#: ../../Zotlabs/Module/Setup.php:544 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "" -#: ../../include/items.php:4968 ../../Zotlabs/Module/Cover_photo.php:300 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Setup.php:549 +msgid "Error: PDO database PHP module required but not installed." msgstr "" -#: ../../include/items.php:4970 ../../Zotlabs/Module/Cover_photo.php:302 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Setup.php:553 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../include/items.php:4972 -msgid "profile photo" +#: ../../Zotlabs/Module/Setup.php:557 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../include/items.php:5164 -#, php-format -msgid "[Edited %s]" +#: ../../Zotlabs/Module/Setup.php:561 +msgid "Error: zip PHP module required but not installed." msgstr "" -#: ../../include/items.php:5164 -msgctxt "edit_activity" -msgid "Post" +#: ../../Zotlabs/Module/Setup.php:580 ../../Zotlabs/Module/Setup.php:589 +msgid ".htconfig.php is writable" msgstr "" -#: ../../include/items.php:5164 -msgctxt "edit_activity" -msgid "Comment" +#: ../../Zotlabs/Module/Setup.php:585 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../include/account.php:38 -msgid "The provided email address is not valid" +#: ../../Zotlabs/Module/Setup.php:586 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../include/account.php:41 -msgid "The provided email domain is not among those allowed on this site" +#: ../../Zotlabs/Module/Setup.php:587 +msgid "Please see install/INSTALL.txt for additional information." msgstr "" -#: ../../include/account.php:48 -msgid "The provided email address is already registered at this site" +#: ../../Zotlabs/Module/Setup.php:603 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." msgstr "" -#: ../../include/account.php:55 +#: ../../Zotlabs/Module/Setup.php:604 +#, php-format msgid "" -"There is a pending registration for this address - click \"Register\" to " -"continue verification" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../include/account.php:94 -msgid "An invitation is required." +#: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../include/account.php:103 -msgid "Invitation could not be verified." +#: ../../Zotlabs/Module/Setup.php:606 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../include/account.php:191 -msgid "Please enter the required information." +#: ../../Zotlabs/Module/Setup.php:609 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../include/account.php:258 ../../include/account.php:366 -msgid "Failed to store account information." +#: ../../Zotlabs/Module/Setup.php:625 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" msgstr "" -#: ../../include/account.php:435 ../../include/account.php:503 -#: ../../Zotlabs/Module/Register.php:328 -#, php-format -msgid "Registration confirmation for %s" +#: ../../Zotlabs/Module/Setup.php:629 +msgid "store is writable" msgstr "" -#: ../../include/account.php:578 -#, php-format -msgid "Registration request at %s" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../include/account.php:600 -msgid "your registration password" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../include/account.php:606 ../../include/account.php:695 -#, php-format -msgid "Registration details for %s" +#: ../../Zotlabs/Module/Setup.php:663 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../include/account.php:706 -msgid "Account approved." +#: ../../Zotlabs/Module/Setup.php:664 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../include/account.php:762 -#, php-format -msgid "Registration revoked for %s" +#: ../../Zotlabs/Module/Setup.php:665 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../include/account.php:769 -#, php-format -msgid "Could not revoke registration for %s" +#: ../../Zotlabs/Module/Setup.php:666 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../include/account.php:1185 ../../include/account.php:1187 -msgid "Click here to upgrade." +#: ../../Zotlabs/Module/Setup.php:667 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../include/account.php:1193 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../Zotlabs/Module/Setup.php:669 +msgid "SSL certificate validation" msgstr "" -#: ../../include/account.php:1198 -msgid "This action is not available under your subscription plan." +#: ../../Zotlabs/Module/Setup.php:675 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../include/account.php:1258 -msgid "open" +#: ../../Zotlabs/Module/Setup.php:678 +msgid "Url rewrite is working" msgstr "" -#: ../../include/account.php:1258 -msgid "closed" +#: ../../Zotlabs/Module/Setup.php:691 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../include/account.php:1265 -msgid "Registration is currently" +#: ../../Zotlabs/Module/Setup.php:720 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../include/account.php:1274 -msgid "please come back" +#: ../../Zotlabs/Module/Setup.php:766 +msgid "

What next?

" msgstr "" -#: ../../include/photo/photo_driver.php:435 -#: ../../Zotlabs/Module/Profile_photo.php:147 -#: ../../Zotlabs/Module/Profile_photo.php:284 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Setup.php:767 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../include/attach.php:273 ../../include/attach.php:324 -#: ../../include/attach.php:419 -msgid "Item was not found." +#: ../../Zotlabs/Module/Directory.php:122 +msgid "No default suggestions were found." msgstr "" -#: ../../include/attach.php:290 -msgid "Unknown error." -msgstr "" +#: ../../Zotlabs/Module/Directory.php:282 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" -#: ../../include/attach.php:612 -msgid "No source file." +#: ../../Zotlabs/Module/Directory.php:293 +msgid "Gender: " msgstr "" -#: ../../include/attach.php:634 -msgid "Cannot locate file to replace" +#: ../../Zotlabs/Module/Directory.php:295 +msgid "Status: " msgstr "" -#: ../../include/attach.php:653 -msgid "Cannot locate file to revise/update" +#: ../../Zotlabs/Module/Directory.php:297 +msgid "Homepage: " msgstr "" -#: ../../include/attach.php:795 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../Zotlabs/Module/Directory.php:349 ../../include/channel.php:1834 +msgid "Age:" msgstr "" -#: ../../include/attach.php:816 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../Zotlabs/Module/Directory.php:354 ../../include/channel.php:1661 +#: ../../include/event.php:63 ../../include/event.php:134 +msgid "Location:" msgstr "" -#: ../../include/attach.php:1004 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../Zotlabs/Module/Directory.php:360 +msgid "Description:" msgstr "" -#: ../../include/attach.php:1033 -msgid "Stored file could not be verified. Upload failed." +#: ../../Zotlabs/Module/Directory.php:367 ../../include/channel.php:1863 +msgid "Hometown:" msgstr "" -#: ../../include/attach.php:1105 ../../include/attach.php:1121 -msgid "Path not available." +#: ../../Zotlabs/Module/Directory.php:369 ../../include/channel.php:1869 +msgid "About:" msgstr "" -#: ../../include/attach.php:1169 ../../include/attach.php:1332 -msgid "Empty pathname" +#: ../../Zotlabs/Module/Directory.php:371 +msgid "Public Forum:" msgstr "" -#: ../../include/attach.php:1195 -msgid "duplicate filename or path" +#: ../../Zotlabs/Module/Directory.php:374 +msgid "Keywords: " msgstr "" -#: ../../include/attach.php:1220 -msgid "Path not found." +#: ../../Zotlabs/Module/Directory.php:377 +msgid "Don't suggest" msgstr "" -#: ../../include/attach.php:1288 -msgid "mkdir failed." +#: ../../Zotlabs/Module/Directory.php:379 +msgid "Common connections (estimated):" msgstr "" -#: ../../include/attach.php:1292 -msgid "database storage failed." +#: ../../Zotlabs/Module/Directory.php:428 +msgid "Global Directory" msgstr "" -#: ../../include/attach.php:1338 -msgid "Empty path" +#: ../../Zotlabs/Module/Directory.php:428 +msgid "Local Directory" msgstr "" -#: ../../include/attach.php:2099 -#, php-format -msgid "%s shared a %s with you" +#: ../../Zotlabs/Module/Directory.php:434 +msgid "Finding:" msgstr "" -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" +#: ../../Zotlabs/Module/Directory.php:439 +msgid "next page" msgstr "" -#: ../../include/menu.php:120 ../../include/channel.php:1563 -#: ../../include/channel.php:1567 ../../Zotlabs/Widget/Cdav.php:138 -#: ../../Zotlabs/Widget/Cdav.php:175 ../../Zotlabs/Module/Article_edit.php:98 -#: ../../Zotlabs/Module/Group.php:253 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:255 -#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Connections.php:321 -#: ../../Zotlabs/Module/Connections.php:363 -#: ../../Zotlabs/Module/Connections.php:383 ../../Zotlabs/Module/Menu.php:176 -#: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:557 -#: ../../Zotlabs/Lib/ThreadItem.php:149 -msgid "Edit" +#: ../../Zotlabs/Module/Directory.php:439 +msgid "previous page" msgstr "" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:928 -#: ../../include/bbcode.php:1525 ../../include/bbcode.php:1533 -msgid "Image/photo" +#: ../../Zotlabs/Module/Directory.php:440 +msgid "Sort options" msgstr "" -#: ../../include/bbcode.php:280 ../../include/bbcode.php:1550 -msgid "Encrypted content" +#: ../../Zotlabs/Module/Directory.php:441 +msgid "Alphabetic" msgstr "" -#: ../../include/bbcode.php:334 -#, php-format -msgid "Install %1$s element %2$s" +#: ../../Zotlabs/Module/Directory.php:442 +msgid "Reverse Alphabetic" msgstr "" -#: ../../include/bbcode.php:338 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +#: ../../Zotlabs/Module/Directory.php:443 +msgid "Newest to Oldest" msgstr "" -#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:43 -msgid "webpage" +#: ../../Zotlabs/Module/Directory.php:444 +msgid "Oldest to Newest" msgstr "" -#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:53 -msgid "layout" +#: ../../Zotlabs/Module/Directory.php:461 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:48 -msgid "block" +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209 +msgid "Menu not found." msgstr "" -#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:60 -msgid "menu" +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." msgstr "" -#: ../../include/bbcode.php:551 -msgid "card" +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." msgstr "" -#: ../../include/bbcode.php:553 -msgid "article" +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." msgstr "" -#: ../../include/bbcode.php:559 ../../include/markdown.php:202 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" msgstr "" -#: ../../include/bbcode.php:636 ../../include/bbcode.php:644 -msgid "Click to open/close" +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "(click to open/close)" msgstr "" -#: ../../include/bbcode.php:644 ../../include/markdown.php:255 -msgid "spoiler" +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" msgstr "" -#: ../../include/bbcode.php:657 -msgid "View article" +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" msgstr "" -#: ../../include/bbcode.php:657 -msgid "View summary" +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../include/bbcode.php:1050 ../../include/bbcode.php:1217 -#: ../../Zotlabs/Lib/NativeWikiPage.php:618 -msgid "Different viewers will see this text differently" +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" msgstr "" -#: ../../include/bbcode.php:1501 -msgid "$1 wrote:" +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" msgstr "" -#: ../../include/channel.php:47 -msgid "Unable to obtain identity information from database" +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" msgstr "" -#: ../../include/channel.php:80 -msgid "Empty name" +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../include/channel.php:83 -msgid "Name too long" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" msgstr "" -#: ../../include/channel.php:200 -msgid "No account identifier" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" msgstr "" -#: ../../include/channel.php:212 ../../Zotlabs/Module/Register.php:95 -msgid "Nickname is required." +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" msgstr "" -#: ../../include/channel.php:226 ../../include/channel.php:706 -#: ../../Zotlabs/Module/Register.php:100 ../../Zotlabs/Module/Changeaddr.php:46 -msgid "Reserved nickname. Please choose another." +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" msgstr "" -#: ../../include/channel.php:231 ../../include/channel.php:711 -#: ../../Zotlabs/Module/Register.php:105 ../../Zotlabs/Module/Changeaddr.php:51 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" msgstr "" -#: ../../include/channel.php:295 -msgid "Unable to retrieve created identity" +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" msgstr "" -#: ../../include/channel.php:442 -msgid "Default Profile" +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" msgstr "" -#: ../../include/channel.php:639 ../../include/channel.php:728 -msgid "Unable to retrieve modified identity" +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" msgstr "" -#: ../../include/channel.php:1410 -msgid "Requested channel is not available." +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" msgstr "" -#: ../../include/channel.php:1556 ../../Zotlabs/Module/Profiles.php:730 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" msgstr "" -#: ../../include/channel.php:1564 -msgid "Create New Profile" +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" msgstr "" -#: ../../include/channel.php:1582 ../../Zotlabs/Module/Profiles.php:822 -msgid "Profile Image" +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" msgstr "" -#: ../../include/channel.php:1585 -msgid "Visible to everybody" +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." msgstr "" -#: ../../include/channel.php:1586 ../../Zotlabs/Module/Profiles.php:727 -#: ../../Zotlabs/Module/Profiles.php:826 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." msgstr "" -#: ../../include/channel.php:1662 ../../include/channel.php:1790 -msgid "Gender:" +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." msgstr "" -#: ../../include/channel.php:1663 ../../include/channel.php:1834 -msgid "Status:" +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" msgstr "" -#: ../../include/channel.php:1664 ../../include/channel.php:1858 -msgid "Homepage:" +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" msgstr "" -#: ../../include/channel.php:1665 -msgid "Online Now" +#: ../../Zotlabs/Module/Mood.php:76 ../../include/conversation.php:286 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/channel.php:1718 -msgid "Change your profile photo" +#: ../../Zotlabs/Module/Mood.php:134 +msgid "Mood App" msgstr "" -#: ../../include/channel.php:1749 -msgid "Trans" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../include/channel.php:1788 ../../Zotlabs/Module/Settings/Channel.php:501 -msgid "Full Name:" +#: ../../Zotlabs/Module/Mood.php:154 ../../Zotlabs/Lib/Apps.php:350 +msgid "Mood" msgstr "" -#: ../../include/channel.php:1795 -msgid "Like this channel" +#: ../../Zotlabs/Module/Permcats.php:29 +msgid "Permission category name is required." msgstr "" -#: ../../include/channel.php:1819 -msgid "j F, Y" +#: ../../Zotlabs/Module/Permcats.php:48 +msgid "Permission category saved." msgstr "" -#: ../../include/channel.php:1820 -msgid "j F" +#: ../../Zotlabs/Module/Permcats.php:63 +msgid "Permission Categories App" msgstr "" -#: ../../include/channel.php:1827 -msgid "Birthday:" +#: ../../Zotlabs/Module/Permcats.php:64 +msgid "Create custom connection permission limits" msgstr "" -#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:349 -msgid "Age:" +#: ../../Zotlabs/Module/Permcats.php:80 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." msgstr "" -#: ../../include/channel.php:1840 -#, php-format -msgid "for %1$d %2$s" +#: ../../Zotlabs/Module/Permcats.php:113 ../../Zotlabs/Lib/Apps.php:374 +msgid "Permission Categories" msgstr "" -#: ../../include/channel.php:1852 -msgid "Tags:" +#: ../../Zotlabs/Module/Permcats.php:121 +msgid "Permission category name" msgstr "" -#: ../../include/channel.php:1856 -msgid "Sexual Preference:" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../include/channel.php:1860 ../../Zotlabs/Module/Directory.php:367 -msgid "Hometown:" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../include/channel.php:1862 -msgid "Political Views:" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../include/channel.php:1864 -msgid "Religion:" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../include/channel.php:1866 ../../Zotlabs/Module/Directory.php:369 -msgid "About:" +#: ../../Zotlabs/Module/Register.php:95 ../../include/channel.php:212 +msgid "Nickname is required." msgstr "" -#: ../../include/channel.php:1868 -msgid "Hobbies/Interests:" +#: ../../Zotlabs/Module/Register.php:112 +msgid "Email address required" msgstr "" -#: ../../include/channel.php:1870 -msgid "Likes:" +#: ../../Zotlabs/Module/Register.php:156 +msgid "No password provided" msgstr "" -#: ../../include/channel.php:1872 -msgid "Dislikes:" +#: ../../Zotlabs/Module/Register.php:161 ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/channel.php:1874 -msgid "Contact information and Social Networks:" +#: ../../Zotlabs/Module/Register.php:179 +msgid "Terms of Service not accepted" msgstr "" -#: ../../include/channel.php:1876 -msgid "My other channels:" +#: ../../Zotlabs/Module/Register.php:241 +msgid "Invitation code succesfully applied" msgstr "" -#: ../../include/channel.php:1878 -msgid "Musical interests:" +#: ../../Zotlabs/Module/Register.php:261 +msgid "Invitation not in time or too late" msgstr "" -#: ../../include/channel.php:1880 -msgid "Books, literature:" +#: ../../Zotlabs/Module/Register.php:267 +msgid "Invitation email failed" msgstr "" -#: ../../include/channel.php:1882 -msgid "Television:" +#: ../../Zotlabs/Module/Register.php:275 +msgid "Invitation code failed" msgstr "" -#: ../../include/channel.php:1884 -msgid "Film/dance/culture/entertainment:" +#: ../../Zotlabs/Module/Register.php:282 +msgid "Invitations are not available" msgstr "" -#: ../../include/channel.php:1886 -msgid "Love/Romance:" +#: ../../Zotlabs/Module/Register.php:292 +msgid "Registration on this hub is by invitation only" msgstr "" -#: ../../include/channel.php:1888 -msgid "Work/employment:" +#: ../../Zotlabs/Module/Register.php:328 ../../include/account.php:435 +#: ../../include/account.php:503 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/channel.php:1890 -msgid "School/education:" +#: ../../Zotlabs/Module/Register.php:399 +msgid "New register request" msgstr "" -#: ../../include/channel.php:1911 ../../Zotlabs/Module/Profperm.php:113 -#: ../../Zotlabs/Lib/Apps.php:362 -msgid "Profile" +#: ../../Zotlabs/Module/Register.php:417 +msgid "Error creating dId A" msgstr "" -#: ../../include/channel.php:1913 -msgid "Like this thing" +#: ../../Zotlabs/Module/Register.php:435 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../include/channel.php:1914 ../../Zotlabs/Module/Events.php:699 -msgid "Export" +#: ../../Zotlabs/Module/Register.php:444 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../include/channel.php:2353 ../../Zotlabs/Module/Cover_photo.php:304 -msgid "cover photo" +#: ../../Zotlabs/Module/Register.php:445 +msgid "Register at another affiliated hub in case when prefered" msgstr "" -#: ../../include/channel.php:2622 ../../Zotlabs/Module/Rmagic.php:96 -#: ../../boot.php:1717 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Register.php:458 +msgid "Registration on this hub is by invitation only." msgstr "" -#: ../../include/channel.php:2623 ../../Zotlabs/Module/Rmagic.php:97 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Register.php:459 +msgid "Register at another affiliated hub" msgstr "" -#: ../../include/channel.php:2624 ../../Zotlabs/Module/Rmagic.php:98 -msgid "Authenticate" +#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Terms of Service" msgstr "" -#: ../../include/channel.php:2782 ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Register.php:479 #, php-format -msgid "Account '%s' deleted" +msgid "I accept the %s for this website" msgstr "" -#: ../../include/acl_selectors.php:33 -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -msgid "Visible to your default audience" +#: ../../Zotlabs/Module/Register.php:486 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" msgstr "" -#: ../../include/acl_selectors.php:100 -msgid "Profile-Based Privacy Groups" +#: ../../Zotlabs/Module/Register.php:496 +msgid "Your email address" msgstr "" -#: ../../include/acl_selectors.php:119 -msgid "Private Forum" +#: ../../Zotlabs/Module/Register.php:503 +msgid "Choose a password" msgstr "" -#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:123 -#: ../../Zotlabs/Widget/Notifications.php:139 -#: ../../Zotlabs/Widget/Notifications.php:140 -msgid "Forums" +#: ../../Zotlabs/Module/Register.php:504 +msgid "Please re-enter your password" msgstr "" -#: ../../include/acl_selectors.php:136 -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Only me" +#: ../../Zotlabs/Module/Register.php:506 +msgid "Please enter your invitation code" msgstr "" -#: ../../include/acl_selectors.php:143 -msgid "Share with" +#: ../../Zotlabs/Module/Register.php:508 +msgid "Your name" msgstr "" -#: ../../include/acl_selectors.php:144 -msgid "Custom selection" +#: ../../Zotlabs/Module/Register.php:508 +msgid "Real name is preferred" msgstr "" -#: ../../include/acl_selectors.php:146 +#: ../../Zotlabs/Module/Register.php:510 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " -"limit the scope of \"Allow\"." -msgstr "" - -#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 -msgid "Allow" +"Your nickname will be used to create an easy to remember channel address" msgstr "" -#: ../../include/acl_selectors.php:148 -msgid "Don't allow" +#: ../../Zotlabs/Module/Register.php:514 +msgid "Why do you want to join this hub?" msgstr "" -#: ../../include/acl_selectors.php:181 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." +#: ../../Zotlabs/Module/Register.php:514 +msgid "This will help to review your registration" msgstr "" -#: ../../include/oembed.php:153 -msgid "View PDF" +#: ../../Zotlabs/Module/Register.php:528 +msgid "I have an invite code" msgstr "" -#: ../../include/oembed.php:365 -msgid " by " +#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 +#: ../../boot.php:1696 +msgid "Register" msgstr "" -#: ../../include/oembed.php:366 -msgid " on " +#: ../../Zotlabs/Module/Register.php:575 +msgid "" +"This site has exceeded the number of allowed daily account registrations." msgstr "" -#: ../../include/oembed.php:395 -msgid "Embedded content" +#: ../../Zotlabs/Module/Acl.php:123 ../../Zotlabs/Module/Lockview.php:117 +#: ../../Zotlabs/Module/Lockview.php:153 +msgctxt "acl" +msgid "Profile" msgstr "" -#: ../../include/oembed.php:404 -msgid "Embedding disabled" +#: ../../Zotlabs/Module/Acl.php:370 +msgid "network" msgstr "" -#: ../../include/dir_fns.php:142 ../../Zotlabs/Lib/Libzotdir.php:163 -msgid "Directory Options" +#: ../../Zotlabs/Module/Settings/Featured.php:25 +msgid "No feature settings configured" msgstr "" -#: ../../include/dir_fns.php:144 ../../Zotlabs/Lib/Libzotdir.php:165 -msgid "Safe Mode" +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "Addon Settings" msgstr "" -#: ../../include/dir_fns.php:145 ../../Zotlabs/Lib/Libzotdir.php:166 -msgid "Public Forums Only" +#: ../../Zotlabs/Module/Settings/Featured.php:35 +msgid "Please save/submit changes to any panel before opening another." msgstr "" -#: ../../include/dir_fns.php:146 ../../Zotlabs/Lib/Libzotdir.php:168 -msgid "This Website Only" +#: ../../Zotlabs/Module/Settings/Account.php:21 +msgid "Not valid email." msgstr "" -#: ../../include/zid.php:360 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" +#: ../../Zotlabs/Module/Settings/Account.php:24 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../include/message.php:41 -msgid "Unable to determine sender." +#: ../../Zotlabs/Module/Settings/Account.php:33 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../include/message.php:80 -msgid "No recipient provided." +#: ../../Zotlabs/Module/Settings/Account.php:51 +msgid "Password verification failed." msgstr "" -#: ../../include/message.php:85 -msgid "[no subject]" +#: ../../Zotlabs/Module/Settings/Account.php:58 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../include/message.php:214 -msgid "Stored post could not be verified." +#: ../../Zotlabs/Module/Settings/Account.php:62 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:90 -msgid "Commented Date" +#: ../../Zotlabs/Module/Settings/Account.php:76 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:94 -msgid "Order by last commented date" +#: ../../Zotlabs/Module/Settings/Account.php:78 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:97 -msgid "Posted Date" +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:101 -msgid "Order by last posted date" +#: ../../Zotlabs/Module/Settings/Account.php:104 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:104 -msgid "Date Unthreaded" +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:108 -msgid "Order unthreaded by date" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Widget/Activity_order.php:123 -msgid "Stream Order" +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:34 -#: ../../Zotlabs/Widget/Wiki_pages.php:91 -msgid "Add new page" +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:41 -#: ../../Zotlabs/Widget/Wiki_pages.php:98 ../../Zotlabs/Module/Dreport.php:166 -msgid "Options" +#: ../../Zotlabs/Module/Settings/Events.php:40 +msgid "Events Settings" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:85 -msgid "Wiki Pages" +#: ../../Zotlabs/Module/Settings/Profiles.php:49 +msgid "Profiles Settings" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Page name" +#: ../../Zotlabs/Module/Settings/Editor.php:40 +msgid "Editor Settings" msgstr "" -#: ../../Zotlabs/Widget/Album.php:78 ../../Zotlabs/Widget/Portfolio.php:87 -#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Module/Photos.php:787 -#: ../../Zotlabs/Module/Photos.php:1333 -msgid "View Photo" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Module/Embedphotos.php:187 ../../Zotlabs/Module/Photos.php:818 -msgid "Edit Album" +#: ../../Zotlabs/Module/Settings/Manage.php:41 +msgid "Channel Manager Settings" msgstr "" -#: ../../Zotlabs/Widget/Album.php:97 ../../Zotlabs/Widget/Cdav.php:146 -#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Module/Embedphotos.php:189 -#: ../../Zotlabs/Module/Profile_photo.php:500 -#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Photos.php:688 -#: ../../Zotlabs/Storage/Browser.php:540 -msgid "Upload" +#: ../../Zotlabs/Module/Settings/Display.php:127 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" +#: ../../Zotlabs/Module/Settings/Display.php:183 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Widget/Pubsites.php:12 ../../Zotlabs/Module/Pubsites.php:25 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Settings/Display.php:184 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" +#: ../../Zotlabs/Module/Settings/Display.php:185 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" +#: ../../Zotlabs/Module/Settings/Display.php:186 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:70 ../../Zotlabs/Lib/ThreadItem.php:206 -msgid "I will attend" +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:70 ../../Zotlabs/Lib/ThreadItem.php:206 -msgid "I will not attend" +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:70 ../../Zotlabs/Lib/ThreadItem.php:206 -msgid "I might attend" +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:81 ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "I agree" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:81 ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "I disagree" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Maximum of 30 items" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:81 ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "I abstain" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:99 ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "Share This" +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Provide channel menu in navigation bar" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:99 ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "share" +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Default: channel menu located in app menu" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:122 ../../Zotlabs/Widget/Pinned.php:123 -#, php-format -msgid "View %s's profile - %s" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:127 ../../Zotlabs/Lib/ThreadItem.php:414 -msgid "via" +#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Widget/Newmember.php:75 +msgid "New Member Links" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:141 ../../Zotlabs/Lib/ThreadItem.php:445 -msgid "Attendance Options" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Display new member quick links menu" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:142 ../../Zotlabs/Lib/ThreadItem.php:447 -msgid "Voting Options" +#: ../../Zotlabs/Module/Settings/Photos.php:40 +msgid "Photos Settings" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:154 ../../Zotlabs/Lib/ThreadItem.php:471 -msgid "Pinned post" +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Widget/Pinned.php:156 -msgid "Don't show" +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Channel Calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:335 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:129 ../../Zotlabs/Widget/Cdav.php:143 -#: ../../Zotlabs/Module/Cdav.php:1056 -msgid "CalDAV Calendars" +#: ../../Zotlabs/Module/Settings/Channel.php:336 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Shared CalDAV Calendars" +#: ../../Zotlabs/Module/Settings/Channel.php:411 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:135 -msgid "Share this calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:416 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:137 -msgid "Calendar name and color" +#: ../../Zotlabs/Module/Settings/Channel.php:429 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:139 -msgid "Create new CalDAV calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:432 +msgid "Your files/photos are accessible via WebDAV at" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 -#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1388 -#: ../../Zotlabs/Module/Webpages.php:254 -#: ../../Zotlabs/Module/New_channel.php:189 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Profiles.php:800 ../../Zotlabs/Module/Menu.php:182 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Layouts.php:185 -#: ../../Zotlabs/Storage/Browser.php:365 ../../Zotlabs/Storage/Browser.php:538 -msgid "Create" +#: ../../Zotlabs/Module/Settings/Channel.php:472 +msgid "Automatic membership approval" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:141 -msgid "Calendar Name" +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:142 -msgid "Calendar Tools" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1056 -msgid "Channel Calendars" +#: ../../Zotlabs/Module/Settings/Channel.php:501 ../../include/channel.php:1791 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:144 -msgid "Import calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:145 -msgid "Select a calendar to import to" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:172 -msgid "Addressbooks" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:174 -msgid "Addressbook name" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:176 -msgid "Create new addressbook" +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:177 -msgid "Addressbook Name" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:179 -msgid "Addressbook Tools" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:180 -msgid "Import addressbook" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Widget/Cdav.php:181 -msgid "Select an addressbook to import to" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:32 -msgid "Account settings" +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:38 -msgid "Channel settings" +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:46 -msgid "Display settings" +#: ../../Zotlabs/Module/Settings/Channel.php:517 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:53 -msgid "Manage locations" +#: ../../Zotlabs/Module/Settings/Channel.php:518 +msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:48 ../../Zotlabs/Module/Suggest.php:73 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:53 -msgid "Suggestions" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:54 -msgid "See more..." +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -#: ../../Zotlabs/Lib/NativeWikiPage.php:577 -msgctxt "wiki_history" -msgid "Message" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Widget/Wiki_page_history.php:24 -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -msgid "Date" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Widget/Wiki_page_history.php:25 -#: ../../Zotlabs/Module/Wiki.php:366 ../../Zotlabs/Lib/NativeWikiPage.php:579 -msgid "Revert" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Widget/Wiki_page_history.php:26 -#: ../../Zotlabs/Lib/NativeWikiPage.php:580 -msgid "Compare" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Default Privacy Group" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" +#: ../../Zotlabs/Module/Settings/Channel.php:538 +msgid "Default permissions category" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" +#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:411 -msgid "Site" +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:23 -#: ../../Zotlabs/Module/Admin/Accounts.php:308 -#: ../../Zotlabs/Module/Admin/Accounts.php:327 -#: ../../Zotlabs/Module/Admin.php:96 -msgid "Accounts" +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:24 -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:117 -msgid "Channels" +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Security" +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:26 ../../Zotlabs/Lib/Apps.php:358 -msgid "Features" +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Addons.php:441 -msgid "Addons" +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 -msgid "Themes" +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Profs.php:168 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:48 ../../Zotlabs/Widget/Admin.php:58 -#: ../../Zotlabs/Module/Admin/Logs.php:83 -msgid "Logs" +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:37 -msgid "Direct Messages" +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "Someone likes your post/comment" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:41 -msgid "Show direct (private) messages" +#: ../../Zotlabs/Module/Settings/Channel.php:565 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:46 -msgid "Events" +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Unseen stream activity" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:50 -msgid "Show posts that include events" +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:56 -msgid "Polls" +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:60 -msgid "Show posts that include polls" +#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:83 -#, php-format -msgid "Show posts related to the %s privacy group" +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:92 -msgid "Show my privacy groups" +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:116 -msgid "Show posts to this forum" +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:127 -msgid "Show forums" +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:141 -msgid "Starred Posts" +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:145 -msgid "Show posts that I have starred" +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:156 -msgid "Personal Posts" +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:160 -msgid "Show posts that mention or involve me" +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:183 -#, php-format -msgid "Show posts that I have filed to %s" +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:193 -msgid "Show filed post categories" +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Unseen shared files" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:207 -msgid "Panel search" +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Unseen public stream activity" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:217 -msgid "Filter by name" +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Unseen likes and dislikes" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:232 -msgid "Remove active filter" +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Unseen forum posts" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:248 -msgid "Stream Filters" +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Email notification hub (hostname)" msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" +#: ../../Zotlabs/Module/Settings/Channel.php:582 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Installed apps" +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Widget/Appstore.php:14 ../../Zotlabs/Module/Apps.php:50 -msgid "Available Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:590 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" +#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Widget/Cover_photo.php:65 -msgid "Click to show more" +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" +#: ../../Zotlabs/Module/Settings/Connections.php:40 +msgid "Connections Settings" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" +#: ../../Zotlabs/Module/Settings/Calendar.php:40 +msgid "Calendar Settings" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../Zotlabs/Module/Settings/Directory.php:40 +msgid "Directory Settings" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Profile Creation" +#: ../../Zotlabs/Module/Settings/Channel_home.php:46 +#: ../../Zotlabs/Module/Settings/Network.php:42 +msgid "Max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "Upload profile photo" +#: ../../Zotlabs/Module/Settings/Channel_home.php:48 +#: ../../Zotlabs/Module/Settings/Network.php:44 +msgid "Click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:34 -msgid "Upload cover photo" +#: ../../Zotlabs/Module/Settings/Channel_home.php:61 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Find and Connect with others" +#: ../../Zotlabs/Module/Settings/Channel_home.php:88 +msgid "Channel Home Settings" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View the directory" +#: ../../Zotlabs/Module/Settings/Network.php:59 +msgid "Stream Settings" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:41 ../../Zotlabs/Module/Go.php:38 -msgid "View friend suggestions" +#: ../../Zotlabs/Module/Settings/Conversation.php:23 +msgid "Settings saved." msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:42 -msgid "Manage your connections" +#: ../../Zotlabs/Module/Settings/Conversation.php:25 +msgid "Settings saved. Reload page please." msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:45 -msgid "Communicate" +#: ../../Zotlabs/Module/Settings/Conversation.php:47 +msgid "Conversation Settings" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "View your channel homepage" +#: ../../Zotlabs/Module/Probe.php:19 +msgid "Remote Diagnostics App" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:48 -msgid "View your network stream" +#: ../../Zotlabs/Module/Probe.php:20 +msgid "Perform diagnostics on remote channels" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:54 -msgid "Documentation" +#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 +msgid "Invite App" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:57 -msgid "Missing Features?" +#: ../../Zotlabs/Module/Invite.php:68 +msgid "Register is closed" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:59 -msgid "Pin apps to navigation bar" +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 +msgid "Note, the invitation code is valid up to" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:60 -msgid "Install more apps" +#: ../../Zotlabs/Module/Invite.php:115 +#, php-format +msgid "Too many recipients for one invitation (max %d)" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:71 -msgid "View public stream" +#: ../../Zotlabs/Module/Invite.php:119 +msgid "No recipients for this invitation" msgstr "" -#: ../../Zotlabs/Widget/Newmember.php:75 -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "New Member Links" +#: ../../Zotlabs/Module/Invite.php:133 +#, php-format +msgid "(%s) : Not a valid email address" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:30 ../../Zotlabs/Module/Connedit.php:716 -msgid "Me" +#: ../../Zotlabs/Module/Invite.php:138 +#, php-format +msgid "(%s) : Not a real email address" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:31 ../../Zotlabs/Module/Connedit.php:717 -msgid "Family" +#: ../../Zotlabs/Module/Invite.php:145 +#, php-format +msgid "(%s) : Not allowed email address" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:33 ../../Zotlabs/Module/Connedit.php:719 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : email address already in use" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:34 ../../Zotlabs/Module/Connections.php:97 -#: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "All" +#: ../../Zotlabs/Module/Invite.php:165 +#, php-format +msgid "(%s) : Accepted email address" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:54 -msgid "Refresh" +#: ../../Zotlabs/Module/Invite.php:252 +#: ../../extend/addon/hubzilla-addons/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" +#: ../../Zotlabs/Module/Invite.php:257 +#, php-format +msgid "To %s : Message delivery success." msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" +#: ../../Zotlabs/Module/Invite.php:289 +#, php-format +msgid "%1$d mail(s) sent, %2$d mail error(s)" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" +#: ../../Zotlabs/Module/Invite.php:315 +msgid "Invites not proposed by configuration" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:23 -#: ../../Zotlabs/Widget/Notifications.php:62 -msgid "Mark all notifications read" +#: ../../Zotlabs/Module/Invite.php:316 +msgid "Contact the site admin" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:65 -#: ../../Zotlabs/Widget/Notifications.php:172 -msgid "Show new posts only" +#: ../../Zotlabs/Module/Invite.php:332 +msgid "Invites by users not enabled" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:47 -#: ../../Zotlabs/Widget/Notifications.php:66 -#: ../../Zotlabs/Widget/Notifications.php:142 -#: ../../Zotlabs/Widget/Notifications.php:173 -msgid "Filter by name or address" +#: ../../Zotlabs/Module/Invite.php:337 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity" +#: ../../Zotlabs/Module/Invite.php:353 +msgid "Not on xchan" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:37 -msgid "New Home Activity Notifications" +#: ../../Zotlabs/Module/Invite.php:386 +msgid "All users invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:40 -msgid "View your home activity" +#: ../../Zotlabs/Module/Invite.php:404 +msgid "Invitation expires after" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:43 -#: ../../Zotlabs/Widget/Notifications.php:169 -msgid "Mark all notifications seen" +#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 +msgid "Invitation" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Direct Messages" +#: ../../Zotlabs/Module/Invite.php:534 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:56 -msgid "New Direct Messages Notifications" +#: ../../Zotlabs/Module/Invite.php:535 +msgid "Invitations I am using" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:59 -msgid "View your direct messages" +#: ../../Zotlabs/Module/Invite.php:536 +msgid "Invitations we are using" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:74 -msgid "New Mails" +#: ../../Zotlabs/Module/Invite.php:537 +msgid "§ Note, the email(s) sent will be recorded in the system logs" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:75 -msgid "New Mails Notifications" +#: ../../Zotlabs/Module/Invite.php:538 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:78 -msgid "View your private mails" +#: ../../Zotlabs/Module/Invite.php:539 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:164 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:81 -msgid "Mark all messages seen" +#: ../../Zotlabs/Module/Invite.php:540 +msgid "Invite template" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:89 -msgid "New Events" +#: ../../Zotlabs/Module/Invite.php:542 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:161 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:303 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:90 -msgid "New Events Notifications" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Here you may enter personal notes to the recipient(s)" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:93 -msgid "View events" +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "Mark all events seen" +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Module/Connections.php:165 -msgid "New Connections" +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "New Connections Notifications" +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all connections" +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:116 -msgid "New Files" +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:117 -msgid "New Files Notifications" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:124 -#: ../../Zotlabs/Widget/Notifications.php:125 -msgid "Notices" +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:128 -msgid "View all notices" +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:131 -msgid "Mark all notices seen" +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:152 -msgid "New Registrations" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:153 -msgid "New Registrations Notifications" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:162 -#: ../../Zotlabs/Module/Pubstream.php:105 ../../Zotlabs/Lib/Apps.php:375 -msgid "Public Stream" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:163 -msgid "Public Stream Notifications" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:166 -msgid "View the public stream" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:181 -msgid "Sorry, you have got no notifications at the moment" +#: ../../Zotlabs/Module/Lang.php:17 +msgid "Language App" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:39 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:45 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Hq.php:131 +msgid "Welcome to Hubzilla!" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:85 -msgid "Token saved." +#: ../../Zotlabs/Module/Hq.php:131 +msgid "You have got no unseen posts..." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:99 -msgid "Guest Access App" +#: ../../Zotlabs/Module/Cover_photo.php:196 +#: ../../Zotlabs/Module/Cover_photo.php:254 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:100 -msgid "Create access tokens so that non-members can access private content" +#: ../../Zotlabs/Module/Cover_photo.php:297 ../../include/items.php:4966 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:133 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4967 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:135 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4968 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:170 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Cover_photo.php:300 ../../include/items.php:4969 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:177 -msgid "Login Name" +#: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4971 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:178 -msgid "Login Password" +#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2356 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:179 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Cover_photo.php:418 +msgid "Your cover photo may be visible to anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:900 -msgid "Their Settings" +#: ../../Zotlabs/Module/Cover_photo.php:422 +msgid "Change Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:181 ../../Zotlabs/Module/Permcats.php:122 -#: ../../Zotlabs/Module/Defperms.php:267 ../../Zotlabs/Module/Connedit.php:901 -msgid "My Settings" +#: ../../Zotlabs/Module/Menu.php:68 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:183 ../../Zotlabs/Module/Permcats.php:124 -#: ../../Zotlabs/Module/Defperms.php:265 ../../Zotlabs/Module/Connedit.php:896 -msgid "inherited" +#: ../../Zotlabs/Module/Menu.php:79 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Tokens.php:186 ../../Zotlabs/Module/Permcats.php:127 -#: ../../Zotlabs/Module/Defperms.php:270 ../../Zotlabs/Module/Connedit.php:903 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:187 ../../Zotlabs/Module/Permcats.php:128 -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 -#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -msgid "Item not found" +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:44 -#: ../../Zotlabs/Module/Attach_edit.php:52 -#: ../../Zotlabs/Module/Wall_upload.php:31 -#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Chanview.php:95 -#: ../../Zotlabs/Module/Cal.php:31 ../../Zotlabs/Module/Attach.php:22 -#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Block.php:41 -msgid "Channel not found." +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" +#: ../../Zotlabs/Module/Menu.php:163 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:69 -#: ../../Zotlabs/Module/Filestorage.php:109 -msgid "File not found." +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:118 -msgid "Can not copy folder into itself." +#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Attach_edit.php:131 -#, php-format -msgid "Can not move folder \"%s\" into itself." +#: ../../Zotlabs/Module/Menu.php:171 ../../include/text.php:2713 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Network.php:107 -msgid "No such group" +#: ../../Zotlabs/Module/Menu.php:181 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Network.php:156 -msgid "No such channel" +#: ../../Zotlabs/Module/Menu.php:183 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Network.php:168 ../../Zotlabs/Module/Channel.php:221 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Network.php:209 ../../Zotlabs/Module/Channel.php:256 -#: ../../Zotlabs/Module/Hq.php:125 ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Module/Display.php:76 -msgid "Reset form" +#: ../../Zotlabs/Module/Menu.php:185 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Network.php:243 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Menu.php:201 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Network.php:253 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Menu.php:214 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:69 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Menu.php:218 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:84 -#: ../../Zotlabs/Module/Import.php:100 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:107 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Sources.php:41 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:630 -msgid "File to Upload" +#: ../../Zotlabs/Module/Sources.php:57 +msgid "Source created." msgstr "" -#: ../../Zotlabs/Module/Import.php:163 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Sources.php:70 +msgid "Source updated." msgstr "" -#: ../../Zotlabs/Module/Import.php:190 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Sources.php:88 +msgid "Sources App" msgstr "" -#: ../../Zotlabs/Module/Import.php:623 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Sources.php:89 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../Zotlabs/Module/Import.php:628 -msgid "Import Channel" +#: ../../Zotlabs/Module/Sources.php:101 +msgid "*" msgstr "" -#: ../../Zotlabs/Module/Import.php:629 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:368 +msgid "Channel Sources" msgstr "" -#: ../../Zotlabs/Module/Import.php:631 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Sources.php:108 +msgid "Manage remote sources of content for your channel." msgstr "" -#: ../../Zotlabs/Module/Import.php:633 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 +msgid "New Source" msgstr "" -#: ../../Zotlabs/Module/Import.php:634 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../Zotlabs/Module/Import.php:635 -msgid "Your old login password" +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../Zotlabs/Module/Import.php:636 -msgid "Import a few months of posts if possible (limited by available memory" +#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 +msgid "Leave blank to import all public content" msgstr "" -#: ../../Zotlabs/Module/Import.php:638 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 +msgid "Channel Name" msgstr "" -#: ../../Zotlabs/Module/Import.php:640 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -#: ../../Zotlabs/Module/Import.php:641 -msgid "Move this channel (disable all previous locations)" +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Resend posts with this channel as author" msgstr "" -#: ../../Zotlabs/Module/Import.php:642 -msgid "Use this channel nickname instead of the one provided" +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +msgid "Copyrights may apply" msgstr "" -#: ../../Zotlabs/Module/Import.php:642 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." +#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 +msgid "Source not found." msgstr "" -#: ../../Zotlabs/Module/Import.php:644 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Sources.php:151 +msgid "Edit Source" msgstr "" -#: ../../Zotlabs/Module/Ochannel.php:32 ../../Zotlabs/Module/Channel.php:44 -#: ../../Zotlabs/Module/Chat.php:29 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Sources.php:152 +msgid "Delete Source" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:19 -msgid "Update to Hubzilla 5.0 step 2" +#: ../../Zotlabs/Module/Sources.php:182 +msgid "Source removed" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:21 -msgid "To complete the update please run" +#: ../../Zotlabs/Module/Sources.php:184 +msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:23 -msgid "php util/z6convert.php" +#: ../../Zotlabs/Module/Poke.php:165 +msgid "Poke App" msgstr "" -#: ../../Zotlabs/Module/Z6trans.php:25 -msgid "from the terminal." +#: ../../Zotlabs/Module/Poke.php:166 +msgid "Poke somebody in your addressbook" msgstr "" -#: ../../Zotlabs/Module/Register.php:112 -msgid "Email address required" +#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:351 +#: ../../include/conversation.php:1143 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Register.php:156 -msgid "No password provided" +#: ../../Zotlabs/Module/Poke.php:200 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Register.php:179 -msgid "Terms of Service not accepted" +#: ../../Zotlabs/Module/Poke.php:203 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "Invitation code succesfully applied" +#: ../../Zotlabs/Module/Poke.php:204 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Invitation not in time or too late" +#: ../../Zotlabs/Module/Poke.php:211 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Register.php:267 -msgid "Invitation email failed" +#: ../../Zotlabs/Module/Poke.php:212 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Register.php:275 -msgid "Invitation code failed" +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Register.php:282 -msgid "Invitations are not available" +#: ../../Zotlabs/Module/Network.php:107 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Register.php:292 -msgid "Registration on this hub is by invitation only" +#: ../../Zotlabs/Module/Network.php:156 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Register.php:399 -msgid "New register request" +#: ../../Zotlabs/Module/Network.php:243 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Register.php:417 -msgid "Error creating dId A" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Register.php:435 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Network.php:326 +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:29 +msgid "Invalid channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:444 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Attach_edit.php:118 +msgid "Can not copy folder into itself." msgstr "" -#: ../../Zotlabs/Module/Register.php:445 -msgid "Register at another affiliated hub in case when prefered" +#: ../../Zotlabs/Module/Attach_edit.php:131 +#, php-format +msgid "Can not move folder \"%s\" into itself." msgstr "" -#: ../../Zotlabs/Module/Register.php:458 -msgid "Registration on this hub is by invitation only." +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" msgstr "" -#: ../../Zotlabs/Module/Register.php:459 -msgid "Register at another affiliated hub" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Register.php:479 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Storage/Browser.php:292 +msgid "Change filename to" msgstr "" -#: ../../Zotlabs/Module/Register.php:486 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" +#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:390 +msgid "Select a target location" msgstr "" -#: ../../Zotlabs/Module/Register.php:496 -msgid "Your email address" +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:391 +msgid "Copy to target location" msgstr "" -#: ../../Zotlabs/Module/Register.php:498 ../../Zotlabs/Module/Oauth.php:117 -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -msgid "Optional" +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:389 +msgid "Set permissions for all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Register.php:503 -msgid "Choose a password" +#: ../../Zotlabs/Storage/Browser.php:312 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Register.php:504 -msgid "Please re-enter your password" +#: ../../Zotlabs/Storage/Browser.php:351 +msgid "File category" msgstr "" -#: ../../Zotlabs/Module/Register.php:506 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Storage/Browser.php:362 +msgid "Total" msgstr "" -#: ../../Zotlabs/Module/Register.php:508 -msgid "Your name" +#: ../../Zotlabs/Storage/Browser.php:364 +msgid "Shared" msgstr "" -#: ../../Zotlabs/Module/Register.php:508 -msgid "Real name is preferred" +#: ../../Zotlabs/Storage/Browser.php:366 +msgid "Add Files" msgstr "" -#: ../../Zotlabs/Module/Register.php:510 -#: ../../Zotlabs/Module/New_channel.php:177 -msgid "Choose a short nickname" +#: ../../Zotlabs/Storage/Browser.php:369 ../../Zotlabs/Lib/ThreadItem.php:175 +msgid "Admin Delete" msgstr "" -#: ../../Zotlabs/Module/Register.php:510 -msgid "" -"Your nickname will be used to create an easy to remember channel address" +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "parent" msgstr "" -#: ../../Zotlabs/Module/Register.php:514 -msgid "Why do you want to join this hub?" +#: ../../Zotlabs/Storage/Browser.php:399 +msgid "Select All" msgstr "" -#: ../../Zotlabs/Module/Register.php:514 -msgid "This will help to review your registration" +#: ../../Zotlabs/Storage/Browser.php:400 +msgid "Bulk Actions" msgstr "" -#: ../../Zotlabs/Module/Register.php:520 -#: ../../Zotlabs/Module/Admin/Site.php:413 -msgid "Registration" +#: ../../Zotlabs/Storage/Browser.php:401 +msgid "Adjust Permissions" msgstr "" -#: ../../Zotlabs/Module/Register.php:528 -msgid "I have an invite code" +#: ../../Zotlabs/Storage/Browser.php:402 +msgid "Move or Copy" msgstr "" -#: ../../Zotlabs/Module/Register.php:575 -msgid "" -"This site has exceeded the number of allowed daily account registrations." +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "Info" msgstr "" -#: ../../Zotlabs/Module/Search.php:21 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Display.php:26 -#: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 -#: ../../Zotlabs/Module/Photos.php:519 -msgid "Public access denied." +#: ../../Zotlabs/Storage/Browser.php:406 +msgid "Rename" msgstr "" -#: ../../Zotlabs/Module/Search.php:250 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Storage/Browser.php:407 ../../Zotlabs/Lib/Apps.php:360 +msgid "Post" msgstr "" -#: ../../Zotlabs/Module/Search.php:252 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Storage/Browser.php:408 +msgid "Attachment BBcode" msgstr "" -#: ../../Zotlabs/Module/Setup.php:169 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Storage/Browser.php:409 +msgid "Embed BBcode" msgstr "" -#: ../../Zotlabs/Module/Setup.php:173 -msgid "Could not connect to database." +#: ../../Zotlabs/Storage/Browser.php:410 +msgid "Link BBcode" msgstr "" -#: ../../Zotlabs/Module/Setup.php:177 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Storage/Browser.php:480 +#, php-format +msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "Could not create table." +#: ../../Zotlabs/Storage/Browser.php:485 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:190 -msgid "Your site database has been installed." +#: ../../Zotlabs/Storage/Browser.php:496 +msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:196 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Storage/Browser.php:537 +msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 -#: ../../Zotlabs/Module/Setup.php:768 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Storage/Browser.php:539 +msgid "Upload file" msgstr "" -#: ../../Zotlabs/Module/Setup.php:258 -msgid "System check" +#: ../../Zotlabs/Storage/Browser.php:551 +msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Module/Setup.php:262 ../../Zotlabs/Module/Cdav.php:1037 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Events.php:707 -#: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:956 -msgid "Next" +#: ../../Zotlabs/Storage/Browser.php:554 +msgid "" +"You can select files via the upload button or drop them right here or into " +"an existing folder." msgstr "" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "Check again" +#: ../../Zotlabs/Zot/Auth.php:154 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../Zotlabs/Module/Setup.php:284 -msgid "Database connection" +#: ../../Zotlabs/Zot/Auth.php:266 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:76 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../Zotlabs/Module/Setup.php:285 +#: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:23 msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../Zotlabs/Module/Setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:271 +msgid "Add new connections to this privacy group" msgstr "" -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Lib/Group.php:302 ../../Zotlabs/Lib/AccessList.php:311 +#: ../../include/group.php:305 +msgid "edit" msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "Database Server Name" +#: ../../Zotlabs/Lib/Group.php:325 ../../include/group.php:328 +msgid "Edit group" msgstr "" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Lib/Group.php:326 ../../include/group.php:329 +msgid "Add privacy group" msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "Database Port" +#: ../../Zotlabs/Lib/Group.php:327 ../../include/group.php:330 +msgid "Channels not in any privacy group" msgstr "" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Lib/Group.php:329 ../../Zotlabs/Lib/AccessList.php:336 +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:332 +msgid "add" msgstr "" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Login Name" +#: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:143 +#: ../../include/follow.php:39 +msgid "Channel is blocked on this site." msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Login Password" +#: ../../Zotlabs/Lib/Connect.php:51 ../../include/follow.php:44 +msgid "Channel location missing." msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Name" +#: ../../Zotlabs/Lib/Connect.php:103 ../../include/follow.php:168 +msgid "Remote channel or protocol unavailable." msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Type" +#: ../../Zotlabs/Lib/Connect.php:137 ../../include/follow.php:192 +msgid "Channel discovery failed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 -msgid "Site administrator email address" +#: ../../Zotlabs/Lib/Connect.php:155 ../../include/follow.php:204 +msgid "Protocol disabled." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:167 ../../include/follow.php:215 +msgid "Cannot connect to yourself." msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Lib/Connect.php:271 +msgid "error saving data" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 -msgid "Website URL" +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Lib/Apps.php:324 +msgid "Affinity Tool" msgstr "" -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Lib/Apps.php:327 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Module/Setup.php:327 -msgid "Site settings" +#: ../../Zotlabs/Lib/Apps.php:328 +#: ../../extend/addon/hubzilla-addons/buglink/buglink.php:16 +msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Module/Setup.php:381 -msgid "PHP version 7.1 or greater is required." +#: ../../Zotlabs/Lib/Apps.php:329 ../../include/nav.php:490 +msgid "Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Setup.php:382 -msgid "PHP version" +#: ../../Zotlabs/Lib/Apps.php:330 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/nav.php:477 ../../include/nav.php:480 +msgid "Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Setup.php:398 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Lib/Apps.php:331 +msgid "Content Filter" msgstr "" -#: ../../Zotlabs/Module/Setup.php:399 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Lib/Apps.php:332 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:135 +msgid "Content Import" msgstr "" -#: ../../Zotlabs/Module/Setup.php:403 -msgid "PHP executable path" +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Module/Setup.php:403 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:408 -msgid "Command line PHP" +#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 +#: ../../include/nav.php:131 ../../boot.php:1716 +msgid "Login" msgstr "" -#: ../../Zotlabs/Module/Setup.php:418 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." +#: ../../Zotlabs/Lib/Apps.php:338 +msgid "Stream" msgstr "" -#: ../../Zotlabs/Module/Setup.php:422 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Lib/Apps.php:342 ../../include/nav.php:539 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Lib/Apps.php:343 ../../include/features.php:104 +msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:82 +#: ../../include/nav.php:463 ../../include/nav.php:466 +msgid "Calendar" msgstr "" -#: ../../Zotlabs/Module/Setup.php:446 -msgid "" -"This is not sufficient to upload larger images or files. You should be able " -"to upload at least 4 MB at once." +#: ../../Zotlabs/Lib/Apps.php:347 ../../include/features.php:192 +msgid "Directory" msgstr "" -#: ../../Zotlabs/Module/Setup.php:448 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Lib/Apps.php:349 +msgid "Mail" msgstr "" -#: ../../Zotlabs/Module/Setup.php:454 -msgid "You can adjust these settings in the server php.ini file." +#: ../../Zotlabs/Lib/Apps.php:352 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Module/Setup.php:456 -msgid "PHP upload limits" +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Module/Setup.php:480 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:483 -msgid "Generate encryption keys" +#: ../../Zotlabs/Lib/Apps.php:357 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "libCurl PHP module" +#: ../../Zotlabs/Lib/Apps.php:358 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" msgstr "" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Lib/Apps.php:359 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:69 +msgid "Language" msgstr "" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Lib/Apps.php:361 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:58 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:59 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:60 +msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "PDO database PHP module" +#: ../../Zotlabs/Lib/Apps.php:363 ../../include/features.php:382 +msgid "Profiles" msgstr "" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "mb_string PHP module" +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Notifications" msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "xml PHP module" +#: ../../Zotlabs/Lib/Apps.php:366 +msgid "Order Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "zip PHP module" +#: ../../Zotlabs/Lib/Apps.php:367 +msgid "CardDAV" msgstr "" -#: ../../Zotlabs/Module/Setup.php:510 ../../Zotlabs/Module/Setup.php:512 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Guest Access" msgstr "" -#: ../../Zotlabs/Module/Setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Lib/Apps.php:370 ../../Zotlabs/Widget/Notes.php:21 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2625 +msgid "Notes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 -msgid "exec" +#: ../../Zotlabs/Lib/Apps.php:371 +msgid "OAuth Apps Manager" msgstr "" -#: ../../Zotlabs/Module/Setup.php:516 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "OAuth2 Apps Manager" msgstr "" -#: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 -msgid "shell_exec" +#: ../../Zotlabs/Lib/Apps.php:373 +msgid "PDL Editor" msgstr "" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Lib/Apps.php:377 +msgid "Channel Export" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library " -"required but not installed." +#: ../../Zotlabs/Lib/Apps.php:554 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Module/Setup.php:538 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Lib/Apps.php:559 +msgid "Undelete" msgstr "" -#: ../../Zotlabs/Module/Setup.php:544 -msgid "" -"Error: PDO database PHP module missing a driver for either mysql or pgsql." +#: ../../Zotlabs/Lib/Apps.php:569 +msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Module/Setup.php:549 -msgid "Error: PDO database PHP module required but not installed." +#: ../../Zotlabs/Lib/Apps.php:570 +msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Module/Setup.php:553 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Lib/Apps.php:571 +msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Module/Setup.php:557 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Lib/Apps.php:572 +msgid "Unpin from navbar" msgstr "" -#: ../../Zotlabs/Module/Setup.php:561 -msgid "Error: zip PHP module required but not installed." +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:580 ../../Zotlabs/Module/Setup.php:589 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:585 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Module/Setup.php:586 +#: ../../Zotlabs/Lib/AccessList.php:28 msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +"A deleted list with this name was revived. Existing item permissions " +"may apply to this list and any future members. If this is " +"not what you intended, please create another list with a different name." msgstr "" -#: ../../Zotlabs/Module/Setup.php:587 -msgid "Please see install/INSTALL.txt for additional information." +#: ../../Zotlabs/Lib/AccessList.php:286 +msgid "Add new connections to this access list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:603 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Lib/AccessList.php:331 +msgid "Lists" msgstr "" -#: ../../Zotlabs/Module/Setup.php:604 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Lib/AccessList.php:332 +msgid "Edit list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Lib/AccessList.php:333 +msgid "Create new list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:606 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Lib/AccessList.php:334 +msgid "Channels not in any access list" msgstr "" -#: ../../Zotlabs/Module/Setup.php:609 -#, php-format -msgid "%s is writable" +#: ../../Zotlabs/Lib/Chatroom.php:25 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:625 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" +#: ../../Zotlabs/Lib/Chatroom.php:34 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:629 -msgid "store is writable" +#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Module/Setup.php:661 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Lib/Chatroom.php:124 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../Zotlabs/Lib/Chatroom.php:145 +msgid "Room is full" msgstr "" -#: ../../Zotlabs/Module/Setup.php:663 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Setup.php:664 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Setup.php:665 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:667 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Setup.php:669 -msgid "SSL certificate validation" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Setup.php:675 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Module/Setup.php:678 -msgid "Url rewrite is working" +#: ../../Zotlabs/Lib/Enotify.php:61 +#: ../../extend/addon/hubzilla-addons/diaspora/util.php:336 +#: ../../extend/addon/hubzilla-addons/diaspora/util.php:349 +#: ../../extend/addon/hubzilla-addons/diaspora/p.php:48 +msgid "$projectname" msgstr "" -#: ../../Zotlabs/Module/Setup.php:691 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," msgstr "" -#: ../../Zotlabs/Module/Setup.php:766 -msgid "

What next?

" +#: ../../Zotlabs/Lib/Enotify.php:65 +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../Zotlabs/Module/Setup.php:767 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:105 +#: ../../Zotlabs/Lib/Enotify.php:68 #, php-format -msgid "Visit %s's profile [%s]" +msgid "To stop receiving these messages, please adjust your %s." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:135 -msgid "View Connections" +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:28 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 -msgid "Hub URL" +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 -msgid "Access Type" +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 -msgid "Registration Policy" +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 -msgid "Stats" +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:34 -msgid "Software" +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:50 -msgid "Rate" +#: ../../Zotlabs/Lib/Enotify.php:157 +msgid "liked" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:61 ../../Zotlabs/Module/Webpages.php:261 -#: ../../Zotlabs/Module/Events.php:702 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Module/Wiki.php:408 -#: ../../Zotlabs/Module/Layouts.php:198 -msgid "View" +#: ../../Zotlabs/Lib/Enotify.php:160 +msgid "disliked" msgstr "" -#: ../../Zotlabs/Module/Channel.php:131 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:62 -msgid "Posts and comments" +#: ../../Zotlabs/Lib/Enotify.php:165 +msgid "voted on" msgstr "" -#: ../../Zotlabs/Module/Channel.php:138 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:69 -msgid "Only posts" +#: ../../Zotlabs/Lib/Enotify.php:208 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Channel.php:206 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Lib/Enotify.php:216 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Channel.php:483 ../../Zotlabs/Module/Display.php:354 -msgid "" -"You must enable javascript for your browser to be able to view this content." +#: ../../Zotlabs/Lib/Enotify.php:225 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Lib/Enotify.php:237 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Lib/Enotify.php:239 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Lib/Enotify.php:240 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." msgstr "" -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" +#: ../../Zotlabs/Lib/Enotify.php:243 ../../Zotlabs/Lib/Enotify.php:324 +#: ../../Zotlabs/Lib/Enotify.php:340 ../../Zotlabs/Lib/Enotify.php:365 +#: ../../Zotlabs/Lib/Enotify.php:382 ../../Zotlabs/Lib/Enotify.php:395 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:218 -msgid "All Connections" +#: ../../Zotlabs/Lib/Enotify.php:247 ../../Zotlabs/Lib/Enotify.php:248 +#, php-format +msgid "Please visit %s to approve or reject this comment." msgstr "" -#: ../../Zotlabs/Module/Group.php:46 -msgid "Privacy group created." +#: ../../Zotlabs/Lib/Enotify.php:306 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Group.php:49 -msgid "Could not create privacy group." +#: ../../Zotlabs/Lib/Enotify.php:320 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Module/Group.php:81 -msgid "Privacy group updated." +#: ../../Zotlabs/Lib/Enotify.php:321 +#, php-format +msgid "%1$s liked an item/conversation you created." msgstr "" -#: ../../Zotlabs/Module/Group.php:107 -msgid "Privacy Groups App" +#: ../../Zotlabs/Lib/Enotify.php:332 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Module/Group.php:108 -msgid "Management of privacy groups" +#: ../../Zotlabs/Lib/Enotify.php:334 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../Zotlabs/Module/Group.php:143 -msgid "Add Group" +#: ../../Zotlabs/Lib/Enotify.php:336 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Group.php:147 -msgid "Privacy group name" +#: ../../Zotlabs/Lib/Enotify.php:359 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Module/Group.php:148 ../../Zotlabs/Module/Group.php:257 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Lib/Enotify.php:360 +#, php-format +msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../Zotlabs/Module/Group.php:156 ../../Zotlabs/Module/Help.php:84 -msgid "Members" +#: ../../Zotlabs/Lib/Enotify.php:361 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group removed." +#: ../../Zotlabs/Lib/Enotify.php:372 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Module/Group.php:186 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Lib/Enotify.php:373 +#, php-format +msgid "%1$s poked you at %2$s" msgstr "" -#: ../../Zotlabs/Module/Group.php:252 +#: ../../Zotlabs/Lib/Enotify.php:374 #, php-format -msgid "Privacy Group: %s" +msgid "%1$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Module/Group.php:254 -msgid "Privacy group name: " +#: ../../Zotlabs/Lib/Enotify.php:389 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Module/Group.php:259 -msgid "Delete Group" +#: ../../Zotlabs/Lib/Enotify.php:390 +#, php-format +msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../Zotlabs/Module/Group.php:270 -msgid "Group members" +#: ../../Zotlabs/Lib/Enotify.php:391 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Module/Group.php:272 -msgid "Not in this group" +#: ../../Zotlabs/Lib/Enotify.php:402 +msgid "[$Projectname:Notify] Introduction received" msgstr "" - -#: ../../Zotlabs/Module/Group.php:304 -msgid "Click a channel to toggle membership" + +#: ../../Zotlabs/Lib/Enotify.php:403 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" msgstr "" -#: ../../Zotlabs/Module/Card_edit.php:129 -msgid "Edit Card" +#: ../../Zotlabs/Lib/Enotify.php:404 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." msgstr "" -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" +#: ../../Zotlabs/Lib/Enotify.php:407 ../../Zotlabs/Lib/Enotify.php:425 +#, php-format +msgid "You may visit their profile at %s" msgstr "" -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" +#: ../../Zotlabs/Lib/Enotify.php:409 +#, php-format +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "[$Projectname:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" +#: ../../Zotlabs/Lib/Enotify.php:417 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" +#: ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." msgstr "" -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" +#: ../../Zotlabs/Lib/Enotify.php:423 +msgid "Name:" msgstr "" -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" +#: ../../Zotlabs/Lib/Enotify.php:424 +msgid "Photo:" msgstr "" -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" +#: ../../Zotlabs/Lib/Enotify.php:427 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" +#: ../../Zotlabs/Lib/Enotify.php:652 +msgid "[$Projectname:Notify]" msgstr "" -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" +#: ../../Zotlabs/Lib/Enotify.php:820 +msgid "created a new poll" msgstr "" -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" +#: ../../Zotlabs/Lib/Enotify.php:820 +msgid "created a new post" msgstr "" -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" +#: ../../Zotlabs/Lib/Enotify.php:821 +#, php-format +msgid "voted on %s's poll" msgstr "" -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" +#: ../../Zotlabs/Lib/Enotify.php:821 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" +#: ../../Zotlabs/Lib/Enotify.php:825 +#, php-format +msgid "repeated %s's post" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:45 -msgid "Name is required" +#: ../../Zotlabs/Lib/Enotify.php:837 +#, php-format +msgid "edited a post dated %s" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:49 -msgid "Key and Secret are required" +#: ../../Zotlabs/Lib/Enotify.php:841 +#, php-format +msgid "edited a comment dated %s" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Cdav.php:1054 ../../Zotlabs/Module/Cdav.php:1389 -#: ../../Zotlabs/Module/Admin/Addons.php:457 -#: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Oauth2.php:58 -#: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:932 -#: ../../Zotlabs/Lib/Apps.php:536 -msgid "Update" +#: ../../Zotlabs/Lib/Enotify.php:970 +msgid "created an event" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:100 -msgid "OAuth Apps Manager App" +#: ../../Zotlabs/Lib/Enotify.php:986 +msgid "status verified" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:101 -msgid "OAuth authentication tokens for mobile and remote apps" +#: ../../Zotlabs/Lib/Libsync.php:740 ../../include/zot.php:2663 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:110 ../../Zotlabs/Module/Oauth.php:136 -#: ../../Zotlabs/Module/Oauth.php:172 ../../Zotlabs/Module/Oauth2.php:143 -#: ../../Zotlabs/Module/Oauth2.php:193 -msgid "Add application" +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 +msgid "(No Title)" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth2.php:118 -#: ../../Zotlabs/Module/Oauth2.php:146 -msgid "Name of application" +#: ../../Zotlabs/Lib/NativeWikiPage.php:109 +msgid "Wiki page create failed." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 -#: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Lib/NativeWikiPage.php:123 +msgid "Wiki not found." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth.php:142 -#: ../../Zotlabs/Module/Oauth2.php:120 ../../Zotlabs/Module/Oauth2.php:148 -msgid "Redirect" +#: ../../Zotlabs/Lib/NativeWikiPage.php:134 +msgid "Destination name already exists" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 -#: ../../Zotlabs/Module/Oauth2.php:148 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 +#: ../../Zotlabs/Lib/NativeWikiPage.php:368 +msgid "Page not found" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 -msgid "Icon url" +#: ../../Zotlabs/Lib/NativeWikiPage.php:200 +msgid "Error reading page content" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:128 -msgid "Application not found." +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 +#: ../../Zotlabs/Lib/NativeWikiPage.php:522 +msgid "Error reading wiki" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:171 -msgid "Connected OAuth Apps" +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 +msgid "Page update failed." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:175 ../../Zotlabs/Module/Oauth2.php:196 -msgid "Client key starts with" +#: ../../Zotlabs/Lib/NativeWikiPage.php:431 +msgid "Nothing deleted" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:176 ../../Zotlabs/Module/Oauth2.php:197 -msgid "No name" +#: ../../Zotlabs/Lib/NativeWikiPage.php:501 +msgid "Compare: object not found." msgstr "" -#: ../../Zotlabs/Module/Oauth.php:177 ../../Zotlabs/Module/Oauth2.php:198 -msgid "Remove authorization" +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Page updated" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" +#: ../../Zotlabs/Lib/NativeWikiPage.php:511 +msgid "Untitled" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" +#: ../../Zotlabs/Lib/NativeWikiPage.php:517 +msgid "Wiki resource_id required for git commit" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:28 ../../Zotlabs/Module/Regdir.php:52 -msgid "This site is not a directory server" +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:37 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 +#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +msgid "Date" msgstr "" -#: ../../Zotlabs/Module/Hq.php:131 -msgid "Welcome to Hubzilla!" +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 +#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +msgid "Compare" msgstr "" -#: ../../Zotlabs/Module/Hq.php:131 -msgid "You have got no unseen posts..." +#: ../../Zotlabs/Lib/NativeWikiPage.php:618 ../../include/bbcode.php:1050 +#: ../../include/bbcode.php:1217 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:471 -msgid "Unable to locate original post." +#: ../../Zotlabs/Lib/ThreadItem.php:103 ../../include/conversation.php:739 +msgid "Private Message" msgstr "" -#: ../../Zotlabs/Module/Chat.php:100 -msgid "Chatrooms App" +#: ../../Zotlabs/Lib/ThreadItem.php:131 +msgid "Privacy conflict. Discretion advised." msgstr "" -#: ../../Zotlabs/Module/Chat.php:101 -msgid "Access Controlled Chatrooms" +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../include/conversation.php:729 +msgid "Select" msgstr "" -#: ../../Zotlabs/Module/Chat.php:194 -msgid "Room not found" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:70 +msgid "I will attend" msgstr "" -#: ../../Zotlabs/Module/Chat.php:210 -msgid "Leave Room" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:70 +msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Module/Chat.php:211 -msgid "Delete Room" +#: ../../Zotlabs/Lib/ThreadItem.php:206 ../../Zotlabs/Widget/Pinned.php:70 +msgid "I might attend" msgstr "" -#: ../../Zotlabs/Module/Chat.php:212 -msgid "I am away right now" +#: ../../Zotlabs/Lib/ThreadItem.php:220 ../../Zotlabs/Widget/Pinned.php:81 +msgid "I agree" msgstr "" -#: ../../Zotlabs/Module/Chat.php:213 -msgid "I am online" +#: ../../Zotlabs/Lib/ThreadItem.php:220 ../../Zotlabs/Widget/Pinned.php:81 +msgid "I disagree" msgstr "" -#: ../../Zotlabs/Module/Chat.php:215 -msgid "Bookmark this room" +#: ../../Zotlabs/Lib/ThreadItem.php:220 ../../Zotlabs/Widget/Pinned.php:81 +msgid "I abstain" msgstr "" -#: ../../Zotlabs/Module/Chat.php:238 -msgid "New Chatroom" +#: ../../Zotlabs/Lib/ThreadItem.php:274 ../../include/conversation.php:734 +msgid "Toggle Star Status" msgstr "" -#: ../../Zotlabs/Module/Chat.php:239 -msgid "Chatroom name" +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../Zotlabs/Widget/Pinned.php:88 +#: ../../include/conversation.php:748 +msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Module/Chat.php:240 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Lib/ThreadItem.php:286 ../../Zotlabs/Widget/Pinned.php:89 +#: ../../include/conversation.php:749 +msgid "Message signature incorrect" msgstr "" -#: ../../Zotlabs/Module/Chat.php:256 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../Zotlabs/Lib/ThreadItem.php:302 ../../include/conversation.php:935 +msgid "Conversation Tools" msgstr "" -#: ../../Zotlabs/Module/Chat.php:261 -msgid "No chatrooms available" +#: ../../Zotlabs/Lib/ThreadItem.php:318 ../../include/taxonomy.php:584 +msgid "like" msgstr "" -#: ../../Zotlabs/Module/Chat.php:262 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:213 -msgid "Create New" +#: ../../Zotlabs/Lib/ThreadItem.php:319 ../../include/taxonomy.php:585 +msgid "dislike" msgstr "" -#: ../../Zotlabs/Module/Chat.php:265 -msgid "Expiration" +#: ../../Zotlabs/Lib/ThreadItem.php:320 +msgid "Reply on this comment" msgstr "" -#: ../../Zotlabs/Module/Chat.php:266 -msgid "min" +#: ../../Zotlabs/Lib/ThreadItem.php:320 +msgid "reply" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:62 -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Lib/ThreadItem.php:320 +msgid "Reply to" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:64 -#: ../../Zotlabs/Module/Channel_calendar.php:72 -#: ../../Zotlabs/Module/Channel_calendar.php:87 -#: ../../Zotlabs/Module/Events.php:115 ../../Zotlabs/Module/Events.php:124 -#: ../../Zotlabs/Module/Events.php:146 -msgid "Unable to generate preview." +#: ../../Zotlabs/Lib/ThreadItem.php:330 ../../Zotlabs/Widget/Pinned.php:99 +msgid "Share This" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:70 -#: ../../Zotlabs/Module/Events.php:122 -msgid "Event title and start time are required." +#: ../../Zotlabs/Lib/ThreadItem.php:330 ../../Zotlabs/Widget/Pinned.php:99 +msgid "share" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:85 -#: ../../Zotlabs/Module/Channel_calendar.php:226 -#: ../../Zotlabs/Module/Events.php:144 ../../Zotlabs/Module/Events.php:271 -msgid "Event not found." +#: ../../Zotlabs/Lib/ThreadItem.php:340 +msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:370 -#: ../../Zotlabs/Module/Events.php:641 -msgid "Edit event" +#: ../../Zotlabs/Lib/ThreadItem.php:359 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:360 +#, php-format +msgid "%d unseen" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:372 -#: ../../Zotlabs/Module/Events.php:643 -msgid "Delete event" +#: ../../Zotlabs/Lib/ThreadItem.php:413 +msgid "to" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:392 -#: ../../Zotlabs/Module/Cdav.php:944 ../../Zotlabs/Module/Cal.php:165 -msgid "Link to source" +#: ../../Zotlabs/Lib/ThreadItem.php:414 ../../Zotlabs/Widget/Pinned.php:127 +msgid "via" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:406 -#: ../../Zotlabs/Module/Events.php:677 -msgid "calendar" +#: ../../Zotlabs/Lib/ThreadItem.php:415 +msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Module/Channel_calendar.php:493 -#: ../../Zotlabs/Module/Events.php:742 -msgid "Failed to remove event" +#: ../../Zotlabs/Lib/ThreadItem.php:416 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Module/Like.php:106 -msgid "Like/Dislike" +#: ../../Zotlabs/Lib/ThreadItem.php:430 ../../Zotlabs/Widget/Pinned.php:132 +#: ../../include/conversation.php:809 +#, php-format +msgid "from %s" msgstr "" -#: ../../Zotlabs/Module/Like.php:112 -msgid "This action is restricted to members." +#: ../../Zotlabs/Lib/ThreadItem.php:433 ../../Zotlabs/Widget/Pinned.php:135 +#: ../../include/conversation.php:812 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Module/Like.php:113 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +#: ../../Zotlabs/Lib/ThreadItem.php:434 ../../Zotlabs/Widget/Pinned.php:136 +#: ../../include/conversation.php:813 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../Zotlabs/Module/Like.php:166 ../../Zotlabs/Module/Like.php:192 -#: ../../Zotlabs/Module/Like.php:230 -msgid "Invalid request." +#: ../../Zotlabs/Lib/ThreadItem.php:444 +msgid "Attend" msgstr "" -#: ../../Zotlabs/Module/Like.php:207 -msgid "thing" +#: ../../Zotlabs/Lib/ThreadItem.php:445 ../../Zotlabs/Widget/Pinned.php:141 +msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Module/Like.php:253 -msgid "Channel unavailable." +#: ../../Zotlabs/Lib/ThreadItem.php:446 ../../include/text.php:1924 +msgid "Vote" msgstr "" -#: ../../Zotlabs/Module/Like.php:289 -msgid "Previous action reversed." +#: ../../Zotlabs/Lib/ThreadItem.php:447 ../../Zotlabs/Widget/Pinned.php:142 +msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Module/Like.php:475 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:462 +msgid "Go to previous comment" msgstr "" -#: ../../Zotlabs/Module/Like.php:477 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:471 ../../Zotlabs/Widget/Pinned.php:154 +msgid "Pinned post" msgstr "" -#: ../../Zotlabs/Module/Like.php:479 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:473 ../../Zotlabs/Widget/Pinned.php:155 +#: ../../include/js_strings.php:39 +msgid "Unpin from the top" msgstr "" -#: ../../Zotlabs/Module/Like.php:586 -msgid "Action completed." +#: ../../Zotlabs/Lib/ThreadItem.php:473 ../../include/js_strings.php:38 +msgid "Pin to the top" msgstr "" -#: ../../Zotlabs/Module/Like.php:587 -msgid "Thank you." +#: ../../Zotlabs/Lib/ThreadItem.php:474 +#: ../../extend/addon/hubzilla-addons/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Poke.php:165 -msgid "Poke App" +#: ../../Zotlabs/Lib/ThreadItem.php:475 +msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Module/Poke.php:166 -msgid "Poke somebody in your addressbook" +#: ../../Zotlabs/Lib/ThreadItem.php:502 ../../include/conversation.php:516 +msgid "This is an unsaved preview" msgstr "" -#: ../../Zotlabs/Module/Poke.php:200 -msgid "Poke somebody" +#: ../../Zotlabs/Lib/ThreadItem.php:535 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" msgstr "" -#: ../../Zotlabs/Module/Poke.php:203 -msgid "Poke/Prod" +#: ../../Zotlabs/Lib/ThreadItem.php:828 ../../include/conversation.php:1451 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:200 +msgid "Bold" msgstr "" -#: ../../Zotlabs/Module/Poke.php:204 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Lib/ThreadItem.php:829 ../../include/conversation.php:1452 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:201 +msgid "Italic" msgstr "" -#: ../../Zotlabs/Module/Poke.php:211 -msgid "Recipient" +#: ../../Zotlabs/Lib/ThreadItem.php:830 ../../include/conversation.php:1453 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:202 +msgid "Underline" msgstr "" -#: ../../Zotlabs/Module/Poke.php:212 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Lib/ThreadItem.php:831 ../../include/conversation.php:1454 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:203 +msgid "Quote" msgstr "" -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Poke.php:216 -msgid "Make this post private" +#: ../../Zotlabs/Lib/ThreadItem.php:832 ../../include/conversation.php:1455 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:204 +msgid "Code" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Events.php:28 -msgid "Calendar entries imported." +#: ../../Zotlabs/Lib/ThreadItem.php:833 +msgid "Image" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:30 -msgid "No calendar entries found." +#: ../../Zotlabs/Lib/ThreadItem.php:834 ../../include/conversation.php:1456 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:205 +msgid "Attach/Upload file" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:877 -msgid "CardDAV App" +#: ../../Zotlabs/Lib/ThreadItem.php:835 +msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:878 -msgid "CalDAV capable addressbook" +#: ../../Zotlabs/Lib/ThreadItem.php:836 +msgid "Video" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:468 -msgid "Event title" +#: ../../Zotlabs/Lib/ThreadItem.php:846 +msgid "Your full name (required)" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1011 ../../Zotlabs/Module/Events.php:474 -msgid "Start date and time" +#: ../../Zotlabs/Lib/ThreadItem.php:847 +msgid "Your email address (required)" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1012 -msgid "End date and time" +#: ../../Zotlabs/Lib/ThreadItem.php:848 +msgid "Your website URL (optional)" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:497 -msgid "Timezone:" +#: ../../Zotlabs/Lib/Activity.php:2163 +#, php-format +msgid "Likes %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:697 -#: ../../Zotlabs/Module/Events.php:706 ../../Zotlabs/Module/Cal.php:203 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" +#: ../../Zotlabs/Lib/Activity.php:2166 +#, php-format +msgid "Doesn't like %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:708 -#: ../../Zotlabs/Module/Cal.php:205 -msgid "Today" +#: ../../Zotlabs/Lib/Activity.php:2172 +#, php-format +msgid "Will attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:703 -msgid "Month" +#: ../../Zotlabs/Lib/Activity.php:2175 +#, php-format +msgid "Will not attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:704 -msgid "Week" +#: ../../Zotlabs/Lib/Activity.php:2178 +#, php-format +msgid "May attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1041 ../../Zotlabs/Module/Events.php:705 -msgid "Day" +#: ../../Zotlabs/Lib/Activity.php:2181 +#, php-format +msgid "May not attend %s's event" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1042 -msgid "List month" +#: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 +#: ../../include/network.php:1767 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1939 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2147 +msgid "ActivityPub" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1043 -msgid "List week" +#: ../../Zotlabs/Lib/NativeWiki.php:146 +msgid "Wiki updated successfully" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1044 -msgid "List day" +#: ../../Zotlabs/Lib/NativeWiki.php:206 +msgid "Wiki files deleted successfully" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1052 -msgid "More" +#: ../../Zotlabs/Lib/Libzotdir.php:163 ../../include/dir_fns.php:142 +msgid "Directory Options" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1053 -msgid "Less" +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../include/dir_fns.php:144 +msgid "Safe Mode" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1055 -msgid "Select calendar" +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../include/dir_fns.php:145 +msgid "Public Forums Only" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1058 -msgid "Delete all" +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/dir_fns.php:146 +msgid "This Website Only" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1061 -msgid "Sorry! Editing of recurrent events is not yet implemented." +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:917 -msgid "Organisation" +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Profiles.php:788 -#: ../../Zotlabs/Module/Connedit.php:919 -msgid "Phone" +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:790 -#: ../../Zotlabs/Module/Connedit.php:921 -msgid "Instant messenger" +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1379 ../../Zotlabs/Module/Profiles.php:791 -#: ../../Zotlabs/Module/Connedit.php:922 -msgid "Website" +#: ../../Zotlabs/Lib/Libzot.php:655 ../../include/zot.php:805 +msgid "Unable to verify channel signature" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1380 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Profiles.php:504 ../../Zotlabs/Module/Profiles.php:792 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Locs.php:129 -msgid "Address" +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:793 -#: ../../Zotlabs/Module/Connedit.php:924 -msgid "Note" +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:136 +msgid "Only me" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Connedit.php:929 -msgid "Add Contact" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Module/Connedit.php:930 -msgid "Add Field" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:935 -msgid "P.O. Box" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:936 -msgid "Additional" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:937 -msgid "Street" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:938 -msgid "Locality" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:939 -msgid "Region" +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Connedit.php:940 -msgid "ZIP Code" +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1398 ../../Zotlabs/Module/Profiles.php:759 -#: ../../Zotlabs/Module/Connedit.php:941 -msgid "Country" +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1457 -msgid "Default Calendar" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1468 -msgid "Default Addressbook" +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:115 +#: ../../include/contact_widgets.php:159 ../../include/contact_widgets.php:204 +#: ../../include/contact_widgets.php:239 +msgid "Everything" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:123 -msgctxt "acl" -msgid "Profile" +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" msgstr "" -#: ../../Zotlabs/Module/Item.php:757 -msgid "Empty post discarded." +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" msgstr "" -#: ../../Zotlabs/Module/Item.php:1189 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" msgstr "" -#: ../../Zotlabs/Module/Item.php:1334 -msgid "System error. Post not saved." +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Channel Calendar" msgstr "" -#: ../../Zotlabs/Module/Item.php:1368 -msgid "Your comment is awaiting approval." +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Shared CalDAV Calendars" msgstr "" -#: ../../Zotlabs/Module/Item.php:1498 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Widget/Cdav.php:135 +msgid "Share this calendar" msgstr "" -#: ../../Zotlabs/Module/Item.php:1505 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Widget/Cdav.php:137 +msgid "Calendar name and color" msgstr "" -#: ../../Zotlabs/Module/Item.php:1512 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Widget/Cdav.php:139 +msgid "Create new CalDAV calendar" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:209 -msgid "Menu not found." +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Calendar Name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." +#: ../../Zotlabs/Widget/Cdav.php:142 +msgid "Calendar Tools" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." +#: ../../Zotlabs/Widget/Cdav.php:144 +msgid "Import calendar" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." +#: ../../Zotlabs/Widget/Cdav.php:145 +msgid "Select a calendar to import to" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Xchan.php:41 -#: ../../Zotlabs/Module/Menu.php:232 -msgid "Not found." +#: ../../Zotlabs/Widget/Cdav.php:172 +msgid "Addressbooks" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Widget/Cdav.php:174 +msgid "Addressbook name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "(click to open/close)" +#: ../../Zotlabs/Widget/Cdav.php:176 +msgid "Create new addressbook" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" +#: ../../Zotlabs/Widget/Cdav.php:177 +msgid "Addressbook Name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Widget/Cdav.php:179 +msgid "Addressbook Tools" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Widget/Cdav.php:180 +msgid "Import addressbook" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Widget/Cdav.php:181 +msgid "Select an addressbook to import to" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" +#: ../../Zotlabs/Widget/Filer.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:189 +#: ../../include/contact_widgets.php:53 ../../include/features.php:318 +msgid "Saved Folders" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:323 +#: ../../include/taxonomy.php:460 ../../include/taxonomy.php:481 +msgid "Tags" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" +#: ../../Zotlabs/Widget/Wiki_pages.php:34 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 +msgid "Add new page" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" +#: ../../Zotlabs/Widget/Wiki_pages.php:85 +msgid "Wiki Pages" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Page name" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" +#: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:123 +#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:140 +#: ../../include/acl_selectors.php:125 +msgid "Forums" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:310 +msgid "Saved Searches" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" +#: ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Suggestions" msgstr "" -#: ../../Zotlabs/Module/Profile.php:106 -msgid "vcard" +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "See more..." msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "Files: shared with me" +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:107 -msgid "NEW" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:109 -#: ../../Zotlabs/Storage/Browser.php:380 -msgid "Last Modified" +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove all files" +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:111 -msgid "Remove this file" +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:200 +msgid "Admin" msgstr "" -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" msgstr "" -#: ../../Zotlabs/Module/Help.php:85 -msgid "Administrators" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" msgstr "" -#: ../../Zotlabs/Module/Help.php:86 -msgid "Developers" +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" msgstr "" -#: ../../Zotlabs/Module/Help.php:87 -msgid "Tutorials" +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" msgstr "" -#: ../../Zotlabs/Module/Help.php:98 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Commented Date" msgstr "" -#: ../../Zotlabs/Module/Help.php:99 -msgid "Contents" +#: ../../Zotlabs/Widget/Activity_order.php:94 +msgid "Order by last commented date" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:48 -msgid "Webpages App" +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Posted Date" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:49 -msgid "Provide managed web pages on your channel" +#: ../../Zotlabs/Widget/Activity_order.php:101 +msgid "Order by last posted date" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:69 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Date Unthreaded" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:70 -msgid "Import selected" +#: ../../Zotlabs/Widget/Activity_order.php:108 +msgid "Order unthreaded by date" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:93 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Widget/Activity_order.php:123 +msgid "Stream Order" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:94 -msgid "Export selected" +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:263 -msgid "Actions" +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:264 -msgid "Page Link" +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:265 -msgid "Page Title" +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:266 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Layouts.php:191 -msgid "Created" +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:267 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Menu.php:179 ../../Zotlabs/Module/Layouts.php:192 -msgid "Edited" +#: ../../Zotlabs/Widget/Affinity.php:54 +msgid "Refresh" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:295 -msgid "Invalid file type." +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "Error opening zip file" +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:318 -msgid "Invalid folder path." +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:345 -msgid "No webpage elements detected." +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:420 -msgid "Import complete." +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:14 -#: ../../Zotlabs/Module/Filestorage.php:53 -msgid "Deprecated!" +#: ../../Zotlabs/Widget/Activity_filter.php:37 +msgid "Direct Messages" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Permission Denied." +#: ../../Zotlabs/Widget/Activity_filter.php:41 +msgid "Show direct (private) messages" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:190 -msgid "Edit file permissions" +#: ../../Zotlabs/Widget/Activity_filter.php:46 +msgid "Events" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:203 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Widget/Activity_filter.php:50 +msgid "Show posts that include events" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:204 -msgid "Return to file list" +#: ../../Zotlabs/Widget/Activity_filter.php:56 +msgid "Polls" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:206 -#: ../../Zotlabs/Storage/Browser.php:386 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Widget/Activity_filter.php:60 +msgid "Show posts that include polls" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:207 -#: ../../Zotlabs/Storage/Browser.php:387 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Widget/Activity_filter.php:83 +#, php-format +msgid "Show posts related to the %s privacy group" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:209 -msgid "Share this file" +#: ../../Zotlabs/Widget/Activity_filter.php:92 +msgid "Show my privacy groups" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:210 -msgid "Show URL to this file" +#: ../../Zotlabs/Widget/Activity_filter.php:116 +msgid "Show posts to this forum" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Storage/Browser.php:552 -msgid "Show in your contacts shared folder" +#: ../../Zotlabs/Widget/Activity_filter.php:127 +msgid "Show forums" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Widget/Activity_filter.php:141 +msgid "Starred Posts" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Widget/Activity_filter.php:145 +msgid "Show posts that I have starred" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Widget/Activity_filter.php:156 +msgid "Personal Posts" msgstr "" -#: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 -msgid "Continue" +#: ../../Zotlabs/Widget/Activity_filter.php:160 +msgid "Show posts that mention or involve me" msgstr "" -#: ../../Zotlabs/Module/Connect.php:99 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Widget/Activity_filter.php:183 +#, php-format +msgid "Show posts that I have filed to %s" msgstr "" -#: ../../Zotlabs/Module/Connect.php:101 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Widget/Activity_filter.php:193 +msgid "Show filed post categories" msgstr "" -#: ../../Zotlabs/Module/Connect.php:102 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Widget/Activity_filter.php:207 +msgid "Panel search" msgstr "" -#: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Connect.php:124 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Widget/Activity_filter.php:217 +msgid "Filter by name" msgstr "" -#: ../../Zotlabs/Module/Connect.php:105 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Widget/Activity_filter.php:232 +msgid "Remove active filter" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../Zotlabs/Widget/Activity_filter.php:248 +msgid "Stream Filters" msgstr "" -#: ../../Zotlabs/Module/Connect.php:115 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" msgstr "" -#: ../../Zotlabs/Module/Connect.php:123 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" msgstr "" -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Not found" +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" msgstr "" -#: ../../Zotlabs/Module/Cloud.php:130 -msgid "Unknown error" +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" msgstr "" -#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" +#: ../../Zotlabs/Widget/Notifications.php:23 +#: ../../Zotlabs/Widget/Notifications.php:62 +msgid "Mark all notifications read" msgstr "" -#: ../../Zotlabs/Module/Share.php:120 -msgid "Post repeated" +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:65 +#: ../../Zotlabs/Widget/Notifications.php:172 +msgid "Show new posts only" msgstr "" -#: ../../Zotlabs/Module/Acl.php:370 -msgid "network" +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:66 +#: ../../Zotlabs/Widget/Notifications.php:142 +#: ../../Zotlabs/Widget/Notifications.php:173 +msgid "Filter by name or address" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:110 ../../Zotlabs/Module/Rpost.php:150 -msgid "Edit post" +#: ../../Zotlabs/Widget/Notifications.php:37 +msgid "New Home Activity Notifications" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:50 -msgid "Post not found." +#: ../../Zotlabs/Widget/Notifications.php:40 +msgid "View your home activity" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../Zotlabs/Widget/Notifications.php:43 +#: ../../Zotlabs/Widget/Notifications.php:169 +msgid "Mark all notifications seen" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Direct Messages" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:29 -msgid "Authorize" +#: ../../Zotlabs/Widget/Notifications.php:56 +msgid "New Direct Messages Notifications" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:30 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" +#: ../../Zotlabs/Widget/Notifications.php:59 +msgid "View your direct messages" msgstr "" -#: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:319 -msgid "Deny" +#: ../../Zotlabs/Widget/Notifications.php:74 +msgid "New Mails" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" +#: ../../Zotlabs/Widget/Notifications.php:75 +msgid "New Mails Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" +#: ../../Zotlabs/Widget/Notifications.php:78 +msgid "View your private mails" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" +#: ../../Zotlabs/Widget/Notifications.php:81 +msgid "Mark all messages seen" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" +#: ../../Zotlabs/Widget/Notifications.php:89 +msgid "New Events" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Widget/Notifications.php:90 +msgid "New Events Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Widget/Notifications.php:93 +msgid "View events" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "Mark all events seen" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "New Connections Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:311 -msgid "Disable" +#: ../../Zotlabs/Widget/Notifications.php:116 +msgid "New Files" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:314 -msgid "Enable" +#: ../../Zotlabs/Widget/Notifications.php:117 +msgid "New Files Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" +#: ../../Zotlabs/Widget/Notifications.php:124 +#: ../../Zotlabs/Widget/Notifications.php:125 +msgid "Notices" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Security.php:98 -#: ../../Zotlabs/Module/Admin/Accounts.php:307 -#: ../../Zotlabs/Module/Admin/Site.php:408 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Module/Admin.php:141 -msgid "Administration" +#: ../../Zotlabs/Widget/Notifications.php:128 +msgid "View all notices" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:344 -msgid "Toggle" +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Mark all notices seen" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:352 -msgid "Author: " +#: ../../Zotlabs/Widget/Notifications.php:152 +msgid "New Registrations" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Maintainer: " +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "New Registrations Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" +#: ../../Zotlabs/Widget/Notifications.php:163 +msgid "Public Stream Notifications" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" +#: ../../Zotlabs/Widget/Notifications.php:166 +msgid "View the public stream" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Widget/Notifications.php:181 +msgid "Sorry, you have got no notifications at the moment" msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" +#: ../../Zotlabs/Widget/Pinned.php:122 ../../Zotlabs/Widget/Pinned.php:123 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +#: ../../Zotlabs/Widget/Pinned.php:156 +msgid "Don't show" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +#: ../../Zotlabs/Widget/Settings_menu.php:32 +msgid "Account settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" +#: ../../Zotlabs/Widget/Settings_menu.php:38 +msgid "Channel settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." +#: ../../Zotlabs/Widget/Settings_menu.php:46 +msgid "Display settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Block public" +#: ../../Zotlabs/Widget/Settings_menu.php:53 +msgid "Manage locations" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Provide a cloud root directory" +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"The cloud root directory lists all channel names which provide public files" +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Show total disk space available to cloud uploads" +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Allowed email domains" +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Profile Creation" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:106 -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" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Upload profile photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Not allowed email domains" +#: ../../Zotlabs/Widget/Newmember.php:34 +msgid "Upload cover photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +#: ../../Zotlabs/Widget/Newmember.php:35 ../../include/nav.php:120 +msgid "Edit your profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Find and Connect with others" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View the directory" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:109 -msgid "Block communications from these sites" +#: ../../Zotlabs/Widget/Newmember.php:42 +msgid "Manage your connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Widget/Newmember.php:45 +msgid "Communicate" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "View your channel homepage" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:111 -msgid "Block communications from these channels" +#: ../../Zotlabs/Widget/Newmember.php:48 +msgid "View your network stream" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:112 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Widget/Newmember.php:54 +msgid "Documentation" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:113 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Widget/Newmember.php:57 +msgid "Missing Features?" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:113 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Widget/Newmember.php:59 +msgid "Pin apps to navigation bar" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:114 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Widget/Newmember.php:60 +msgid "Install more apps" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:115 -msgid "Allow SVG thumbnails in file browser" +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "View public stream" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:115 -msgid "WARNING: SVG images may contain malicious code." +#: ../../Zotlabs/Widget/Cover_photo.php:65 +msgid "Click to show more" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:116 -msgid "Allow embedded (inline) PDF files" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:128 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:135 +#: ../../include/contact_widgets.php:11 #, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:192 -#, php-format -msgid "Account '%s' blocked" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:200 -#, php-format -msgid "Account '%s' unblocked" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:240 -msgid "Unverified" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:243 -msgid "Expired" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:310 -msgid "Show verified registrations" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:310 -msgid "Show all registrations" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:312 -msgid "Select toggle" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:313 -msgid "Deny selected" +#: ../../include/contact_widgets.php:269 +msgid "Common Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:314 -msgid "Approve selected" +#: ../../include/contact_widgets.php:273 +#, php-format +msgid "View all %d common connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:315 -msgid "All registrations" +#: ../../include/conversation.php:183 +#, php-format +msgid "likes %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:315 -msgid "Verified registrations waiting for approval" +#: ../../include/conversation.php:186 +#, php-format +msgid "doesn't like %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -msgid "Request date" +#: ../../include/conversation.php:226 ../../include/conversation.php:228 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:316 -msgid "Requests" +#: ../../include/conversation.php:263 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:317 -msgid "No registrations available" +#: ../../include/conversation.php:267 ../../include/text.php:1236 +#: ../../include/text.php:1240 +msgid "poked" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:317 -msgid "No verified registrations available" +#: ../../include/conversation.php:781 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:321 -#: ../../Zotlabs/Module/Connedit.php:629 -msgid "Block" +#: ../../include/conversation.php:802 +msgid "Categories:" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:322 -#: ../../Zotlabs/Module/Connedit.php:629 -msgid "Unblock" +#: ../../include/conversation.php:803 +msgid "Filed under:" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:323 -msgid "Verified" +#: ../../include/conversation.php:828 +msgid "View in context" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:324 -msgid "Not yet verified" +#: ../../include/conversation.php:930 +msgid "remove" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:329 -msgid "ID" +#: ../../include/conversation.php:934 +msgid "Loading..." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:331 -msgid "All channels" +#: ../../include/conversation.php:936 +msgid "Delete Selected Items" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:332 -msgid "Register date" +#: ../../include/conversation.php:980 +msgid "View Source" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:333 -msgid "Last login" +#: ../../include/conversation.php:990 +msgid "Follow Thread" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:334 -msgid "Expires" +#: ../../include/conversation.php:999 +msgid "Unfollow Thread" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:335 -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" +#: ../../include/conversation.php:1113 +msgid "Edit Connection" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:337 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/conversation.php:1265 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:338 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/conversation.php:1265 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:112 -msgid "Invalid input" -msgstr "" +#: ../../include/conversation.php:1269 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Site.php:132 -msgid "Errors" -msgstr "" +#: ../../include/conversation.php:1271 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Site.php:225 -msgid "Site settings updated." +#: ../../include/conversation.php:1277 +msgid "and" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:262 -#: ../../Zotlabs/Module/Settings/Display.php:118 +#: ../../include/conversation.php:1280 #, php-format -msgid "%s - (Incompatible)" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1281 +#, php-format +msgid "%s like this." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "mobile" +#: ../../include/conversation.php:1281 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:271 -msgid "experimental" +#: ../../include/conversation.php:1332 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:82 +msgid "Set your location" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:273 -msgid "unsupported" +#: ../../include/conversation.php:1333 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:83 +msgid "Clear browser location" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Yes - with approval" +#: ../../include/conversation.php:1349 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:99 +msgid "Embed (existing) photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "My site is not a public server" +#: ../../include/conversation.php:1383 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:135 +msgid "Tag term:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "My site has paid access only" +#: ../../include/conversation.php:1384 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:136 +msgid "Where are you right now?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "My site has free access only" +#: ../../include/conversation.php:1389 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:141 +msgid "Choose a different album..." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "My site offers free accounts with optional paid upgrades" +#: ../../include/conversation.php:1393 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:145 +msgid "Comments enabled" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Default permission role for new accounts" +#: ../../include/conversation.php:1394 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:146 +msgid "Comments disabled" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"This role will be used for the first channel created after registration." +#: ../../include/conversation.php:1446 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:195 +msgid "Page link name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 -msgid "Minute(s)" +#: ../../include/conversation.php:1449 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:198 +msgid "Post as" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 -msgid "Hour(s)" +#: ../../include/conversation.php:1463 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:212 +msgid "Toggle voting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 -msgid "Day(s)" +#: ../../include/conversation.php:1464 +msgid "Toggle poll" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Week(s)" +#: ../../include/conversation.php:1465 +msgid "Option" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:357 -msgid "Month(s)" +#: ../../include/conversation.php:1466 +msgid "Add option" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Year(s)" +#: ../../include/conversation.php:1467 +msgid "Minutes" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:366 -msgid "Register verification delay" +#: ../../include/conversation.php:1467 +msgid "Hours" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "Time to wait before a registration can be verified" +#: ../../include/conversation.php:1467 +msgid "Days" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:372 -#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 -msgid "duration up from now" +#: ../../include/conversation.php:1468 +msgid "Allow multiple answers" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:388 -msgid "Register verification expiration time" +#: ../../include/conversation.php:1470 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:215 +msgid "Disable comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:391 -msgid "Time before an unverified registration will expire" +#: ../../include/conversation.php:1471 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:216 +msgid "Toggle comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:414 -msgid "File upload" +#: ../../include/conversation.php:1478 +msgid "Summary (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:415 -msgid "Policies" +#: ../../include/conversation.php:1481 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:224 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:422 -msgid "Banner/Logo" +#: ../../include/conversation.php:1504 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:247 +msgid "Other networks and post services" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:422 -msgid "Unfiltered HTML/CSS/JS is allowed" +#: ../../include/conversation.php:1507 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:250 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:171 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:314 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:423 -msgid "Administrator Information" +#: ../../include/conversation.php:1510 +#: ../../extend/addon/hubzilla-addons/hsse/hsse.php:253 +msgid "Set publish date" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:423 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../include/conversation.php:1758 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1761 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1764 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1767 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1770 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1773 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/channel.php:47 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:424 ../../Zotlabs/Module/Siteinfo.php:24 -msgid "Site Information" +#: ../../include/channel.php:80 +msgid "Empty name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:424 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" +#: ../../include/channel.php:83 +msgid "Name too long" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:425 -msgid "System language" +#: ../../include/channel.php:200 +msgid "No account identifier" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:426 -msgid "System theme" +#: ../../include/channel.php:295 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../include/channel.php:442 +msgid "Default Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:429 -msgid "Allow Feeds as Connections" +#: ../../include/channel.php:639 ../../include/channel.php:728 +msgid "Unable to retrieve modified identity" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:429 -msgid "(Heavy system resource usage)" +#: ../../include/channel.php:1410 +msgid "Requested channel is not available." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:430 -msgid "Maximum image size" +#: ../../include/channel.php:1567 +msgid "Create New Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:430 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../include/channel.php:1570 ../../include/nav.php:120 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:58 +msgid "Edit Profile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:431 -msgid "Minimum age" +#: ../../include/channel.php:1588 +msgid "Visible to everybody" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:431 -msgid "Minimum age (in years) for who may register on this site." +#: ../../include/channel.php:1665 ../../include/channel.php:1793 +msgid "Gender:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:432 -msgid "Which best describes the types of account offered by this hub?" +#: ../../include/channel.php:1666 ../../include/channel.php:1837 +msgid "Status:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:432 -msgid "This is displayed on the public server site list." +#: ../../include/channel.php:1667 ../../include/channel.php:1861 +msgid "Homepage:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:438 -msgid "Register text" +#: ../../include/channel.php:1668 +msgid "Online Now" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:440 -msgid "This text will be displayed prominently at the registration page" +#: ../../include/channel.php:1721 +msgid "Change your profile photo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:444 -msgid "Does this site allow new member registration?" +#: ../../include/channel.php:1748 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 +msgid "Female" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:451 -msgid "Configure the registration open days/hours" +#: ../../include/channel.php:1750 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 +msgid "Male" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:453 -msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +#: ../../include/channel.php:1752 +msgid "Trans" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:454 -msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a " -"dash `-` example: 1:800-1200" +#: ../../include/channel.php:1754 ../../include/selectors.php:60 +msgid "Neuter" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:455 -msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " -"2:900-1700" +#: ../../include/channel.php:1756 ../../include/selectors.php:60 +msgid "Non-specific" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:456 -msgid "" -"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " -"or 1-2,4-5:900-1700" +#: ../../include/channel.php:1798 +msgid "Like this channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:457 -msgid "Advanced examples:" +#: ../../include/channel.php:1822 +msgid "j F, Y" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:457 -#: ../../Zotlabs/Module/Settings/Channel.php:420 -msgid "or" +#: ../../include/channel.php:1823 +msgid "j F" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:458 -msgid "Check your configuration" +#: ../../include/channel.php:1830 +msgid "Birthday:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:462 -msgid "Max account registrations per day" +#: ../../include/channel.php:1843 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:464 -msgid "Unlimited if zero or no value - default 50" +#: ../../include/channel.php:1855 +msgid "Tags:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:468 -msgid "Max account registrations from same IP" +#: ../../include/channel.php:1859 +msgid "Sexual Preference:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:470 -msgid "Unlimited if zero or no value - default 3" +#: ../../include/channel.php:1865 +msgid "Political Views:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:476 -msgid "Auto channel create" +#: ../../include/channel.php:1867 +msgid "Religion:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:478 -msgid "" -"If disabled the channel will be created in a separate step during the " -"registration process" +#: ../../include/channel.php:1871 +msgid "Hobbies/Interests:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:482 -msgid "Require invite code" +#: ../../include/channel.php:1873 +msgid "Likes:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:487 -msgid "Allow invite code" +#: ../../include/channel.php:1875 +msgid "Dislikes:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:492 -msgid "Require email address" +#: ../../include/channel.php:1877 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:494 -msgid "The provided email address will be verified (recommended)" +#: ../../include/channel.php:1879 +msgid "My other channels:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:498 -msgid "Abandon account after x days" +#: ../../include/channel.php:1881 +msgid "Musical interests:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:500 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +#: ../../include/channel.php:1883 +msgid "Books, literature:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:505 -msgid "Site homepage to show visitors (default: login box)" +#: ../../include/channel.php:1885 +msgid "Television:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:505 -msgid "" -"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +#: ../../include/channel.php:1887 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:506 -msgid "Preserve site homepage URL" +#: ../../include/channel.php:1889 +msgid "Love/Romance:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:506 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +#: ../../include/channel.php:1891 +msgid "Work/employment:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:507 -msgid "Allowed friend domains" +#: ../../include/channel.php:1893 +msgid "School/education:" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:507 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +#: ../../include/channel.php:1916 +msgid "Like this thing" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "Force publish" +#: ../../include/features.php:86 +msgid "Start calendar week on Monday" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +#: ../../include/features.php:87 +msgid "Default is Sunday" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:509 -msgid "Import Public Streams" +#: ../../include/features.php:94 +msgid "Event Timezone Selection" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:509 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +#: ../../include/features.php:95 +msgid "Allow event creation in timezones other than your own." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:510 -msgid "Site only Public Streams" +#: ../../include/features.php:108 +msgid "Search by Date" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:510 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." +#: ../../include/features.php:109 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:511 -msgid "Allow anybody on the internet to access the Public streams" +#: ../../include/features.php:116 +msgid "Tag Cloud" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:511 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." +#: ../../include/features.php:117 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:512 -msgid "Only import Public stream posts with this text" +#: ../../include/features.php:124 ../../include/features.php:358 +msgid "Use blog/list mode" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:512 -#: ../../Zotlabs/Module/Admin/Site.php:513 -#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../include/features.php:125 ../../include/features.php:359 +msgid "Comments will be displayed separately" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:513 -msgid "Do not import Public stream posts with this text" +#: ../../include/features.php:137 +msgid "Connection Filtering" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:516 -msgid "Login on Homepage" +#: ../../include/features.php:138 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:516 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." +#: ../../include/features.php:146 +msgid "Conversation" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:517 -msgid "Enable context help" +#: ../../include/features.php:158 +msgid "Emoji Reactions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:517 -msgid "" -"Display contextual help for the current page when the help button is pressed." +#: ../../include/features.php:159 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:519 -msgid "Reply-to email address for system generated email." +#: ../../include/features.php:166 +msgid "Dislike Posts" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:520 -msgid "Sender (From) email address for system generated email." +#: ../../include/features.php:167 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:521 -msgid "Name of email sender for system generated email." +#: ../../include/features.php:174 +msgid "Star Posts" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:523 -msgid "Directory Server URL" +#: ../../include/features.php:175 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:523 -msgid "Default directory server" +#: ../../include/features.php:182 +msgid "Reply on comment" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:525 -msgid "Enable SSE Notifications" +#: ../../include/features.php:183 +msgid "Ability to reply on selected comment" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:525 -msgid "" -"If disabled, traditional polling will be used. Warning: this setting might " -"not be suited for shared hosting" +#: ../../include/features.php:196 +msgid "Advanced Directory Search" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:527 -msgid "Proxy user" +#: ../../include/features.php:197 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:528 -msgid "Proxy URL" +#: ../../include/features.php:206 +msgid "Editor" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:529 -msgid "Network timeout" +#: ../../include/features.php:210 +msgid "Post Categories" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../include/features.php:211 +msgid "Add categories to your posts" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:530 -msgid "Delivery interval" +#: ../../include/features.php:218 +msgid "Large Photos" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:530 +#: ../../include/features.php:219 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:531 -msgid "Deliveries per process" +#: ../../include/features.php:226 +msgid "Even More Encryption" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:531 +#: ../../include/features.php:227 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:532 -msgid "Queue Threshold" +#: ../../include/features.php:234 +msgid "Disable Comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:532 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." +#: ../../include/features.php:235 +msgid "Provide the option to disable comments for a post" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:533 -msgid "Poll interval" +#: ../../include/features.php:242 +msgid "Delayed Posting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:533 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../include/features.php:243 +msgid "Allow posts to be published at a later date" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:534 -msgid "Path to ImageMagick convert program" +#: ../../include/features.php:250 +msgid "Content Expiration" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:534 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" +#: ../../include/features.php:251 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:535 -msgid "Maximum Load Average" +#: ../../include/features.php:258 +msgid "Suppress Duplicate Posts/Comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:535 +#: ../../include/features.php:259 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:536 -msgid "Expiration period in days for imported (grid/network) content" +#: ../../include/features.php:266 +msgid "Auto-save drafts of posts and comments" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:536 -msgid "0 for no expiration of imported content" +#: ../../include/features.php:267 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:537 -msgid "" -"Do not expire any posts which have comments less than this many days ago" +#: ../../include/features.php:276 +msgid "Manage" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:538 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" +#: ../../include/features.php:280 +msgid "Navigation Channel Select" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:538 -#, php-format -msgid "Create this page first. Default is %s/register" +#: ../../include/features.php:281 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:539 -msgid "Page to display after creating a new channel" +#: ../../include/features.php:294 +msgid "Events Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:539 -msgid "Default: profiles" +#: ../../include/features.php:295 +msgid "Ability to display only events" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:540 -msgid "Optional: site location" +#: ../../include/features.php:302 +msgid "Polls Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:540 -msgid "Region or country" +#: ../../include/features.php:303 +msgid "Ability to display only polls" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:625 -#: ../../Zotlabs/Module/Admin/Site.php:626 -msgid "Invalid 24h time value (hhmm/hmm)" +#: ../../include/features.php:311 +msgid "Save search terms for re-use" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../include/features.php:319 +msgid "Ability to file posts under folders" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../include/features.php:326 +msgid "Alternate Stream Order" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../include/features.php:327 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../include/features.php:334 +msgid "Contact Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +#: ../../include/features.php:335 +msgid "Ability to display only posts of a selected contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" +#: ../../include/features.php:342 +msgid "Forum Filter" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:343 +msgid "Ability to display only posts of a specific forum" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:350 +msgid "Personal Posts Filter" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../include/features.php:351 +msgid "Ability to display only posts that you've interacted on" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" +#: ../../include/features.php:372 +msgid "Photo Location" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" +#: ../../include/features.php:373 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" +#: ../../include/features.php:386 +msgid "Advanced Profiles" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../include/features.php:387 +msgid "Additional profile sections and selections" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../include/features.php:394 +msgid "Profile Import/Export" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../include/features.php:395 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" +#: ../../include/features.php:402 +msgid "Multiple Profiles" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:150 -#: ../../Zotlabs/Module/Directory.php:362 -msgid "Censor" +#: ../../include/features.php:403 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Directory.php:362 -msgid "Uncensor" +#: ../../include/auth.php:194 +msgid "Delegation session ended." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" +#: ../../include/auth.php:198 +msgid "Logged out." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" +#: ../../include/auth.php:294 +msgid "Email validation is incomplete. Please check your email." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" +#: ../../include/auth.php:310 +msgid "Failed authentication" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/auth.php:320 +#: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:188 +msgid "Login failed." msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/text.php:523 +msgid "prev" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." +#: ../../include/text.php:525 +msgid "first" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." +#: ../../include/text.php:554 +msgid "last" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." +#: ../../include/text.php:557 +msgid "next" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" +#: ../../include/text.php:575 +msgid "older" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" +#: ../../include/text.php:577 +msgid "newer" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" +#: ../../include/text.php:1018 +msgid "No connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Account language (for emails)" +#: ../../include/text.php:1070 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" +#: ../../include/text.php:1133 +#, php-format +msgid "Network: %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" +#: ../../include/text.php:1236 ../../include/text.php:1240 +msgid "poke" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" +#: ../../include/text.php:1241 +msgid "ping" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" +#: ../../include/text.php:1241 +msgid "pinged" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" +#: ../../include/text.php:1242 +msgid "prod" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" +#: ../../include/text.php:1242 +msgid "prodded" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" +#: ../../include/text.php:1243 +msgid "slap" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" +#: ../../include/text.php:1243 +msgid "slapped" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" +#: ../../include/text.php:1244 +msgid "finger" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" +#: ../../include/text.php:1244 +msgid "fingered" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" +#: ../../include/text.php:1245 +msgid "rebuff" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" +#: ../../include/text.php:1245 +msgid "rebuffed" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" +#: ../../include/text.php:1268 +msgid "happy" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" +#: ../../include/text.php:1269 +msgid "sad" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" +#: ../../include/text.php:1270 +msgid "mellow" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" +#: ../../include/text.php:1271 +msgid "tired" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Update has been marked successful" +#: ../../include/text.php:1272 +msgid "perky" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 -#, php-format -msgid "Verification of update %s failed. Check system logs." +#: ../../include/text.php:1273 +msgid "angry" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 -#: ../../Zotlabs/Module/Admin/Dbsync.php:74 -#, php-format -msgid "Update %s was successfully applied." +#: ../../include/text.php:1274 +msgid "stupefied" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 -#, php-format -msgid "Verifying update %s did not return a status. Unknown if it succeeded." +#: ../../include/text.php:1275 +msgid "puzzled" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:42 -#, php-format -msgid "Update %s does not contain a verification function." +#: ../../include/text.php:1276 +msgid "interested" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 -#: ../../Zotlabs/Module/Admin/Dbsync.php:81 -#, php-format -msgid "Update function %s could not be found." +#: ../../include/text.php:1277 +msgid "bitter" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:71 -#, php-format -msgid "Executing update procedure %s failed. Check system logs." +#: ../../include/text.php:1278 +msgid "cheerful" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:78 -#, php-format -msgid "" -"Update %s did not return a status. It cannot be determined if it was " -"successful." +#: ../../include/text.php:1279 +msgid "alive" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:99 -msgid "Failed Updates" +#: ../../include/text.php:1280 +msgid "annoyed" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:101 -msgid "Mark success (if update was manually applied)" +#: ../../include/text.php:1281 +msgid "anxious" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:102 -msgid "Attempt to verify this update if a verification procedure exists" +#: ../../include/text.php:1282 +msgid "cranky" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:103 -msgid "Attempt to execute this update step automatically" +#: ../../include/text.php:1283 +msgid "disturbed" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:108 -msgid "No failed updates." +#: ../../include/text.php:1284 +msgid "frustrated" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:290 -#, php-format -msgid "Plugin %s disabled." +#: ../../include/text.php:1285 +msgid "depressed" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:295 -#, php-format -msgid "Plugin %s enabled." +#: ../../include/text.php:1286 +msgid "motivated" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Minimum project version: " +#: ../../include/text.php:1287 +msgid "relaxed" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Maximum project version: " +#: ../../include/text.php:1288 +msgid "surprised" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Minimum PHP version: " +#: ../../include/text.php:1476 ../../include/js_strings.php:99 +msgid "Monday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Compatible Server Roles: " +#: ../../include/text.php:1476 ../../include/js_strings.php:100 +msgid "Tuesday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:358 -msgid "Requires: " +#: ../../include/text.php:1476 ../../include/js_strings.php:101 +msgid "Wednesday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:359 -#: ../../Zotlabs/Module/Admin/Addons.php:446 -msgid "Disabled - version incompatibility" +#: ../../include/text.php:1476 ../../include/js_strings.php:102 +msgid "Thursday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:415 -msgid "Enter the public git repository URL of the addon repo." +#: ../../include/text.php:1476 ../../include/js_strings.php:103 +msgid "Friday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:416 -msgid "Addon repo git URL" +#: ../../include/text.php:1476 ../../include/js_strings.php:104 +msgid "Saturday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "Custom repo name" +#: ../../include/text.php:1476 ../../include/js_strings.php:98 +msgid "Sunday" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:417 -msgid "(optional)" +#: ../../include/text.php:1480 ../../include/js_strings.php:74 +msgid "January" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:418 -msgid "Download Addon Repo" +#: ../../include/text.php:1480 ../../include/js_strings.php:75 +msgid "February" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:425 -msgid "Install new repo" +#: ../../include/text.php:1480 ../../include/js_strings.php:76 +msgid "March" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:426 ../../Zotlabs/Lib/Apps.php:536 -msgid "Install" +#: ../../include/text.php:1480 ../../include/js_strings.php:77 +msgid "April" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:449 -msgid "Manage Repos" +#: ../../include/text.php:1480 +msgid "May" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:450 -msgid "Installed Addon Repositories" +#: ../../include/text.php:1480 ../../include/js_strings.php:79 +msgid "June" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:451 -msgid "Install a New Addon Repository" +#: ../../include/text.php:1480 ../../include/js_strings.php:80 +msgid "July" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:458 -msgid "Switch branch" +#: ../../include/text.php:1480 ../../include/js_strings.php:81 +msgid "August" msgstr "" -#: ../../Zotlabs/Module/Apps.php:50 -msgid "Installed Apps" +#: ../../include/text.php:1480 ../../include/js_strings.php:82 +msgid "September" msgstr "" -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage Apps" +#: ../../include/text.php:1480 ../../include/js_strings.php:83 +msgid "October" msgstr "" -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create Custom App" +#: ../../include/text.php:1480 ../../include/js_strings.php:84 +msgid "November" msgstr "" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" +#: ../../include/text.php:1480 ../../include/js_strings.php:85 +msgid "December" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../include/text.php:1556 +msgid "Unknown Attachment" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../include/text.php:1558 ../../include/feedutils.php:872 +msgid "unknown" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " +#: ../../include/text.php:1599 +msgid "remove category" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../include/text.php:1676 +msgid "remove from file" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" +#: ../../include/text.php:1845 ../../include/message.php:13 +msgid "Download binary/encrypted content" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" +#: ../../include/text.php:1916 +msgid "Poll has ended." msgstr "" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Remove Channel" +#: ../../include/text.php:1919 +#, php-format +msgid "Poll ends: %s" msgstr "" -#: ../../Zotlabs/Module/Regate.php:81 -msgid "Email resent" +#: ../../include/text.php:2098 ../../include/language.php:428 +msgid "default" msgstr "" -#: ../../Zotlabs/Module/Regate.php:81 -msgid "Email resend failed" +#: ../../include/text.php:2106 +msgid "Page layout" msgstr "" -#: ../../Zotlabs/Module/Regate.php:106 -msgid "Verification successful" +#: ../../include/text.php:2106 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../Zotlabs/Module/Regate.php:150 -msgid "Account successfull created" +#: ../../include/text.php:2117 +msgid "HTML" msgstr "" -#: ../../Zotlabs/Module/Regate.php:191 -msgid "Channel successfull created" +#: ../../include/text.php:2120 +msgid "Comanche Layout" msgstr "" -#: ../../Zotlabs/Module/Regate.php:197 -msgid "Automatic channel creation failed. Please create a channel." +#: ../../include/text.php:2125 +msgid "PHP" msgstr "" -#: ../../Zotlabs/Module/Regate.php:209 -msgid "Account creation error" +#: ../../include/text.php:2134 +msgid "Page content type" msgstr "" -#: ../../Zotlabs/Module/Regate.php:221 -msgid "Verify failed" +#: ../../include/text.php:2267 +msgid "activity" msgstr "" -#: ../../Zotlabs/Module/Regate.php:226 -msgid "Token verification failed" +#: ../../include/text.php:2270 +msgid "poll" msgstr "" -#: ../../Zotlabs/Module/Regate.php:231 -msgid "Request not inside time frame" +#: ../../include/text.php:2383 +msgid "a-z, 0-9, -, and _ only" msgstr "" -#: ../../Zotlabs/Module/Regate.php:237 ../../Zotlabs/Module/Regate.php:267 -msgid "Identity unknown" +#: ../../include/text.php:2709 +msgid "Design Tools" msgstr "" -#: ../../Zotlabs/Module/Regate.php:243 -msgid "dId2 mistaken" +#: ../../include/text.php:2715 +msgid "Pages" msgstr "" -#: ../../Zotlabs/Module/Regate.php:271 -msgid "Your Registration ID" +#: ../../include/text.php:2727 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Regate.php:284 ../../Zotlabs/Module/Regate.php:376 -#: ../../Zotlabs/Module/Regate.php:408 -msgid "Registration verification" +#: ../../include/text.php:2728 +msgid "Import website..." msgstr "" -#: ../../Zotlabs/Module/Regate.php:291 ../../Zotlabs/Module/Regate.php:413 -msgid "Hold on, you can start verification in" +#: ../../include/text.php:2729 +msgid "Select folder to import" msgstr "" -#: ../../Zotlabs/Module/Regate.php:292 -msgid "Please remember your verification token for ID" +#: ../../include/text.php:2730 +msgid "Import from a zipped folder:" msgstr "" -#: ../../Zotlabs/Module/Regate.php:294 -msgid "Token validity" +#: ../../include/text.php:2731 +msgid "Import from cloud files:" msgstr "" -#: ../../Zotlabs/Module/Regate.php:330 -msgid "Resend email" +#: ../../include/text.php:2732 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../Zotlabs/Module/Regate.php:335 -msgid "Registration status" +#: ../../include/text.php:2733 +msgid "Enter path to website files" msgstr "" -#: ../../Zotlabs/Module/Regate.php:338 -msgid "Verification successful!" +#: ../../include/text.php:2734 +msgid "Select folder" msgstr "" -#: ../../Zotlabs/Module/Regate.php:339 -msgid "Your login ID is" +#: ../../include/text.php:2735 +msgid "Export website..." msgstr "" -#: ../../Zotlabs/Module/Regate.php:340 -msgid "" -"After your account has been approved by our administrator you will be able " -"to login with your login ID and your provided password." +#: ../../include/text.php:2736 +msgid "Export to a zip file" msgstr "" -#: ../../Zotlabs/Module/Regate.php:352 -msgid "Registration request revoked" +#: ../../include/text.php:2737 +msgid "website.zip" msgstr "" -#: ../../Zotlabs/Module/Regate.php:353 -msgid "Sorry for any inconvience. Thank you for your response." +#: ../../include/text.php:2738 +msgid "Enter a name for the zip file." msgstr "" -#: ../../Zotlabs/Module/Regate.php:377 -msgid "Please enter your verification token for ID" +#: ../../include/text.php:2739 +msgid "Export to cloud files" msgstr "" -#: ../../Zotlabs/Module/Regate.php:378 ../../Zotlabs/Module/Regate.php:405 -msgid "Please check your email!" +#: ../../include/text.php:2740 +msgid "/path/to/export/folder" msgstr "" -#: ../../Zotlabs/Module/Regate.php:388 -msgid "Verification token" +#: ../../include/text.php:2741 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../Zotlabs/Module/Regate.php:399 -msgid "ID expired" +#: ../../include/text.php:2742 +msgid "Specify folder" msgstr "" -#: ../../Zotlabs/Module/Regate.php:414 -msgid "You will require the verification token for ID" +#: ../../include/message.php:41 +msgid "Unable to determine sender." msgstr "" -#: ../../Zotlabs/Module/Regate.php:423 -msgid "Unknown or expired ID" +#: ../../include/message.php:80 +msgid "No recipient provided." msgstr "" -#: ../../Zotlabs/Module/Regate.php:434 -msgid "dId2 malformed" +#: ../../include/message.php:85 +msgid "[no subject]" msgstr "" -#: ../../Zotlabs/Module/Events.php:468 -msgid "Edit event title" +#: ../../include/message.php:214 +msgid "Stored post could not be verified." msgstr "" -#: ../../Zotlabs/Module/Events.php:470 -msgid "Categories (comma-separated list)" +#: ../../include/markdown.php:202 ../../include/bbcode.php:559 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Events.php:471 -msgid "Edit Category" +#: ../../include/markdown.php:255 ../../include/bbcode.php:644 +msgid "spoiler" msgstr "" -#: ../../Zotlabs/Module/Events.php:471 -msgid "Category" +#: ../../include/acl_selectors.php:100 +msgid "Profile-Based Privacy Groups" msgstr "" -#: ../../Zotlabs/Module/Events.php:474 -msgid "Edit start date and time" +#: ../../include/acl_selectors.php:119 +msgid "Private Forum" msgstr "" -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Events.php:478 -msgid "Finish date and time are not known or not relevant" +#: ../../include/acl_selectors.php:143 +msgid "Share with" msgstr "" -#: ../../Zotlabs/Module/Events.php:477 -msgid "Edit finish date and time" +#: ../../include/acl_selectors.php:144 +msgid "Custom selection" msgstr "" -#: ../../Zotlabs/Module/Events.php:477 -msgid "Finish date and time" +#: ../../include/acl_selectors.php:146 +msgid "" +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " +"limit the scope of \"Allow\"." msgstr "" -#: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Events.php:480 -msgid "Adjust for viewer timezone" +#: ../../include/acl_selectors.php:148 +msgid "Don't allow" msgstr "" -#: ../../Zotlabs/Module/Events.php:479 +#: ../../include/acl_selectors.php:181 +#, php-format msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../Zotlabs/Module/Events.php:481 -msgid "Edit Description" +#: ../../include/opengraph.php:56 +#, php-format +msgid "This is the home page of %s." msgstr "" -#: ../../Zotlabs/Module/Events.php:483 -msgid "Edit Location" +#: ../../include/taxonomy.php:323 +msgid "Trending" msgstr "" -#: ../../Zotlabs/Module/Events.php:502 -msgid "Advanced Options" +#: ../../include/taxonomy.php:561 +msgid "Keywords" msgstr "" -#: ../../Zotlabs/Module/Events.php:613 -msgid "l, F j" +#: ../../include/taxonomy.php:582 +msgid "have" msgstr "" -#: ../../Zotlabs/Module/Events.php:696 -msgid "Edit Event" +#: ../../include/taxonomy.php:582 +msgid "has" msgstr "" -#: ../../Zotlabs/Module/Events.php:696 -msgid "Create Event" +#: ../../include/taxonomy.php:583 +msgid "want" msgstr "" -#: ../../Zotlabs/Module/Events.php:739 -msgid "Event removed" +#: ../../include/taxonomy.php:583 +msgid "wants" msgstr "" -#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../include/taxonomy.php:584 +msgid "likes" msgstr "" -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" +#: ../../include/taxonomy.php:585 +msgid "dislikes" msgstr "" -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" +#: ../../include/import.php:29 +msgid "Unable to import a removed channel." msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." +#: ../../include/import.php:55 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" +#: ../../include/import.php:76 +#: ../../extend/addon/hubzilla-addons/diaspora/import_diaspora.php:44 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" +#: ../../include/import.php:121 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" +#: ../../include/nav.php:95 +msgid "Remote authentication" msgstr "" -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" +#: ../../include/nav.php:95 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Manage your channels" msgstr "" -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" +#: ../../include/nav.php:104 +msgid "Manage your privacy groups" msgstr "" -#: ../../Zotlabs/Module/Chanview.php:132 -msgid "toggle full screen mode" +#: ../../include/nav.php:106 +msgid "Account/Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Pubstream.php:20 -msgid "Public Stream App" +#: ../../include/nav.php:112 ../../include/nav.php:142 +#: ../../include/nav.php:163 ../../boot.php:1715 +msgid "Logout" msgstr "" -#: ../../Zotlabs/Module/Pubstream.php:21 -msgid "The unmoderated public stream of this hub" +#: ../../include/nav.php:112 ../../include/nav.php:142 +msgid "End this session" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" +#: ../../include/nav.php:115 +msgid "Your profile page" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" +#: ../../include/nav.php:118 +msgid "Manage/Edit profiles" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:29 -msgid "Permission category name is required." +#: ../../include/nav.php:127 ../../include/nav.php:131 +msgid "Sign in" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:48 -msgid "Permission category saved." +#: ../../include/nav.php:161 +msgid "Take me home" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:63 -msgid "Permission Categories App" +#: ../../include/nav.php:163 +msgid "Log me out of this site" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:64 -msgid "Create custom connection permission limits" +#: ../../include/nav.php:168 +msgid "Create an account" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:80 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +#: ../../include/nav.php:180 +msgid "Help and documentation" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:113 ../../Zotlabs/Lib/Apps.php:374 -msgid "Permission Categories" +#: ../../include/nav.php:194 +msgid "Search site @name, !forum, #tag, ?docs, content" msgstr "" -#: ../../Zotlabs/Module/Permcats.php:121 -msgid "Permission category name" +#: ../../include/nav.php:200 +msgid "Site Setup and Configuration" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 -msgid "Token verification failed." +#: ../../include/nav.php:330 +msgid "@name, !forum, #tag, ?doc, content" msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" +#: ../../include/nav.php:331 +msgid "Please wait..." msgstr "" -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." +#: ../../include/nav.php:337 +msgid "Add Apps" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" +#: ../../include/nav.php:338 +msgid "Arrange Apps" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " +#: ../../include/nav.php:339 +msgid "Toggle System Apps" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../include/nav.php:424 +msgid "Status Messages and Posts" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../include/nav.php:437 +msgid "Profile Details" msgstr "" -#: ../../Zotlabs/Module/Cal.php:62 -msgid "Permissions denied." +#: ../../include/nav.php:447 ../../include/photos.php:666 +msgid "Photo Albums" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" +#: ../../include/nav.php:455 +msgid "Files and Storage" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of Pinned Navbar Apps" +#: ../../include/nav.php:493 +msgid "Saved Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of App Tray Apps" +#: ../../include/nav.php:504 +msgid "View Cards" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" +#: ../../include/nav.php:515 +msgid "View Articles" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "Use arrows to move the corresponding app up or down in the app tray" +#: ../../include/nav.php:527 +msgid "View Webpages" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../include/language.php:441 +msgid "Select an alternate language" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../include/zid.php:403 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: ../../Zotlabs/Module/Moderate.php:67 -msgid "Comment approved" +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../Zotlabs/Module/Moderate.php:71 -msgid "Comment deleted" +#: ../../include/activities.php:42 +msgid " and " msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../include/activities.php:50 +msgid "public profile" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:109 -msgid "Remove Account" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../Zotlabs/Module/Lang.php:17 -msgid "Language App" +#: ../../include/cdav.php:157 +msgid "INVALID EVENT DISMISSED!" msgstr "" -#: ../../Zotlabs/Module/Lang.php:18 -msgid "Change UI language" +#: ../../include/cdav.php:158 +msgid "Summary: " msgstr "" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "Channel Export App" +#: ../../include/cdav.php:159 +msgid "Date: " msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your channel" +#: ../../include/cdav.php:160 ../../include/cdav.php:168 +msgid "Reason: " msgstr "" -#: ../../Zotlabs/Module/Uexport.php:73 ../../Zotlabs/Module/Uexport.php:74 -msgid "Export Channel" +#: ../../include/cdav.php:166 +msgid "INVALID CARD DISMISSED!" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:75 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +#: ../../include/cdav.php:167 +msgid "Name: " msgstr "" -#: ../../Zotlabs/Module/Uexport.php:76 -msgid "Export Content" +#: ../../include/photos.php:151 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:77 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." +#: ../../include/photos.php:162 +msgid "Image file is empty." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:79 -msgid "Export your posts from a given year." +#: ../../include/photos.php:324 +msgid "Photo storage failed." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:81 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +#: ../../include/photos.php:373 +msgid "a new photo" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:82 +#: ../../include/photos.php:377 #, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:83 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" +#: ../../include/photos.php:671 +msgid "Upload New Photos" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:84 +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "" + +#: ../../include/js_strings.php:8 #, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +msgid "%s show less" msgstr "" -#: ../../Zotlabs/Module/Display.php:372 -msgid "Article" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../Zotlabs/Module/Display.php:417 -msgid "Item has been removed." +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../Zotlabs/Module/Impel.php:185 -#, php-format -msgid "%s element installed" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../Zotlabs/Module/Impel.php:188 -#, php-format -msgid "%s element installation failed" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Your real name is recommended." +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:160 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:165 -msgid "" -"This will be used to create a unique network address (like an email address)." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:167 -msgid "Allowed characters are a-z 0-9, - and _" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:175 -msgid "Channel name" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Channel role and privacy" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." +#: ../../include/js_strings.php:26 +msgid "lovely" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "Read more about channel permission roles" +#: ../../include/js_strings.php:27 +msgid "wonderful" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "Create a Channel" +#: ../../include/js_strings.php:28 +msgid "fantastic" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." +#: ../../include/js_strings.php:29 +msgid "great" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:183 +#: ../../include/js_strings.php:30 msgid "" -"or import an existing channel from another location." +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:188 -msgid "Validate" +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." msgstr "" -#: ../../Zotlabs/Module/Ping.php:337 ../../Zotlabs/Lib/Enotify.php:948 -msgid "sent you a private message" +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." msgstr "" -#: ../../Zotlabs/Module/Ping.php:393 ../../Zotlabs/Lib/Enotify.php:914 -msgid "added your channel" +#: ../../include/js_strings.php:33 +msgid "A channel name is required." msgstr "" -#: ../../Zotlabs/Module/Ping.php:418 -msgid "requires approval" +#: ../../include/js_strings.php:34 +msgid "This is a " msgstr "" -#: ../../Zotlabs/Module/Ping.php:428 ../../Zotlabs/Lib/Enotify.php:957 -msgid "g A l F d" +#: ../../include/js_strings.php:35 +msgid " channel name" msgstr "" -#: ../../Zotlabs/Module/Ping.php:446 ../../Zotlabs/Lib/Enotify.php:960 -msgid "[today]" +#: ../../include/js_strings.php:36 +msgid "Back to reply" msgstr "" -#: ../../Zotlabs/Module/Ping.php:456 -msgid "posted an event" +#: ../../include/js_strings.php:37 +msgid "Pinned" msgstr "" -#: ../../Zotlabs/Module/Ping.php:490 ../../Zotlabs/Lib/Enotify.php:829 -#: ../../Zotlabs/Lib/Enotify.php:931 -msgid "shared a file with you" -msgstr "" +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d minutes" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 -msgid "Private forum" +#: ../../include/js_strings.php:46 +#, php-format +msgid "about %d hours" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:47 +#, php-format +msgid "%d days" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:48 +#, php-format +msgid "%d months" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:49 +#, php-format +msgid "%d years" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/js_strings.php:54 +msgid "timeago.prefixAgo" msgstr "" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 -msgid "Public forum" +#: ../../include/js_strings.php:55 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../Zotlabs/Module/Dircensor.php:42 -msgid "Entry censored" +#: ../../include/js_strings.php:56 +msgid "timeago.suffixAgo" msgstr "" -#: ../../Zotlabs/Module/Dircensor.php:45 -msgid "Entry uncensored" +#: ../../include/js_strings.php:57 +msgid "timeago.suffixFromNow" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../include/js_strings.php:60 +msgid "less than a minute" msgstr "" -#: ../../Zotlabs/Module/Mood.php:134 -msgid "Mood App" +#: ../../include/js_strings.php:61 +msgid "about a minute" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 -msgid "Set your current mood and tell your friends" +#: ../../include/js_strings.php:63 +msgid "about an hour" msgstr "" -#: ../../Zotlabs/Module/Mood.php:154 ../../Zotlabs/Lib/Apps.php:350 -msgid "Mood" +#: ../../include/js_strings.php:65 +msgid "a day" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" +#: ../../include/js_strings.php:67 +msgid "about a month" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" +#: ../../include/js_strings.php:69 +msgid "about a year" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" +#: ../../include/js_strings.php:71 +msgid " " msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" +#: ../../include/js_strings.php:72 +msgid "timeago.numbers" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" +#: ../../include/js_strings.php:78 +msgctxt "long" +msgid "May" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" +#: ../../include/js_strings.php:86 +msgid "Jan" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" +#: ../../include/js_strings.php:87 +msgid "Feb" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:36 -#, php-format -msgid "Version %s" +#: ../../include/js_strings.php:88 +msgid "Mar" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" +#: ../../include/js_strings.php:89 +msgid "Apr" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" +#: ../../include/js_strings.php:90 +msgctxt "short" +msgid "May" msgstr "" -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." +#: ../../include/js_strings.php:91 +msgid "Jun" msgstr "" -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." +#: ../../include/js_strings.php:92 +msgid "Jul" msgstr "" -#: ../../Zotlabs/Module/Appman.php:132 -msgid "Embed code" +#: ../../include/js_strings.php:93 +msgid "Aug" msgstr "" -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Edit App" +#: ../../include/js_strings.php:94 +msgid "Sep" msgstr "" -#: ../../Zotlabs/Module/Appman.php:138 -msgid "Create App" +#: ../../include/js_strings.php:95 +msgid "Oct" msgstr "" -#: ../../Zotlabs/Module/Appman.php:143 -msgid "Name of app" +#: ../../include/js_strings.php:96 +msgid "Nov" msgstr "" -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Location (URL) of app" +#: ../../include/js_strings.php:97 +msgid "Dec" msgstr "" -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Photo icon URL" +#: ../../include/js_strings.php:105 +msgid "Sun" msgstr "" -#: ../../Zotlabs/Module/Appman.php:146 -msgid "80 x 80 pixels - optional" +#: ../../include/js_strings.php:106 +msgid "Mon" msgstr "" -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Categories (optional, comma separated list)" +#: ../../include/js_strings.php:107 +msgid "Tue" msgstr "" -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Version ID" +#: ../../include/js_strings.php:108 +msgid "Wed" msgstr "" -#: ../../Zotlabs/Module/Appman.php:149 -msgid "Price of app" +#: ../../include/js_strings.php:109 +msgid "Thu" msgstr "" -#: ../../Zotlabs/Module/Appman.php:150 -msgid "Location (URL) to purchase app" +#: ../../include/js_strings.php:110 +msgid "Fri" msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" +#: ../../include/js_strings.php:111 +msgid "Sat" msgstr "" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" +#: ../../include/js_strings.php:112 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" +#: ../../include/js_strings.php:113 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../Zotlabs/Module/Admin.php:123 -msgid "Message queues" +#: ../../include/js_strings.php:114 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../Zotlabs/Module/Admin.php:137 -msgid "Your software should be updated" +#: ../../include/js_strings.php:115 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" +#: ../../include/js_strings.php:116 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" +#: ../../include/js_strings.php:119 +msgid "Please stand by while your download is being prepared." msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" +#: ../../include/js_strings.php:122 +msgid "Email address not valid" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" +#: ../../include/security.php:607 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active addons" +#: ../../include/selectors.php:18 +msgid "Profile to assign new connections" msgstr "" -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" +#: ../../include/selectors.php:41 +msgid "Frequently" msgstr "" -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" +#: ../../include/selectors.php:42 +msgid "Hourly" msgstr "" -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" +#: ../../include/selectors.php:43 +msgid "Twice daily" msgstr "" -#: ../../Zotlabs/Module/Cards.php:51 -msgid "Cards App" +#: ../../include/selectors.php:44 +msgid "Daily" msgstr "" -#: ../../Zotlabs/Module/Cards.php:52 -msgid "Create personal planning cards" +#: ../../include/selectors.php:45 +msgid "Weekly" msgstr "" -#: ../../Zotlabs/Module/Cards.php:112 -msgid "Add Card" +#: ../../include/selectors.php:46 +msgid "Monthly" msgstr "" -#: ../../Zotlabs/Module/Directory.php:122 -msgid "No default suggestions were found." +#: ../../include/selectors.php:60 +msgid "Currently Male" msgstr "" -#: ../../Zotlabs/Module/Directory.php:282 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" +#: ../../include/selectors.php:60 +msgid "Currently Female" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:293 -msgid "Gender: " +#: ../../include/selectors.php:60 +msgid "Mostly Male" msgstr "" -#: ../../Zotlabs/Module/Directory.php:295 -msgid "Status: " +#: ../../include/selectors.php:60 +msgid "Mostly Female" msgstr "" -#: ../../Zotlabs/Module/Directory.php:297 -msgid "Homepage: " +#: ../../include/selectors.php:60 +msgid "Transgender" msgstr "" -#: ../../Zotlabs/Module/Directory.php:360 -msgid "Description:" +#: ../../include/selectors.php:60 +msgid "Intersex" msgstr "" -#: ../../Zotlabs/Module/Directory.php:371 -msgid "Public Forum:" +#: ../../include/selectors.php:60 +msgid "Transsexual" msgstr "" -#: ../../Zotlabs/Module/Directory.php:374 -msgid "Keywords: " +#: ../../include/selectors.php:60 +msgid "Hermaphrodite" msgstr "" -#: ../../Zotlabs/Module/Directory.php:377 -msgid "Don't suggest" +#: ../../include/selectors.php:60 +msgid "Undecided" msgstr "" -#: ../../Zotlabs/Module/Directory.php:379 -msgid "Common connections (estimated):" +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Males" msgstr "" -#: ../../Zotlabs/Module/Directory.php:428 -msgid "Global Directory" +#: ../../include/selectors.php:96 ../../include/selectors.php:115 +msgid "Females" msgstr "" -#: ../../Zotlabs/Module/Directory.php:428 -msgid "Local Directory" +#: ../../include/selectors.php:96 +msgid "Gay" msgstr "" -#: ../../Zotlabs/Module/Directory.php:434 -msgid "Finding:" +#: ../../include/selectors.php:96 +msgid "Lesbian" msgstr "" -#: ../../Zotlabs/Module/Directory.php:439 -msgid "next page" +#: ../../include/selectors.php:96 +msgid "No Preference" msgstr "" -#: ../../Zotlabs/Module/Directory.php:439 -msgid "previous page" +#: ../../include/selectors.php:96 +msgid "Bisexual" msgstr "" -#: ../../Zotlabs/Module/Directory.php:440 -msgid "Sort options" +#: ../../include/selectors.php:96 +msgid "Autosexual" msgstr "" -#: ../../Zotlabs/Module/Directory.php:441 -msgid "Alphabetic" +#: ../../include/selectors.php:96 +msgid "Abstinent" msgstr "" -#: ../../Zotlabs/Module/Directory.php:442 -msgid "Reverse Alphabetic" +#: ../../include/selectors.php:96 +msgid "Virgin" msgstr "" -#: ../../Zotlabs/Module/Directory.php:443 -msgid "Newest to Oldest" +#: ../../include/selectors.php:96 +msgid "Deviant" msgstr "" -#: ../../Zotlabs/Module/Directory.php:444 -msgid "Oldest to Newest" +#: ../../include/selectors.php:96 +msgid "Fetish" msgstr "" -#: ../../Zotlabs/Module/Directory.php:461 -msgid "No entries (some entries may be hidden)." +#: ../../include/selectors.php:96 +msgid "Oodles" msgstr "" -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" +#: ../../include/selectors.php:96 +msgid "Nonsexual" msgstr "" -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Single" msgstr "" -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." +#: ../../include/selectors.php:134 +msgid "Lonely" msgstr "" -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../include/selectors.php:134 +msgid "Available" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../include/selectors.php:134 +msgid "Unavailable" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" +#: ../../include/selectors.php:134 +msgid "Has crush" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../include/selectors.php:134 +msgid "Infatuated" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Dating" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." +#: ../../include/selectors.php:134 +msgid "Unfaithful" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" +#: ../../include/selectors.php:134 +msgid "Sex Addict" msgstr "" -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" +#: ../../include/selectors.php:134 +msgid "Friends/Benefits" msgstr "" -#: ../../Zotlabs/Module/Attach.php:68 -msgid "Item not available." +#: ../../include/selectors.php:134 +msgid "Casual" msgstr "" -#: ../../Zotlabs/Module/Vote.php:40 -msgid "Poll not found." +#: ../../include/selectors.php:134 +msgid "Engaged" msgstr "" -#: ../../Zotlabs/Module/Vote.php:71 -msgid "Invalid response." +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Married" msgstr "" -#: ../../Zotlabs/Module/Vote.php:132 -msgid "Response submitted. Updates may not appear instantly." +#: ../../include/selectors.php:134 +msgid "Imaginarily married" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:93 -#: ../../Zotlabs/Module/Cover_photo.php:85 -msgid "Image uploaded but image cropping failed." +#: ../../include/selectors.php:134 +msgid "Partners" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:166 -#: ../../Zotlabs/Module/Cover_photo.php:212 -msgid "Image resize failed." +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Cohabiting" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:296 -#: ../../Zotlabs/Module/Cover_photo.php:265 -msgid "Image upload failed." +#: ../../include/selectors.php:134 +msgid "Common law" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Cover_photo.php:282 -msgid "Unable to process image." +#: ../../include/selectors.php:134 +msgid "Happy" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:431 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../Zotlabs/Module/Cover_photo.php:382 -msgid "Photo not available." +#: ../../include/selectors.php:134 +msgid "Not looking" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:495 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" +#: ../../include/selectors.php:134 +msgid "Swinger" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:495 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." +#: ../../include/selectors.php:134 +msgid "Betrayed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:497 -#: ../../Zotlabs/Module/Cover_photo.php:420 -msgid "Upload File:" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Separated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:498 -#: ../../Zotlabs/Module/Cover_photo.php:421 -msgid "Select a profile:" +#: ../../include/selectors.php:134 +msgid "Unstable" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:499 -msgid "Use Photo for Profile" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Divorced" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:499 -msgid "Change Profile Photo" +#: ../../include/selectors.php:134 +msgid "Imaginarily divorced" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:500 -msgid "Use" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "Widowed" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:505 -#: ../../Zotlabs/Module/Profile_photo.php:506 -#: ../../Zotlabs/Module/Cover_photo.php:426 -#: ../../Zotlabs/Module/Cover_photo.php:427 -msgid "Use a photo from your albums" +#: ../../include/selectors.php:134 +msgid "Uncertain" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:511 -#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:404 -msgid "Choose a different album" +#: ../../include/selectors.php:134 ../../include/selectors.php:151 +msgid "It's complicated" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:516 -#: ../../Zotlabs/Module/Cover_photo.php:438 -msgid "Select existing photo" +#: ../../include/selectors.php:134 +msgid "Don't care" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:535 -#: ../../Zotlabs/Module/Cover_photo.php:455 -msgid "Crop Image" +#: ../../include/selectors.php:134 +msgid "Ask me" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:536 -#: ../../Zotlabs/Module/Cover_photo.php:456 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../include/network.php:1762 ../../include/network.php:1763 +msgid "Friendica" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:538 -#: ../../Zotlabs/Module/Cover_photo.php:458 -msgid "Done Editing" +#: ../../include/network.php:1764 +msgid "OStatus" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" +#: ../../include/network.php:1765 +msgid "GNU-Social" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 -msgid "Enter a folder name" +#: ../../include/network.php:1766 +msgid "RSS/Atom" msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 -msgid "or select an existing folder (doubleclick)" +#: ../../include/network.php:1769 +msgid "Diaspora" msgstr "" -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Lib/ThreadItem.php:185 -msgid "Save to Folder" +#: ../../include/network.php:1770 +msgid "Facebook" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" +#: ../../include/network.php:1771 +msgid "Zot" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" +#: ../../include/network.php:1772 +msgid "LinkedIn" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" +#: ../../include/network.php:1773 +msgid "XMPP/IM" msgstr "" -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:116 -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Active" +#: ../../include/network.php:1774 +msgid "MySpace" msgstr "" -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:279 -msgid "Blocked" +#: ../../include/account.php:38 +msgid "The provided email address is not valid" msgstr "" -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:189 -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Ignored" +#: ../../include/account.php:41 +msgid "The provided email domain is not among those allowed on this site" msgstr "" -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:203 -#: ../../Zotlabs/Module/Connections.php:277 -msgid "Hidden" +#: ../../include/account.php:48 +msgid "The provided email address is already registered at this site" msgstr "" -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:196 -msgid "Archived/Unreachable" +#: ../../include/account.php:55 +msgid "" +"There is a pending registration for this address - click \"Register\" to " +"continue verification" msgstr "" -#: ../../Zotlabs/Module/Connections.php:83 -#: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 -#: ../../Zotlabs/Module/Notifications.php:53 -msgid "New" +#: ../../include/account.php:94 +msgid "An invitation is required." msgstr "" -#: ../../Zotlabs/Module/Connections.php:158 -msgid "Active Connections" +#: ../../include/account.php:103 +msgid "Invitation could not be verified." msgstr "" -#: ../../Zotlabs/Module/Connections.php:161 -msgid "Show active connections" +#: ../../include/account.php:191 +msgid "Please enter the required information." msgstr "" -#: ../../Zotlabs/Module/Connections.php:168 -msgid "Show pending (new) connections" +#: ../../include/account.php:258 ../../include/account.php:366 +msgid "Failed to store account information." msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show blocked connections" +#: ../../include/account.php:578 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:192 -msgid "Only show ignored connections" +#: ../../include/account.php:600 +msgid "your registration password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:199 -msgid "Only show archived/unreachable connections" +#: ../../include/account.php:606 ../../include/account.php:695 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:206 -msgid "Only show hidden connections" +#: ../../include/account.php:706 +msgid "Account approved." msgstr "" -#: ../../Zotlabs/Module/Connections.php:221 -msgid "Show all connections" +#: ../../include/account.php:762 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Pending approval" +#: ../../include/account.php:769 +#, php-format +msgid "Could not revoke registration for %s" msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Archived" +#: ../../include/account.php:1185 ../../include/account.php:1187 +msgid "Click here to upgrade." msgstr "" -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Not connected at this location" +#: ../../include/account.php:1193 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../Zotlabs/Module/Connections.php:319 -#, php-format -msgid "%1$s [%2$s]" +#: ../../include/account.php:1198 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../Zotlabs/Module/Connections.php:320 -msgid "Edit connection" +#: ../../include/account.php:1258 +msgid "open" msgstr "" -#: ../../Zotlabs/Module/Connections.php:322 -msgid "Delete connection" +#: ../../include/account.php:1258 +msgid "closed" msgstr "" -#: ../../Zotlabs/Module/Connections.php:331 -msgid "Channel address" +#: ../../include/account.php:1265 +msgid "Registration is currently" msgstr "" -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Call" +#: ../../include/account.php:1274 +msgid "please come back" msgstr "" -#: ../../Zotlabs/Module/Connections.php:338 -msgid "Status" +#: ../../include/help.php:80 +msgid "Help:" msgstr "" -#: ../../Zotlabs/Module/Connections.php:340 -msgid "Connected" +#: ../../include/help.php:129 +msgid "Not Found" msgstr "" -#: ../../Zotlabs/Module/Connections.php:342 -msgid "Approve connection" +#: ../../include/attach.php:273 ../../include/attach.php:324 +#: ../../include/attach.php:419 +msgid "Item was not found." msgstr "" -#: ../../Zotlabs/Module/Connections.php:344 -msgid "Ignore connection" +#: ../../include/attach.php:290 +msgid "Unknown error." msgstr "" -#: ../../Zotlabs/Module/Connections.php:345 -#: ../../Zotlabs/Module/Connedit.php:637 -msgid "Ignore" +#: ../../include/attach.php:612 +msgid "No source file." msgstr "" -#: ../../Zotlabs/Module/Connections.php:346 -msgid "Recent activity" +#: ../../include/attach.php:634 +msgid "Cannot locate file to replace" msgstr "" -#: ../../Zotlabs/Module/Connections.php:352 -msgid "Connect at this location" +#: ../../include/attach.php:653 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../Zotlabs/Module/Connections.php:380 -msgid "Search your connections" +#: ../../include/attach.php:795 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../Zotlabs/Module/Connections.php:381 -msgid "Connections search" +#: ../../include/attach.php:816 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:196 -#: ../../Zotlabs/Module/Cover_photo.php:254 -msgid "Cover Photos" +#: ../../include/attach.php:1004 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:418 -msgid "Your cover photo may be visible to anybody on the internet" +#: ../../include/attach.php:1033 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:422 -msgid "Change Cover Photo" +#: ../../include/attach.php:1105 ../../include/attach.php:1121 +msgid "Path not available." msgstr "" -#: ../../Zotlabs/Module/Photos.php:80 -msgid "Page owner information could not be retrieved." +#: ../../include/attach.php:1169 ../../include/attach.php:1332 +msgid "Empty pathname" msgstr "" -#: ../../Zotlabs/Module/Photos.php:96 ../../Zotlabs/Module/Photos.php:115 -msgid "Album not found." +#: ../../include/attach.php:1195 +msgid "duplicate filename or path" msgstr "" -#: ../../Zotlabs/Module/Photos.php:105 -msgid "Delete Album" +#: ../../include/attach.php:1220 +msgid "Path not found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:176 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" +#: ../../include/attach.php:1288 +msgid "mkdir failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:530 -msgid "No photos selected" +#: ../../include/attach.php:1292 +msgid "database storage failed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:579 -msgid "Access to this item is restricted." +#: ../../include/attach.php:1338 +msgid "Empty path" msgstr "" -#: ../../Zotlabs/Module/Photos.php:622 +#: ../../include/attach.php:2099 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgid "%s shared a %s with you" msgstr "" -#: ../../Zotlabs/Module/Photos.php:625 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../include/attach.php:2099 +#: ../../extend/addon/hubzilla-addons/redfiles/redfilehelper.php:64 +msgid "file" msgstr "" -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Upload Photos" +#: ../../include/connections.php:134 +msgid "New window" msgstr "" -#: ../../Zotlabs/Module/Photos.php:671 -msgid "Enter an album name" +#: ../../include/connections.php:135 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../Zotlabs/Module/Photos.php:672 -msgid "or select an existing album (doubleclick)" +#: ../../include/connections.php:736 ../../include/event.php:1424 +msgid "Home, Voice" msgstr "" -#: ../../Zotlabs/Module/Photos.php:673 -msgid "Create a status post for this upload" +#: ../../include/connections.php:737 ../../include/event.php:1425 +msgid "Home, Fax" msgstr "" -#: ../../Zotlabs/Module/Photos.php:675 -msgid "Description (optional)" +#: ../../include/connections.php:739 ../../include/event.php:1427 +msgid "Work, Voice" msgstr "" -#: ../../Zotlabs/Module/Photos.php:761 -msgid "Show Newest First" +#: ../../include/connections.php:740 ../../include/event.php:1428 +msgid "Work, Fax" msgstr "" -#: ../../Zotlabs/Module/Photos.php:763 -msgid "Show Oldest First" +#: ../../include/oembed.php:153 +msgid "View PDF" msgstr "" -#: ../../Zotlabs/Module/Photos.php:820 ../../Zotlabs/Module/Photos.php:1364 -msgid "Add Photos" +#: ../../include/oembed.php:365 +msgid " by " msgstr "" -#: ../../Zotlabs/Module/Photos.php:868 -msgid "Permission denied. Access to this item may be restricted." +#: ../../include/oembed.php:366 +msgid " on " msgstr "" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Photo not available" +#: ../../include/oembed.php:395 +msgid "Embedded content" msgstr "" -#: ../../Zotlabs/Module/Photos.php:928 -msgid "Use as profile photo" +#: ../../include/oembed.php:404 +msgid "Embedding disabled" msgstr "" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Use as cover photo" +#: ../../include/event.php:33 ../../include/event.php:110 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../Zotlabs/Module/Photos.php:936 -msgid "Private Photo" +#: ../../include/event.php:41 +msgid "Starts:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:951 -msgid "View Full Size" +#: ../../include/event.php:51 +msgid "Finishes:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" +#: ../../include/event.php:110 +msgid "l F d, Y" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" +#: ../../include/event.php:114 +msgid "Start:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" +#: ../../include/event.php:118 +msgid "End:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Move photo to album" +#: ../../include/event.php:123 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:67 +msgid "Timezone" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" +#: ../../include/event.php:1106 +msgid "This event has been added to your calendar." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" +#: ../../include/event.php:1337 +msgid "Not specified" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" +#: ../../include/event.php:1338 +msgid "Needs Action" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../include/event.php:1339 +msgid "Completed" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" +#: ../../include/event.php:1340 +msgid "In Process" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:318 -msgid "I like this (toggle)" +#: ../../include/event.php:1341 +msgid "Cancelled" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:319 -msgid "I don't like this (toggle)" +#: ../../include/datetime.php:140 +msgid "Birthday" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:824 -msgid "This is you" +#: ../../include/datetime.php:140 +msgid "Age: " msgstr "" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../Zotlabs/Lib/ThreadItem.php:251 -msgid "View all" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1247 -msgid "Photo Tools" +#: ../../include/datetime.php:238 ../../boot.php:2730 +msgid "never" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1256 -msgid "In This Photo:" +#: ../../include/datetime.php:244 +msgid "less than a second ago" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1261 -msgid "Map" +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:491 -msgctxt "noun" -msgid "Likes" -msgstr "" +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Photos.php:1270 ../../Zotlabs/Lib/ThreadItem.php:492 -msgctxt "noun" -msgid "Dislikes" -msgstr "" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "" +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 #, php-format -msgid "Site Member (%s)" +msgid "%1$s's birthday" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#: ../../include/datetime.php:521 #, php-format -msgid "Password reset requested at %s" +msgid "Happy Birthday %1$s" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../include/items.php:1038 ../../include/items.php:1098 +msgid "(Unknown)" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 -msgid "Password Reset" +#: ../../include/items.php:1302 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../include/items.php:1304 +msgid "Visible to you only." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" +#: ../../include/items.php:1306 +msgid "Visible to anybody in this network." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" +#: ../../include/items.php:1308 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" +#: ../../include/items.php:1310 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../include/items.php:1312 +msgid "Visible to all connections." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" +#: ../../include/items.php:1314 +msgid "Visible to approved connections." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" +#: ../../include/items.php:1316 +msgid "Visible to specific connections." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../include/items.php:4601 +msgid "Privacy group is empty." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" +#: ../../include/items.php:4608 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:78 -msgid "Reset" +#: ../../include/items.php:4620 +msgid "Connection not found." msgstr "" -#: ../../Zotlabs/Module/Follow.php:93 -msgid "Connection added." +#: ../../include/items.php:4973 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:5165 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:5165 +msgctxt "edit_activity" +msgid "Post" msgstr "" -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." +#: ../../include/items.php:5165 +msgctxt "edit_activity" +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Page.php:173 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../include/follow.php:86 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:186 -#: ../../Zotlabs/Module/Profiles.php:243 ../../Zotlabs/Module/Profiles.php:661 -msgid "Profile not found." +#: ../../include/follow.php:98 +msgid "Premium channel - please visit:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:46 -msgid "Profile deleted." +#: ../../include/follow.php:112 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 -msgid "Profile-" +#: ../../include/zot.php:778 +msgid "Invalid data packet" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 -msgid "New profile created." +#: ../../include/zot.php:4378 +msgid "invalid target signature" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:113 -msgid "Profile unavailable to clone." +#: ../../include/bbcode.php:233 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:1525 ../../include/bbcode.php:1533 +msgid "Image/photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:148 -msgid "Profile unavailable to export." +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1550 +msgid "Encrypted content" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:254 -msgid "Profile Name is required." +#: ../../include/bbcode.php:334 +#, php-format +msgid "Install %1$s element %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:461 -msgid "Marital Status" +#: ../../include/bbcode.php:338 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:465 -msgid "Romantic Partner" +#: ../../include/bbcode.php:551 +msgid "card" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Profiles.php:774 -msgid "Likes" +#: ../../include/bbcode.php:553 +msgid "article" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:775 -msgid "Dislikes" +#: ../../include/bbcode.php:636 ../../include/bbcode.php:644 +msgid "Click to open/close" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:782 -msgid "Work/Employment" +#: ../../include/bbcode.php:657 +msgid "View article" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:480 -msgid "Religion" +#: ../../include/bbcode.php:657 +msgid "View summary" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:484 -msgid "Political Views" +#: ../../include/bbcode.php:1501 +msgid "$1 wrote:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:492 -msgid "Sexual Preference" +#: ../../extend/addon/hubzilla-addons/gnusoc/gnusoc.php:453 +msgid "Follow" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:496 -msgid "Homepage" +#: ../../extend/addon/hubzilla-addons/gnusoc/gnusoc.php:456 +#, php-format +msgid "%1$s is now following %2$s" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:500 -msgid "Interests" +#: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:16 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:596 -msgid "Profile updated." +#: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:22 +msgid "GNU-Social Protocol App" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:680 -msgid "Hide your connections list from viewers of this profile" +#: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:34 +msgid "GNU-Social Protocol" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "Edit Profile Details" +#: ../../extend/addon/hubzilla-addons/qrator/qrator.php:48 +msgid "QR code" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "View this profile" +#: ../../extend/addon/hubzilla-addons/qrator/qrator.php:63 +msgid "QR Generator" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:728 -msgid "Profile Tools" +#: ../../extend/addon/hubzilla-addons/qrator/qrator.php:64 +msgid "Enter some text" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Change cover photo" +#: ../../extend/addon/hubzilla-addons/irc/Mod_Irc.php:23 +#: ../../extend/addon/hubzilla-addons/irc/irc.php:41 +msgid "Popular Channels" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Create a new profile using these settings" +#: ../../extend/addon/hubzilla-addons/irc/irc.php:37 +msgid "Channels to auto connect" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Clone this profile" +#: ../../extend/addon/hubzilla-addons/irc/irc.php:37 +#: ../../extend/addon/hubzilla-addons/irc/irc.php:41 +msgid "Comma separated list" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Delete this profile" +#: ../../extend/addon/hubzilla-addons/irc/irc.php:45 +msgid "IRC Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Add profile things" +#: ../../extend/addon/hubzilla-addons/irc/irc.php:54 +msgid "IRC settings saved." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Personal" +#: ../../extend/addon/hubzilla-addons/irc/irc.php:58 +msgid "IRC Chatroom" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:737 -msgid "Relationship" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:19 +msgid "Send email to all members" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Import profile from file" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:50 +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:50 +msgid "No recipients found." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Export profile to file" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Your gender" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:81 +msgid "Send email to all hub members." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Marital status" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:92 +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:96 +msgid "Message subject" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:744 -msgid "Sexual preference" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:93 +msgid "Sender Email address" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "Profile name" +#: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "This is your default profile." +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:51 +msgid "Your Webbie:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:751 -msgid "Your full name" +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:54 +msgid "Fontsize (px):" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Short title/description" +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:68 +msgid "Link:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Maximal 190 characters" +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Street address" +#: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:72 +msgid "Embed:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Locality/City" +#: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:46 +#: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:43 +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:150 +msgid "Save Settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Region/State" +#: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:758 -msgid "Postal/Zip code" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:19 +msgid "lonely" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:764 -msgid "Who (if applicable)" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:20 +msgid "drunk" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:764 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:21 +msgid "horny" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:765 -msgid "Since (date)" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:22 +msgid "stoned" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Tell us about yourself" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:23 +msgid "fucked up" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Hometown" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:24 +msgid "clusterfucked" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Political views" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:25 +msgid "crazy" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:772 -msgid "Religious views" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:26 +msgid "hurt" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Keywords used in directory listings" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:27 +msgid "sleepy" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Example: fishing photography software" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:28 +msgid "grumpy" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Musical interests" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:29 +msgid "high" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Books, literature" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:30 +msgid "semi-conscious" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Television" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:31 +msgid "in love" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Film/Dance/Culture/Entertainment" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:32 +msgid "in lust" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:780 -msgid "Hobbies/Interests" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:33 +msgid "naked" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "Love/Romance" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:34 +msgid "stinky" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "School/Education" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:35 +msgid "sweaty" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:784 -msgid "Contact information and social networks" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:36 +msgid "bleeding out" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "My other channels" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:37 +msgid "victorious" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:787 -msgid "Communications" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:38 +msgid "defeated" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:128 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:39 +msgid "envious" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:130 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" +#: ../../extend/addon/hubzilla-addons/moremoods/moremoods.php:40 +msgid "jealous" msgstr "" -#: ../../Zotlabs/Module/Articles.php:52 -msgid "Articles App" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." msgstr "" -#: ../../Zotlabs/Module/Articles.php:53 -msgid "Create interactive articles" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." msgstr "" -#: ../../Zotlabs/Module/Articles.php:116 -msgid "Add Article" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 +msgid "Piwik Base URL" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:62 -msgid "Bookmark added" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:78 -msgid "Bookmarks App" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:97 +msgid "Site ID" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "Bookmark links from posts and manage them" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:92 -msgid "My Bookmarks" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:99 +msgid "Asynchronous tracking" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:103 -msgid "My Connections Bookmarks" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" msgstr "" -#: ../../Zotlabs/Module/Probe.php:19 -msgid "Remote Diagnostics App" +#: ../../extend/addon/hubzilla-addons/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" msgstr "" -#: ../../Zotlabs/Module/Probe.php:20 -msgid "Perform diagnostics on remote channels" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:101 +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:102 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:144 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:180 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:214 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:261 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:296 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:319 +msgid "Access Denied" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:109 +msgid "Enable Community Moderation" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:117 +msgid "Reputation automatically given to new members" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:118 +msgid "Reputation will never fall below this value" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:119 +msgid "Minimum reputation before posting is allowed" msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:120 +msgid "Minimum reputation before commenting is allowed" msgstr "" -#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 -msgid "Invite App" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:121 +msgid "Minimum reputation before a member is able to moderate other posts" msgstr "" -#: ../../Zotlabs/Module/Invite.php:68 -msgid "Register is closed" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:122 +msgid "" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" msgstr "" -#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 -msgid "Note, the invitation code is valid up to" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:123 +msgid "Reputation \"cost\" to post" msgstr "" -#: ../../Zotlabs/Module/Invite.php:115 -#, php-format -msgid "Too many recipients for one invitation (max %d)" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:124 +msgid "Reputation \"cost\" to comment" msgstr "" -#: ../../Zotlabs/Module/Invite.php:119 -msgid "No recipients for this invitation" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:125 +msgid "" +"Reputation automatically recovers at this rate per hour until it reaches " +"minimum_to_post" msgstr "" -#: ../../Zotlabs/Module/Invite.php:133 -#, php-format -msgid "(%s) : Not a valid email address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:126 +msgid "" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 -#, php-format -msgid "(%s) : Not a real email address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:140 +msgid "Community Moderation Settings" msgstr "" -#: ../../Zotlabs/Module/Invite.php:145 -#, php-format -msgid "(%s) : Not allowed email address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:232 +msgid "Channel Reputation" msgstr "" -#: ../../Zotlabs/Module/Invite.php:158 -#, php-format -msgid "(%s) : email address already in use" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:236 +msgid "An Error has occurred." msgstr "" -#: ../../Zotlabs/Module/Invite.php:165 -#, php-format -msgid "(%s) : Accepted email address" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:254 +msgid "Upvote" msgstr "" -#: ../../Zotlabs/Module/Invite.php:257 -#, php-format -msgid "To %s : Message delivery success." +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:255 +msgid "Downvote" msgstr "" -#: ../../Zotlabs/Module/Invite.php:289 -#, php-format -msgid "%1$d mail(s) sent, %2$d mail error(s)" +#: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:414 +msgid "Can moderate reputation on my channel." msgstr "" -#: ../../Zotlabs/Module/Invite.php:315 -msgid "Invites not proposed by configuration" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " msgstr "" -#: ../../Zotlabs/Module/Invite.php:316 -msgid "Contact the site admin" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:95 +#: ../../extend/addon/hubzilla-addons/twitter/twitter.php:503 +msgid "Submit Settings" msgstr "" -#: ../../Zotlabs/Module/Invite.php:332 -msgid "Invites by users not enabled" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" msgstr "" -#: ../../Zotlabs/Module/Invite.php:337 -msgid "You have no more invitations available" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." msgstr "" -#: ../../Zotlabs/Module/Invite.php:353 -msgid "Not on xchan" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" msgstr "" -#: ../../Zotlabs/Module/Invite.php:386 -msgid "All users invitation limit exceeded." +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." msgstr "" -#: ../../Zotlabs/Module/Invite.php:404 -msgid "Invitation expires after" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:162 +msgid "Rendezvous" msgstr "" -#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 -msgid "Invitation" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." msgstr "" -#: ../../Zotlabs/Module/Invite.php:534 -msgid "Send invitations" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" msgstr "" -#: ../../Zotlabs/Module/Invite.php:535 -msgid "Invitations I am using" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." msgstr "" -#: ../../Zotlabs/Module/Invite.php:536 -msgid "Invitations we are using" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:171 +msgid "Let's meet here" msgstr "" -#: ../../Zotlabs/Module/Invite.php:537 -msgid "§ Note, the email(s) sent will be recorded in the system logs" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:174 +msgid "New marker" msgstr "" -#: ../../Zotlabs/Module/Invite.php:538 -msgid "Enter email addresses, one per line:" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:175 +msgid "Edit marker" msgstr "" -#: ../../Zotlabs/Module/Invite.php:540 -msgid "Invite template" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:176 +msgid "New identity" msgstr "" -#: ../../Zotlabs/Module/Invite.php:548 -msgid "Here you may enter personal notes to the recipient(s)" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:177 +msgid "Delete marker" msgstr "" -#: ../../Zotlabs/Module/Notes.php:57 -msgid "Notes App" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:178 +msgid "Delete member" msgstr "" -#: ../../Zotlabs/Module/Notes.php:58 -msgid "A simple notes app with a widget (note: notes are not encrypted)" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:185 +msgid "distance" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:35 -msgid "Affinity Tool settings updated." +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:47 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:182 +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:184 msgid "" -"This app presents a slider control in your connection editor and also on " -"your network page. The slider represents your degree of friendship " -"(affinity) with each connection. It allows you to zoom in or out and display " -"conversations from only your closest friends or everybody in your stream." +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:52 -msgid "Affinity Tool App" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:57 -msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:186 +msgid "Reminder note" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:64 -msgid "Default maximum affinity level" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." msgstr "" -#: ../../Zotlabs/Module/Affinity.php:64 -msgid "0-99 default 99" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:70 -msgid "Default minimum affinity level" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." msgstr "" -#: ../../Zotlabs/Module/Affinity.php:70 -msgid "0-99 - default 0" +#: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:76 -msgid "Persistent affinity levels" +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:32 +msgid "Skeleton App" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:76 -msgid "" -"If disabled the max and min levels will be reset to default after page reload" +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:33 +msgid "A skeleton for addons, you can copy/paste" msgstr "" -#: ../../Zotlabs/Module/Affinity.php:84 -msgid "Affinity Tool Settings" +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:40 +msgid "Some setting" msgstr "" -#: ../../Zotlabs/Module/Rate.php:158 -msgid "Website:" +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:40 +msgid "A setting" msgstr "" -#: ../../Zotlabs/Module/Rate.php:161 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../extend/addon/hubzilla-addons/skeleton/Mod_Skeleton.php:48 +msgid "Skeleton Settings" msgstr "" -#: ../../Zotlabs/Module/Rate.php:162 -msgid "Rating (this information is public)" +#: ../../extend/addon/hubzilla-addons/redred/redred.php:50 +msgid "Post to Hubzilla" msgstr "" -#: ../../Zotlabs/Module/Rate.php:163 -msgid "Optionally explain your rating (this information is public)" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:24 +msgid "Channel is required." msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:42 -#: ../../Zotlabs/Module/Settings/Channel_home.php:46 -msgid "Max height of content (in pixels)" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:38 +msgid "Hubzilla Crosspost Connector Settings saved." msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:44 -#: ../../Zotlabs/Module/Settings/Channel_home.php:48 -msgid "Click to expand content exceeding this height" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:50 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:146 +msgid "Hubzilla Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Module/Settings/Network.php:59 -msgid "Stream Settings" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:51 +msgid "Relay public postings to another Hubzilla channel" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:45 -msgid "Additional Features" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 +msgid "Send public postings to Hubzilla channel by default" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Nobody except yourself" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:67 +msgid "Hubzilla API Path" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Only those you specifically allow" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:67 +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:53 +msgid "https://{sitename}/api" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Approved connections" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:71 +msgid "Hubzilla login name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Any connections" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:75 +msgid "Hubzilla channel name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:333 -msgid "Anybody on this website" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:75 +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:54 +msgid "Nickname" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:334 -msgid "Anybody in this network" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:79 +msgid "Hubzilla password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:335 -msgid "Anybody authenticated" +#: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:87 +msgid "Hubzilla Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:336 -msgid "Anybody on the internet" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:23 +msgid "TOTP Two-Step Verification" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:411 -msgid "Publish your default profile in the network directory" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:24 +msgid "Enter the 2-step verification generated by your authenticator app:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:416 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:25 +msgid "Success!" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:429 -msgid "Your channel address is" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:26 +msgid "Invalid code, please try again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:432 -msgid "Your files/photos are accessible via WebDAV at" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:27 +msgid "Too many invalid codes..." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:472 -msgid "Automatic membership approval" +#: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:28 +msgid "Verify" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:472 -#: ../../Zotlabs/Module/Defperms.php:256 +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:90 msgid "" -"If enabled, connection requests will be approved without your interaction" +"You haven't set a TOTP secret yet.\n" +"Please click the button below to generate one and register this site\n" +"with your preferred authenticator app." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Channel Settings" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:93 +msgid "Your TOTP secret is" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Basic Settings" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:94 +msgid "" +"Be sure to save it somewhere in case you lose or replace your mobile " +"device.\n" +"Use your mobile device to scan the QR code below to register this site\n" +"with your preferred authenticator app." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Email Address:" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:99 +msgid "Test" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Your Timezone:" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:100 +msgid "Generate New Secret" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Default Post Location:" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:101 +msgid "Go" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Geographical location to display on your posts" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:102 +msgid "Enter your password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Use Browser Location:" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:103 +msgid "enter TOTP code from your device" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Adult Content" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:104 +msgid "Pass!" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:105 +msgid "Fail" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "Security and Privacy Settings" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:106 +msgid "Incorrect password, try again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:107 +msgid "Record your new TOTP secret and rescan the QR code above." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Hide my online presence" +#: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:115 +msgid "TOTP Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Prevents displaying in your profile that you are online" +#: ../../extend/addon/hubzilla-addons/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "Simple Privacy Settings:" +#: ../../extend/addon/hubzilla-addons/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +#: ../../extend/addon/hubzilla-addons/ldapauth/ldapauth.php:70 +msgid "An account has been created for you." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:517 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +#: ../../extend/addon/hubzilla-addons/ldapauth/ldapauth.php:77 +msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:518 -msgid "Private - default private, never open or public" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:252 +msgid "DB Cleanup Failure" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Blocked - default blocked to/from everybody" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:674 +msgid "[cart] Item Added" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Allow others to tag your posts" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1063 +msgid "Order already checked out." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1368 +msgid "Drop database tables when uninstalling." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "Channel Permission Limits" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1375 +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:129 +msgid "Cart Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Expire other channel content after this many days" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1387 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1390 +msgid "Shop" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "0 or blank to use the website limit." +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1446 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:112 +msgid "Order Not Found" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -#, php-format -msgid "This website expires after %d days." +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1507 +msgid "Cart utilities for orders and payments" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "This website does not expire imported content." +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1545 +msgid "You must be logged into the Grid to shop." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "The website limit takes precedence if lower than your limit." +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1578 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:409 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:392 +#: ../../extend/addon/hubzilla-addons/cart/manual_payments.php:68 +msgid "Order not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Maximum Friend Requests/Day:" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1592 +msgid "Access denied." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "May reduce spam activity" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1644 +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1787 +msgid "No Order Found" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Default Privacy Group" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1653 +msgid "An unknown error has occurred Please start again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "Use my default audience setting for the type of object published" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1796 +msgid "Requirements not met." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:538 -msgid "Default permissions category" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1796 +msgid "Review your order and complete any needed requirements." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Maximum private messages per day from unknown people:" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1822 +msgid "Invalid Payment Type. Please start again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Useful to reduce spamming" +#: ../../extend/addon/hubzilla-addons/cart/cart.php:1829 +msgid "Order not found" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:70 +msgid "Enable Order/Item Options" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "By default post a status message when:" +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:333 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:357 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:433 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:457 +msgid "Label" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "accepting a friend request" +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:336 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:360 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:436 +#: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:460 +msgid "Instructions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "joining a forum/community" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:63 +msgid "Enable Hubzilla Services Module" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "making an interesting profile change" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:162 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:172 +msgid "New Sku" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Send a notification email when:" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:197 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:208 +msgid "Cannot save edits to locked item." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "You receive a connection request" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:246 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:333 +msgid "SKU not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Your connections are confirmed" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:299 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:303 +msgid "Invalid Activation Directive." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "Someone writes on your profile wall" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:374 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:378 +msgid "Invalid Deactivation Directive." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Someone writes a followup comment" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:564 +msgid "Add to this privacy group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "You receive a private message" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:580 +msgid "Set user service class" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "You receive a friend suggestion" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:607 +msgid "You must be using a local account to purchase this service." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "You are tagged in a post" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:647 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:252 +msgid "Changes Locked" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "You are poked/prodded/etc. in a post" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:651 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:256 +msgid "Item available for purchase." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "Someone likes your post/comment" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:658 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:263 +#: ../../extend/addon/hubzilla-addons/cart/widgets/catalogitem.php:57 +msgid "Price" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:565 -msgid "Show visual notifications including:" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:661 +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:266 +msgid "Photo URL" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Unseen stream activity" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:665 +msgid "Add buyer to privacy group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:568 -msgid "Unseen channel activity" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:670 +msgid "Add buyer as connection" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen private messages" +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:678 +#: ../../extend/addon/hubzilla-addons/cart/submodules/hzservices.php:720 +msgid "Set Service Class" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:569 -#: ../../Zotlabs/Module/Settings/Channel.php:574 -#: ../../Zotlabs/Module/Settings/Channel.php:575 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Recommended" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:151 +msgid "Enable Subscription Management Module" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Upcoming events" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:223 +msgid "" +"Cannot include subscription items with different terms in the same order." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Events today" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:372 +msgid "Select Subscription to Edit" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Upcoming birthdays" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:380 +msgid "Edit Subscriptions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Not available in all themes" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:414 +msgid "Subscription SKU" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "System (personal) notifications" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:419 +msgid "Catalog Description" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "System info messages" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:423 +msgid "Subscription available for purchase." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System critical alerts" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:428 +msgid "Maximum active subscriptions to this item per account." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "New connections" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:431 +msgid "Subscription price." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "System Registrations" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:435 +msgid "Quantity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Unseen shared files" +#: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:439 +msgid "Term" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "Unseen public stream activity" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:86 +msgid "Enable Paypal Button Module (API-v2)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Unseen likes and dislikes" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:94 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:93 +msgid "Use Production Key" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen forum posts" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:101 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:100 +msgid "Paypal Sandbox Client Key" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Email notification hub (hostname)" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:108 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:107 +msgid "Paypal Sandbox Secret Key" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:582 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:114 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:113 +msgid "Paypal Production Client Key" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Show new wall posts, private messages and connections under Notices" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:121 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:120 +msgid "Paypal Production Secret Key" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:585 -msgid "Notify me of events this many days in advance" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:264 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:252 +msgid "Paypal button payments are not enabled." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:585 -msgid "Must be greater than 0" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:282 +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:270 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:590 -msgid "Advanced Account/Page Type Settings" +#: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:85 +msgid "Enable Paypal Button Module" msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Change the behaviour of this account for special situations" + +#: ../../extend/addon/hubzilla-addons/cart/submodules/manualcat.php:61 +msgid "Enable Manual Cart Module" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Miscellaneous Settings" +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:30 +msgid "Access Denied." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "Default photo upload folder" +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:189 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:223 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:271 +#: ../../extend/addon/hubzilla-addons/cart/myshop.php:329 +msgid "Invalid Item" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:594 -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "%Y - current year, %m - current month" +#: ../../extend/addon/hubzilla-addons/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Default file upload folder" +#: ../../extend/addon/hubzilla-addons/cart/manual_payments.php:61 +msgid "Manual payments are not enabled." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Remove this channel." +#: ../../extend/addon/hubzilla-addons/cart/manual_payments.php:77 +msgid "Finished" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:21 -msgid "Not valid email." +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:58 +msgid "Enable Test Catalog" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:24 -msgid "Protected email address. Cannot change to that email." +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:70 +msgid "Enable Manual Payments" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:33 -msgid "System failure storing new email. Please try again." +#: ../../extend/addon/hubzilla-addons/cart/Settings/Cart.php:90 +msgid "Base Merchant Currency" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:51 -msgid "Password verification failed." +#: ../../extend/addon/hubzilla-addons/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:58 -msgid "Passwords do not match. Password unchanged." +#: ../../extend/addon/hubzilla-addons/openid/openid.php:49 +msgid "The error message was:" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:62 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:52 +msgid "First Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:76 -msgid "Password changed." +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:53 +msgid "Last Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:78 -msgid "Password update failed. Please try again." +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:55 +msgid "Full Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Account Settings" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:104 -msgid "Current Password" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Enter New Password" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Confirm New Password" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Leave password fields blank unless changing" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:108 -msgid "DId2 or Email Address:" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:110 -msgid "Remove this account including all its channels" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:70 +msgid "Birth Year" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:25 -msgid "No feature settings configured" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:71 +msgid "Birth Month" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:34 -msgid "Addon Settings" +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:72 +msgid "Birth Day" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:35 -msgid "Please save/submit changes to any panel before opening another." +#: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:73 +msgid "Birthdate" msgstr "" -#: ../../Zotlabs/Module/Settings/Events.php:40 -msgid "Events Settings" +#: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../Zotlabs/Module/Settings/Manage.php:41 -msgid "Channel Manager Settings" +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:81 +msgid "Hubzilla File Storage Import" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel_home.php:61 -msgid "Personal menu to display in your channel pages" +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:82 +msgid "This will import all your cloud files from another server." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel_home.php:88 -msgid "Channel Home Settings" +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:83 +msgid "Hubzilla Server base URL" msgstr "" -#: ../../Zotlabs/Module/Settings/Calendar.php:40 -msgid "Calendar Settings" +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:84 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:140 +msgid "Since modified date yyyy-mm-dd" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:127 -#, php-format -msgid "%s - (Experimental)" +#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:85 +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:141 +msgid "Until modified date yyyy-mm-dd" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:183 -msgid "Display Settings" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:43 +msgid "Diaspora Protocol Settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:184 -msgid "Theme Settings" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:52 +msgid "" +"The diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:185 -msgid "Custom Theme Settings" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 +msgid "Diaspora Protocol App" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:186 -msgid "Content Settings" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 +msgid "Allow any Diaspora member to comment or like your public posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:192 -msgid "Display Theme:" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 +msgid "" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Select scheme" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:81 +msgid "Prevent your hashtags from being redirected to other sites" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "Preload images before rendering the page" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:85 +msgid "Sign and forward posts and comments with no existing Diaspora signature" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:90 +msgid "Followed hashtags (comma separated, do not include the #)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Enable user zoom on mobile devices" +#: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:99 +msgid "Diaspora Protocol" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Update browser every xx seconds" +#: ../../extend/addon/hubzilla-addons/diaspora/import_diaspora.php:19 +msgid "No username found in import file." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Minimum of 10 seconds, no maximum" +#: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1599 +#, php-format +msgid "%1$s dislikes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Maximum number of conversations to load at any time:" +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:70 +msgid "" +"Please install the statistics addon to be able to configure a diaspora relay" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Maximum of 30 items" +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 +msgid "Diaspora Relay Handle" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Show emoticons (smilies) as images" +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 +msgid "Address of a diaspora relay. Example: relay@diasporarelay.tld" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Provide channel menu in navigation bar" +#: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:100 +msgid "Diaspora relay could not be imported" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Default: channel menu located in app menu" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Link post titles to source" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:95 +msgid "Total Hubs" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Display new member quick links menu" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" msgstr "" -#: ../../Zotlabs/Module/Settings/Directory.php:40 -msgid "Directory Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:99 +msgid "Friendica Hubs" msgstr "" -#: ../../Zotlabs/Module/Settings/Editor.php:40 -msgid "Editor Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:101 +msgid "Diaspora Pods" msgstr "" -#: ../../Zotlabs/Module/Settings/Connections.php:40 -msgid "Connections Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Photos.php:40 -msgid "Photos Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:105 +msgid "Friendica Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Profiles.php:49 -msgid "Profiles Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:107 +msgid "Diaspora Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:23 -msgid "Settings saved." +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:109 +msgid "Aged 35 and above" msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:25 -msgid "Settings saved. Reload page please." +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:111 +msgid "Aged 34 and under" msgstr "" -#: ../../Zotlabs/Module/Settings/Conversation.php:47 -msgid "Conversation Settings" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:113 +msgid "Average Age" msgstr "" -#: ../../Zotlabs/Module/Menu.php:68 -msgid "Unable to update menu." +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:115 +msgid "Known Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Menu.php:79 -msgid "Unable to create menu." +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:117 +msgid "Known Tags" msgstr "" -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Name" +#: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," msgstr "" -#: ../../Zotlabs/Module/Menu.php:161 -msgid "Unique name (not visible on webpage) - required" +#: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" msgstr "" -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:175 -msgid "Menu Title" +#: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:162 -msgid "Visible on webpage - leave empty for no title" +#: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " msgstr "" -#: ../../Zotlabs/Module/Menu.php:163 -msgid "Allow Bookmarks" +#: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " msgstr "" -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -msgid "Menu may be used to store saved bookmarks" +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:23 +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:27 +msgid "Hide Aside App" msgstr "" -#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:225 -msgid "Submit and proceed" +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:24 +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:28 +msgid "Fade out aside areas after a while when using endless scroll" msgstr "" -#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Locs.php:131 -msgid "Drop" +#: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:27 +#: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:23 +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:26 +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:33 +#: ../../extend/addon/hubzilla-addons/nsabait/Mod_Nsabait.php:24 +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:26 +msgid "Installed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:181 -msgid "Bookmarks allowed" +#: ../../extend/addon/hubzilla-addons/randpost/randpost.php:99 +msgid "You're welcome." msgstr "" -#: ../../Zotlabs/Module/Menu.php:183 -msgid "Delete this menu" +#: ../../extend/addon/hubzilla-addons/randpost/randpost.php:100 +msgid "Ah shucks..." msgstr "" -#: ../../Zotlabs/Module/Menu.php:184 ../../Zotlabs/Module/Menu.php:219 -msgid "Edit menu contents" +#: ../../extend/addon/hubzilla-addons/randpost/randpost.php:101 +msgid "Don't mention it." msgstr "" -#: ../../Zotlabs/Module/Menu.php:185 -msgid "Edit this menu" +#: ../../extend/addon/hubzilla-addons/randpost/randpost.php:102 +msgid "<blush>" msgstr "" -#: ../../Zotlabs/Module/Menu.php:201 -msgid "Menu could not be deleted." +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:133 +msgid "View Larger" msgstr "" -#: ../../Zotlabs/Module/Menu.php:214 -msgid "Edit Menu" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:156 +msgid "Tile Server URL" msgstr "" -#: ../../Zotlabs/Module/Menu.php:218 -msgid "Add or remove entries to this menu" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:156 +msgid "" +"A list of public tile servers" msgstr "" -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu name" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 +msgid "Nominatim (reverse geocoding) Server URL" msgstr "" -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Must be unique, only seen by you" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 +msgid "" +"A list of Nominatim servers" msgstr "" -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Menu title" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 +msgid "Default zoom" msgstr "" -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Menu title as seen by others" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:222 -msgid "Allow bookmarks" +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:159 +msgid "Include marker on map" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:68 ../../Zotlabs/Module/Connedit.php:90 -msgid "Could not access contact record." +#: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:159 +msgid "Include a marker on the map." msgstr "" -#: ../../Zotlabs/Module/Defperms.php:190 -msgid "Default Permissions App" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:38 +msgid "Livejournal Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:191 -msgid "Set custom default permissions for new connections" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:39 +msgid "Relay public posts to Livejournal" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:255 ../../Zotlabs/Module/Connedit.php:860 -msgid "Connection Default Permissions" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:55 +msgid "Livejournal username" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:256 ../../Zotlabs/Module/Connedit.php:861 -msgid "Apply these permissions automatically" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:59 +msgid "Livejournal password" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 -msgid "Permission role" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:63 +msgid "Post to Livejournal by default" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:258 ../../Zotlabs/Module/Connedit.php:863 -msgid "Add permission role" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:67 +msgid "Send wall-to-wall posts to Livejournal" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Connedit.php:876 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:71 +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:65 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:94 +msgid "Add link to original post" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:263 -msgid "Automatic approval settings" +#: ../../extend/addon/hubzilla-addons/ljpost/Mod_Ljpost.php:79 +msgid "Livejournal Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Defperms.php:271 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." +#: ../../extend/addon/hubzilla-addons/ljpost/ljpost.php:49 +msgid "Post to Livejournal" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 -msgid "This setting requires special processing and editing has been blocked." +#: ../../extend/addon/hubzilla-addons/ljpost/ljpost.php:127 +msgid "Posted by" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:57 -msgid "Configuration Editor" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:222 +msgid "Workflow user." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:58 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:272 +msgid "This channel" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:54 -msgid "Name and Secret are required" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:541 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1437 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1456 +msgid "Workflow" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:106 -msgid "OAuth2 Apps Manager App" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1425 +msgid "No Workflows Available" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:107 -msgid "OAuth2 authenticatication tokens for mobile and remote apps" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1455 +msgid "Add item to which workflow" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:115 -msgid "Add OAuth2 application" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1515 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:1634 +msgid "Create Workflow Item" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:149 -msgid "Grant Types" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2596 +msgid "Link" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:121 ../../Zotlabs/Module/Oauth2.php:122 -msgid "leave blank unless your application sepcifically requires this" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2598 +msgid "Web link." msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:122 ../../Zotlabs/Module/Oauth2.php:150 -msgid "Authorization scope" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2619 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2680 +msgid "Brief description or title" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:134 -msgid "OAuth2 Application not found." +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2627 +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2688 +msgid "Notes and Info" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:149 ../../Zotlabs/Module/Oauth2.php:150 -msgid "leave blank unless your application specifically requires this" +#: ../../extend/addon/hubzilla-addons/workflow/workflow.php:2686 +msgid "Body" msgstr "" -#: ../../Zotlabs/Module/Oauth2.php:192 -msgid "Connected OAuth2 Apps" +#: ../../extend/addon/hubzilla-addons/workflow/Settings/Mod_WorkflowSettings.php:101 +msgid "Workflow Settings" msgstr "" -#: ../../Zotlabs/Module/Randprof.php:29 -msgid "Random Channel App" +#: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:44 +msgid "Jabber BOSH host" msgstr "" -#: ../../Zotlabs/Module/Randprof.php:30 -msgid "Visit a random channel in the $Projectname network" +#: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 +msgid "Use central userbase" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "Invalid message" +#: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "no results" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:23 +msgid "XMPP settings updated." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "channel sync processed" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:35 +msgid "XMPP App" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:111 -msgid "queued" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:36 +msgid "Embedded XMPP (Jabber) client" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "posted" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:52 +msgid "Individual credentials" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "accepted for delivery" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:58 +msgid "Jabber BOSH server" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "updated" +#: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:67 +msgid "XMPP Settings" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "update ignored" +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:21 +msgid "Superblock App" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:129 -msgid "permission denied" +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:22 +msgid "Block channels" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:133 -msgid "recipient not found" +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:64 +msgid "superblock settings updated" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:136 -msgid "mail recalled" +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:88 +msgid "Currently blocked" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:139 -msgid "duplicate mail received" +#: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:90 +msgid "No channels currently blocked" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:142 -msgid "mail delivered" +#: ../../extend/addon/hubzilla-addons/superblock/superblock.php:337 +msgid "Block Completely" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:162 -#, php-format -msgid "Delivery report for %1$s" +#: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:20 +#: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:23 +msgid "Random Planet App" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:167 -msgid "Redeliver" +#: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:25 +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -#: ../../Zotlabs/Module/Thing.php:122 -msgid "Thing updated" +#: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:152 +msgid "Possible adult content" msgstr "" -#: ../../Zotlabs/Module/Thing.php:174 -msgid "Object store: failed" +#: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:167 +#, php-format +msgid "%s - view" msgstr "" -#: ../../Zotlabs/Module/Thing.php:178 -msgid "Thing added" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:22 +msgid "NSFW Settings saved." msgstr "" -#: ../../Zotlabs/Module/Thing.php:204 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:33 +msgid "NSFW App" msgstr "" -#: ../../Zotlabs/Module/Thing.php:267 -msgid "Show Thing" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:34 +msgid "Collapse content that contains predefined words" msgstr "" -#: ../../Zotlabs/Module/Thing.php:274 -msgid "item not found." +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:44 +msgid "" +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 -msgid "Edit Thing" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 +msgid "Comma separated list of keywords to hide" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 -msgid "Select a profile" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" msgstr "" -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Post an activity" +#: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:58 +msgid "NSFW" msgstr "" -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Only sends to viewers of the applicable profile" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" msgstr "" -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 -msgid "Name of thing e.g. something" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" msgstr "" -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 -msgid "URL of thing (optional)" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:59 +msgid "New game" msgstr "" -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 -msgid "URL for photo of thing (optional)" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:60 +msgid "New game with handicap" msgstr "" -#: ../../Zotlabs/Module/Thing.php:364 -msgid "Add Thing to your Profile" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:46 -msgid "Authentication failed." +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:27 -msgid "Layout updated." +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:43 -msgid "PDL Editor App" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:183 +msgid "You go first..." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:44 -msgid "Provides the ability to edit system page layouts" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:188 +msgid "I'm going first this time..." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:57 ../../Zotlabs/Module/Pdledit.php:100 -msgid "Edit System Page Description" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:194 +msgid "You won!" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:78 -msgid "(modified)" +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:200 +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:225 +msgid "\"Cat\" game!" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:95 -msgid "Layout not found." +#: ../../extend/addon/hubzilla-addons/tictac/tictac.php:223 +msgid "I won!" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:101 -msgid "Module Name:" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:27 +msgid "Photo Cache settings saved." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:102 -msgid "Layout Help" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:36 +msgid "" +"Photo Cache addon saves a copy of images from external sites locally to " +"increase your anonymity in the web." msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:103 -msgid "Edit another layout" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:42 +msgid "Photo Cache App" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:104 -msgid "System layout" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:53 +msgid "Minimal photo size for caching" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:52 -msgid "Wiki App" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:55 +msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:53 -msgid "Provide a wiki for your channel" +#: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:64 +msgid "Photo Cache" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:132 -msgid "Error retrieving wiki" +#: ../../extend/addon/hubzilla-addons/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:139 -msgid "Error creating zip file export folder" +#: ../../extend/addon/hubzilla-addons/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:190 -msgid "Error downloading wiki: " +#: ../../extend/addon/hubzilla-addons/opensearch/opensearch.php:43 +msgid "Search $Projectname" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Storage/Browser.php:404 -msgid "Download" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:25 +msgid "Libertree Crosspost Connector Settings saved." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:215 -msgid "Wiki name" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:35 +msgid "Libertree Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:216 -msgid "Content type" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:36 +msgid "Relay public posts to Libertree" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Storage/Browser.php:378 -msgid "Type" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:51 +msgid "Libertree API token" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Any type" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:55 +msgid "Libertree site URL" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:226 -msgid "Lock content type" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:59 +msgid "Post to Libertree by default" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:227 -msgid "Create a status post for this wiki" +#: ../../extend/addon/hubzilla-addons/libertree/Mod_Libertree.php:67 +msgid "Libertree Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:228 -msgid "Edit Wiki Name" +#: ../../extend/addon/hubzilla-addons/libertree/libertree.php:43 +msgid "Post to Libertree" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:273 -msgid "Wiki not found" +#: ../../extend/addon/hubzilla-addons/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:299 -msgid "Rename page" +#: ../../extend/addon/hubzilla-addons/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:320 -msgid "Error retrieving page content" +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:145 +msgid "Post to GNU social" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:328 ../../Zotlabs/Module/Wiki.php:330 -msgid "New page" +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:594 +msgid "API URL" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:365 -msgid "Revision Comparison" +#: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:597 +msgid "Application name" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:373 -msgid "Short description of your changes (optional)" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:61 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:393 -msgid "New page name" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:98 +msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:398 -msgid "Embed image from photo albums" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:130 +msgid "GNU social settings updated." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:409 -msgid "History" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:147 +msgid "" +"Relay public postings to a connected GNU social account (formerly StatusNet)" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:487 -msgid "Error creating wiki. Invalid name." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:181 +msgid "Globally Available GNU social OAuthKeys" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:494 -msgid "A wiki with this name already exists." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:183 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:507 -msgid "Wiki created, but error creating Home page." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:198 +msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:514 -msgid "Error creating wiki" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:200 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:538 -msgid "Error updating wiki. Invalid name." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:204 +msgid "OAuth Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error updating wiki" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:208 +msgid "OAuth Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:572 -msgid "Wiki delete permission denied." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:212 +msgid "Base API Path" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:582 -msgid "Error deleting wiki" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:212 +msgid "Remember the trailing /" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:615 -msgid "New page created" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:216 +msgid "GNU social application name" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:741 -msgid "Cannot delete Home" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:239 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:817 -msgid "Current Revision" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:241 +msgid "Log in with GNU social" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:817 -msgid "Selected Revision" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:244 +msgid "Copy the security code from GNU social here" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:872 -msgid "You must be authenticated." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:254 +msgid "Cancel Connection Process" msgstr "" -#: ../../Zotlabs/Module/Home.php:104 -#, php-format -msgid "Welcome to %s" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:256 +msgid "Current GNU social API is" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:40 -msgid "Suggest Channels App" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:260 +msgid "Cancel GNU social Connection" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:41 -msgid "" -"Suggestions for channels in the $Projectname network you might be interested " -"in" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:272 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:147 +msgid "Currently connected to: " msgstr "" -#: ../../Zotlabs/Module/Suggest.php:54 +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:277 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:121 -msgid "Could not locate selected profile." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:265 -msgid "Connection updated." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 +msgid "Post to GNU social by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:267 -msgid "Failed to update connection record." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:310 -msgid "is now connected to" +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:291 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:171 +msgid "Clear OAuth configuration" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." +#: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:303 +msgid "GNU-Social Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:483 ../../Zotlabs/Module/Connedit.php:487 -msgid "Refresh failed - channel is currently unavailable." +#: ../../extend/addon/hubzilla-addons/wholikesme/wholikesme.php:29 +msgid "Who likes me?" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:502 ../../Zotlabs/Module/Connedit.php:511 -#: ../../Zotlabs/Module/Connedit.php:520 ../../Zotlabs/Module/Connedit.php:529 -#: ../../Zotlabs/Module/Connedit.php:542 -msgid "Unable to set address book parameters." +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:25 +msgid "ActivityPub Protocol Settings updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Connection has been removed." +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:34 +msgid "" +"The activitypub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:604 -#, php-format -msgid "View %s's profile" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:40 +msgid "Activitypub Protocol App" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Permissions" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:50 +msgid "Deliver to ActivityPub recipients in privacy groups" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated permissions" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:50 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:615 -msgid "Refresh Photo" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:54 +msgid "Send multi-media HTML articles" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Fetch updated photo" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:54 +msgid "Not supported by some microblog services such as Mastodon" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "View recent posts and comments" +#: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:62 +msgid "Activitypub Protocol" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:632 -msgid "Block (or Unblock) all communications with this connection" +#: ../../extend/addon/hubzilla-addons/ijpost/ijpost.php:44 +msgid "Post to Insane Journal" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:633 -msgid "This connection is blocked!" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:23 +msgid "Insane Journal Crosspost Connector Settings saved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:637 -msgid "Unignore" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:35 +msgid "Insane Journal Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:640 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:36 +msgid "Relay public postings to Insane Journal" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:641 -msgid "This connection is ignored!" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:53 +msgid "InsaneJournal username" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:645 -msgid "Unarchive" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:57 +msgid "InsaneJournal password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:645 -msgid "Archive" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:61 +msgid "Post to InsaneJournal by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:648 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../extend/addon/hubzilla-addons/ijpost/Mod_Ijpost.php:69 +msgid "Insane Journal Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:649 -msgid "This connection is archived!" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:77 +msgid "Max queueworker threads" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:653 -msgid "Unhide" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:79 +msgid "Minimum 4, default 4" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:653 -msgid "Hide" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:90 +msgid "Assume workers dead after" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:656 -msgid "Hide or Unhide this connection from your other connections" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:92 +msgid "Minimum 120, default 300 seconds" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "This connection is hidden!" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:103 +msgid "Pause before starting next task" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:664 -msgid "Delete this connection" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:105 +msgid "Minimum 100, default 100 microseconds" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:672 -msgid "Fetch Vcard" +#: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:113 +msgid "Queueworker Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:675 -msgid "Fetch electronic calling card for this connection" +#: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:218 +msgid "Not allowed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Open Individual Permissions section by default" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:123 +msgid "generic profile image" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:709 -msgid "Affinity" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:124 +msgid "random geometric pattern" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:712 -msgid "Open Set Affinity section by default" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:125 +msgid "monster face" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:749 -msgid "Filter" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:126 +msgid "computer generated face" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:752 -msgid "Open Custom Filter section by default" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:127 +msgid "retro arcade style face" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:789 -msgid "Approve this connection" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:128 +msgid "Hub default profile photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:789 -msgid "Accept connection to allow communication" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 +msgid "Information" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:794 -msgid "Set Affinity" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:797 -msgid "Set Profile" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 +msgid "Default avatar image" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:800 -msgid "Set Affinity & Profile" +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:848 -msgid "This connection is unreachable from this location." +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 +msgid "Rating of images" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:849 -msgid "This connection may be unreachable from other channel locations." +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "Location independence is not supported by their network." +#: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:857 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:104 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:176 +msgid "Network error" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Connection requests will be approved without your interaction" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:108 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:180 +msgid "API error" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:870 -msgid "This connection's primary address is" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:112 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:184 +msgid "Unknown issue" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Available locations:" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:168 +msgid "Unable to login using email address " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:877 -msgid "Connection Tools" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:202 +msgid "Sign in to Hubzilla using a social account" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:879 -msgid "Slide to adjust your degree of friendship" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:207 +msgid "Social Authentication using your social media account" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:881 -msgid "Slide to adjust your rating" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:211 +msgid "" +"This app enables one or more social provider sign-in buttons on the login " +"page." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:882 ../../Zotlabs/Module/Connedit.php:887 -msgid "Optionally explain your rating" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:229 +msgid "Add an identity provider" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:884 -msgid "Custom Filter" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:256 +msgid "Enable " msgstr "" -#: ../../Zotlabs/Module/Connedit.php:885 -msgid "Only import posts with this text" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:263 +msgid "Key" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:886 -msgid "Do not import posts with this text" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:263 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:268 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:284 +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:297 +msgid "Word" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:888 -msgid "This information is public!" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:268 +msgid "Secret" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:893 -msgid "Connection Pending Approval" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:297 +msgid "Add a custom provider" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:898 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:317 +msgid "Remove an identity provider" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:905 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:327 +msgid "Social authentication" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:906 -msgid "Last update:" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:366 +msgid "Error while saving provider settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:914 -msgid "Details" +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:382 +msgid "Custom provider already exists" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:58 ../../Zotlabs/Module/Notify.php:61 -msgid "No more system notifications." +#: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:399 +msgid "Social authentication settings saved." msgstr "" -#: ../../Zotlabs/Module/Notifications.php:62 ../../Zotlabs/Module/Notify.php:65 -msgid "System Notifications" +#: ../../extend/addon/hubzilla-addons/sendzid/Mod_Sendzid.php:14 +msgid "Send your identity to all websites" msgstr "" -#: ../../Zotlabs/Module/Notifications.php:63 -#: ../../Zotlabs/Lib/ThreadItem.php:484 -msgid "Mark all seen" +#: ../../extend/addon/hubzilla-addons/sendzid/Mod_Sendzid.php:20 +msgid "Sendzid App" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" +#: ../../extend/addon/hubzilla-addons/sendzid/Mod_Sendzid.php:32 +msgid "Send ZID" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:106 +msgid "Photos imported" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" msgstr "" -#: ../../Zotlabs/Module/Locs.php:27 ../../Zotlabs/Module/Locs.php:66 -msgid "Location not found." +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -#: ../../Zotlabs/Module/Locs.php:75 -msgid "Location lookup failed." +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:131 +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" msgstr "" -#: ../../Zotlabs/Module/Locs.php:79 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:132 +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" msgstr "" -#: ../../Zotlabs/Module/Locs.php:108 -msgid "Syncing locations" +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:133 +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" msgstr "" -#: ../../Zotlabs/Module/Locs.php:117 -msgid "No locations found." +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:134 +msgid "Import just this album" msgstr "" -#: ../../Zotlabs/Module/Locs.php:127 -msgid "Manage Channel Locations" +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" msgstr "" -#: ../../Zotlabs/Module/Locs.php:133 -msgid "Sync Now" +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:135 +msgid "Maximum count to import" msgstr "" -#: ../../Zotlabs/Module/Locs.php:134 -msgid "Please wait several minutes between consecutive operations." +#: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" msgstr "" -#: ../../Zotlabs/Module/Locs.php:135 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:65 +msgid "Twitter settings updated." msgstr "" -#: ../../Zotlabs/Module/Locs.php:136 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:78 +msgid "Twitter Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Module/Sources.php:41 -msgid "Failed to create source. No channel selected." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:79 +msgid "Relay public posts to Twitter" msgstr "" -#: ../../Zotlabs/Module/Sources.php:57 -msgid "Source created." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:103 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -#: ../../Zotlabs/Module/Sources.php:70 -msgid "Source updated." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:125 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." msgstr "" -#: ../../Zotlabs/Module/Sources.php:88 -msgid "Sources App" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:127 +msgid "Log in with Twitter" msgstr "" -#: ../../Zotlabs/Module/Sources.php:89 -msgid "Automatically import channel content from other channels or feeds" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:130 +msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../Zotlabs/Module/Sources.php:101 -msgid "*" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:152 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" -#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:368 -msgid "Channel Sources" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 +msgid "Twitter post length" msgstr "" -#: ../../Zotlabs/Module/Sources.php:108 -msgid "Manage remote sources of content for your channel." +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 +msgid "Maximum tweet length" msgstr "" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:119 -msgid "New Source" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 +msgid "Send public postings to Twitter by default" msgstr "" -#: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"If enabled your public postings will be posted to the associated Twitter " +"account by default" msgstr "" -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Only import content with these words (one per line)" +#: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:181 +msgid "Twitter Crosspost Connector" msgstr "" -#: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 -msgid "Leave blank to import all public content" +#: ../../extend/addon/hubzilla-addons/twitter/twitter.php:109 +msgid "Post to Twitter" msgstr "" -#: ../../Zotlabs/Module/Sources.php:122 ../../Zotlabs/Module/Sources.php:161 -msgid "Channel Name" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:21 +msgid "Project Servers and Resources" msgstr "" -#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +#: ../../extend/addon/hubzilla-addons/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" + +#: ../../extend/addon/hubzilla-addons/donate/donate.php:49 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." msgstr "" -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Resend posts with this channel as author" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:52 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." msgstr "" -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -msgid "Copyrights may apply" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:53 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:144 ../../Zotlabs/Module/Sources.php:174 -msgid "Source not found." +#: ../../extend/addon/hubzilla-addons/donate/donate.php:54 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." msgstr "" -#: ../../Zotlabs/Module/Sources.php:151 -msgid "Edit Source" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:56 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." msgstr "" -#: ../../Zotlabs/Module/Sources.php:152 -msgid "Delete Source" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:59 +msgid "Donate" msgstr "" -#: ../../Zotlabs/Module/Sources.php:182 -msgid "Source removed" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:61 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" msgstr "" -#: ../../Zotlabs/Module/Sources.php:184 -msgid "Unable to remove source." +#: ../../extend/addon/hubzilla-addons/donate/donate.php:62 +msgid "Donate Now" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:63 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:64 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:65 +msgid "Sponsor" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../extend/addon/hubzilla-addons/donate/donate.php:68 +msgid "Special thanks to: " msgstr "" -#: ../../Zotlabs/Zot/Auth.php:154 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:26 +msgid "Dreamwidth Crosspost Connector Settings saved." msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:28 -msgid "" -"A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is " -"not what you intended, please create another list with a different name." +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:39 +msgid "Dreamwidth Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:286 -msgid "Add new connections to this access list" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:40 +msgid "Relay public posts to Dreamwidth" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:331 -msgid "Lists" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:53 +msgid "Dreamwidth username" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:332 -msgid "Edit list" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:57 +msgid "Dreamwidth password" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:333 -msgid "Create new list" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:61 +msgid "Post to Dreamwidth by default" msgstr "" -#: ../../Zotlabs/Lib/AccessList.php:334 -msgid "Channels not in any access list" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:69 +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:98 +msgid "Link description (default:" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" +#: ../../extend/addon/hubzilla-addons/dwpost/Mod_Dwpost.php:77 +msgid "Dreamwidth Crosspost Connector" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" +#: ../../extend/addon/hubzilla-addons/dwpost/dwpost.php:49 +msgid "Post to Dreamwidth" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:21 +msgid "nofed Settings saved." +msgstr "" + +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:33 +msgid "No Federation App" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:34 +msgid "" +"Prevent posting from being federated to anybody. It will exist only on your " +"channel page." msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2163 -#, php-format -msgid "Likes %1$s's %2$s" +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 +msgid "Federate posts by default" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2166 -#, php-format -msgid "Doesn't like %1$s's %2$s" +#: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:50 +msgid "No Federation" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2172 -#, php-format -msgid "Will attend %s's event" +#: ../../extend/addon/hubzilla-addons/nofed/nofed.php:47 +msgid "Federate" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2175 -#, php-format -msgid "Will not attend %s's event" +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:15 +msgid "WYSIWYG status editor" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2178 -#, php-format -msgid "May attend %s's event" +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:21 +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:26 +msgid "WYSIWYG Status App" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:2181 -#, php-format -msgid "May not attend %s's event" +#: ../../extend/addon/hubzilla-addons/hsse/Mod_Hsse.php:34 +msgid "WYSIWYG Status" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:27 +msgid "No server specified" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:73 +msgid "Posts imported" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:113 +msgid "Files imported" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:122 msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" +"This addon app copies existing content and file storage to a cloned/copied " +"channel. Once the app is installed, visit the newly installed app. This will " +"allow you to set the location of your original channel and an optional date " +"range of files/conversations to copy." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:136 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 +msgid "Include posts" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 +msgid "Conversations, Articles, Cards, and other posted content" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:138 +msgid "Include files" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:138 +msgid "Files, Photos and other cloud storage" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" +#: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:139 +msgid "Original Server base URL" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:48 +msgid "Your channel has been upgraded to $Projectname version" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:50 +msgid "Please have a look at the" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:157 -msgid "liked" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:52 +msgid "git history" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:160 -msgid "disliked" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:54 +msgid "change log" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:165 -msgid "voted on" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:55 +msgid "for further info." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:208 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:60 +msgid "Upgrade Info" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:216 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../extend/addon/hubzilla-addons/upgrade_info/upgrade_info.php:64 +msgid "Do not show this again" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:225 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:22 +msgid "pageheader Settings saved." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:237 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:34 +msgid "Page Header App" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:239 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:35 +msgid "Inserts a page header" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:240 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:43 +msgid "Message to display on every page on this server" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:243 ../../Zotlabs/Lib/Enotify.php:324 -#: ../../Zotlabs/Lib/Enotify.php:340 ../../Zotlabs/Lib/Enotify.php:365 -#: ../../Zotlabs/Lib/Enotify.php:382 ../../Zotlabs/Lib/Enotify.php:395 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../extend/addon/hubzilla-addons/pageheader/Mod_Pageheader.php:51 +msgid "Page Header" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:247 ../../Zotlabs/Lib/Enotify.php:248 -#, php-format -msgid "Please visit %s to approve or reject this comment." +#: ../../extend/addon/hubzilla-addons/visage/Mod_Visage.php:21 +msgid "Who viewed my channel/profile" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:306 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +#: ../../extend/addon/hubzilla-addons/visage/Mod_Visage.php:25 +msgid "Recent Channel/Profile Viewers" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:320 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +#: ../../extend/addon/hubzilla-addons/visage/Mod_Visage.php:36 +msgid "No entries." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:321 -#, php-format -msgid "%1$s liked an item/conversation you created." +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:40 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:332 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:53 +msgid "message" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:334 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:93 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:336 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:106 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:359 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:121 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:242 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:360 -#, php-format -msgid "%1$s tagged you at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:149 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:361 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:157 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:372 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:158 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:301 +msgid "To:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:373 -#, php-format -msgid "%1$s poked you at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:166 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:309 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:374 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:168 +msgid "Send" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:389 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:272 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:390 -#, php-format -msgid "%1$s tagged your post at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:273 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:391 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:274 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:402 -msgid "[$Projectname:Notify] Introduction received" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:276 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:403 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:294 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:404 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:296 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:407 ../../Zotlabs/Lib/Enotify.php:425 -#, php-format -msgid "You may visit their profile at %s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:300 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:409 +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:305 #, php-format -msgid "Please visit %s to approve or reject the connection request." +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "[$Projectname:Notify] Friend suggestion received" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:385 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:417 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:392 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:399 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:423 -msgid "Name:" +#: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:417 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:424 -msgid "Photo:" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:50 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:128 +msgid "System defaults:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:427 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:652 -msgid "[$Projectname:Notify]" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:820 -msgid "created a new poll" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:55 +msgid "Default Search Term" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:820 -msgid "created a new post" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:821 -#, php-format -msgid "voted on %s's poll" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:56 +msgid "Return After" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:821 -#, php-format -msgid "commented on %s's post" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:825 -#, php-format -msgid "repeated %s's post" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:59 +msgid "Profile List" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:837 -#, php-format -msgid "edited a post dated %s" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:841 -#, php-format -msgid "edited a comment dated %s" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:970 -msgid "created an event" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:62 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:68 +msgid "Newest first" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:986 -msgid "status verified" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:65 +msgid "As entered" msgstr "" -#: ../../Zotlabs/Lib/Connect.php:271 -msgid "error saving data" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:67 +msgid "Order of other" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:25 -msgid "Missing room name" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:34 -msgid "Duplicate room name" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 -msgid "Invalid room specifier." +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:70 +msgid "Most liked first" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:124 -msgid "Room not found." +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:145 -msgid "Room is full" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:146 -msgid "Wiki updated successfully" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:206 -msgid "Wiki files deleted successfully" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:78 +msgid "Drawn by: " msgstr "" -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "Apps" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:182 +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:194 +msgid "Use this image" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:324 -msgid "Affinity Tool" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:327 -msgid "Site Admin" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:195 +msgid "Search Term" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:331 -msgid "Content Filter" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:334 -msgid "Remote Diagnostics" +#: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Suggest Channels" +#: ../../extend/addon/hubzilla-addons/gallery/gallery.php:43 +#: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:136 +msgid "Gallery" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:338 -msgid "Stream" +#: ../../extend/addon/hubzilla-addons/gallery/gallery.php:46 +msgid "Photo Gallery" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:349 -msgid "Mail" +#: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:58 +msgid "Gallery App" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:352 -msgid "Chat" +#: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:59 +msgid "A simple gallery for your photo albums" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:354 -msgid "Probe" +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:35 +msgid "Smileybutton App" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:355 -msgid "Suggest" +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:36 +msgid "Adds a smileybutton to the jot editor" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "Random Channel" +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:44 +msgid "Hide the button and show the smilies directly." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:357 -msgid "Invite" +#: ../../extend/addon/hubzilla-addons/smileybutton/Mod_Smileybutton.php:52 +msgid "Smileybutton Settings" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:360 ../../Zotlabs/Storage/Browser.php:407 -msgid "Post" +#: ../../extend/addon/hubzilla-addons/rtof/rtof.php:51 +msgid "Post to Friendica" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:365 -msgid "Notifications" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:24 +msgid "Friendica Crosspost Connector Settings saved." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:366 -msgid "Order Apps" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:36 +msgid "Friendica Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:367 -msgid "CardDAV" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:37 +msgid "Relay public postings to a connected Friendica account" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:369 -msgid "Guest Access" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:49 +msgid "Send public postings to Friendica by default" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:371 -msgid "OAuth Apps Manager" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:53 +msgid "Friendica API Path" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:372 -msgid "OAuth2 Apps Manager" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:57 +msgid "Friendica login name" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:373 -msgid "PDL Editor" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:61 +msgid "Friendica password" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:376 -msgid "My Chatrooms" +#: ../../extend/addon/hubzilla-addons/rtof/Mod_Rtof.php:69 +msgid "Friendica Crosspost Connector" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:377 -msgid "Channel Export" +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:36 +msgid "Logfile archive directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:554 -msgid "Purchase" +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:36 +msgid "Directory to store rotated logs" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:559 -msgid "Undelete" +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:569 -msgid "Add to app-tray" +#: ../../extend/addon/hubzilla-addons/logrot/logrot.php:38 +msgid "Number of logfiles to retain" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:570 -msgid "Remove from app-tray" +#: ../../extend/addon/hubzilla-addons/wppost/wppost.php:46 +msgid "Post to WordPress" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:571 -msgid "Pin to navbar" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:30 +msgid "Wordpress Settings saved." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:572 -msgid "Unpin from navbar" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:43 +msgid "Wordpress Post App" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:44 +msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:69 +msgid "WordPress username" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:73 +msgid "WordPress password" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:77 +msgid "WordPress API URL" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:78 +msgid "Typically https://your-blog.tld/xmlrpc.php" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:81 +msgid "WordPress blogid" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:94 -msgid "(No Title)" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:82 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:109 -msgid "Wiki page create failed." +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:86 +msgid "Post to WordPress by default" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:123 -msgid "Wiki not found." +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:90 +msgid "Forward comments (requires hubzilla_wp plugin)" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:134 -msgid "Destination name already exists" +#: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:106 +msgid "Wordpress Post" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:167 -#: ../../Zotlabs/Lib/NativeWikiPage.php:368 -msgid "Page not found" +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:22 +msgid "" +"Allow magic authentication only to websites of your immediate connections" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:200 -msgid "Error reading page content" +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:28 +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:33 +msgid "Authchoose App" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -#: ../../Zotlabs/Lib/NativeWikiPage.php:409 -#: ../../Zotlabs/Lib/NativeWikiPage.php:480 -#: ../../Zotlabs/Lib/NativeWikiPage.php:522 -msgid "Error reading wiki" +#: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:39 +msgid "Authchoose" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:396 -msgid "Page update failed." +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:19 +msgid "bitchslap" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:431 -msgid "Nothing deleted" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:19 +msgid "bitchslapped" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:501 -msgid "Compare: object not found." +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:20 +msgid "shag" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Page updated" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:20 +msgid "shagged" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:511 -msgid "Untitled" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:21 +msgid "patent" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:517 -msgid "Wiki resource_id required for git commit" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:21 +msgid "patented" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:131 -msgid "Privacy conflict. Discretion advised." +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:22 +msgid "hug" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:175 ../../Zotlabs/Storage/Browser.php:369 -msgid "Admin Delete" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:22 +msgid "hugged" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:320 -msgid "Reply on this comment" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:23 +msgid "murder" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:320 -msgid "reply" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:23 +msgid "murdered" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:320 -msgid "Reply to" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:24 +msgid "worship" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:340 -msgid "Delivery Report" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:24 +msgid "worshipped" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:359 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:360 -#, php-format -msgid "%d unseen" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:25 +msgid "kissed" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:413 -msgid "to" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:26 +msgid "tempt" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:415 -msgid "Wall-to-Wall" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:26 +msgid "tempted" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:416 -msgid "via Wall-To-Wall:" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:27 +msgid "raise eyebrows at" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:444 -msgid "Attend" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:462 -msgid "Go to previous comment" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:28 +msgid "insult" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:475 -msgid "Add to Calendar" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:28 +msgid "insulted" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:833 -msgid "Image" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:29 +msgid "praise" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:835 -msgid "Insert Link" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:29 +msgid "praised" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:836 -msgid "Video" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:30 +msgid "be dubious of" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:846 -msgid "Your full name (required)" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:30 +msgid "was dubious of" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:847 -msgid "Your email address (required)" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:31 +msgid "eat" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:848 -msgid "Your website URL (optional)" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:31 +msgid "ate" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:67 -msgid "Source code of failed update: " +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:32 +msgid "giggle and fawn at" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:88 -#, php-format -msgid "Update Error at %s" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:32 +msgid "giggled and fawned at" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:94 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" + +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:33 +msgid "doubted" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:34 +msgid "glare" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:34 +msgid "glared at" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:35 +msgid "fuck" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:35 +msgid "fucked" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:36 +msgid "bonk" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:36 +msgid "bonked" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:37 +msgid "declare undying love for" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +#: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:37 +msgid "declared undying love for" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" +#: ../../extend/addon/hubzilla-addons/notifyadmin/notifyadmin.php:34 +msgid "New registration" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" +#: ../../extend/addon/hubzilla-addons/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:40 +msgid "Pump.io Settings saved." msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:53 +msgid "Pump.io Crosspost Connector App" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social Networking" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:54 +msgid "Relay public posts to pump.io" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:288 -msgid "Social - Federation" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:73 +msgid "Pump.io servername" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:289 -msgid "Social - Mostly Public" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:73 +msgid "Without \"http://\" or \"https://\"" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Social - Restricted" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:77 +msgid "Pump.io username" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Social - Private" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:77 +msgid "Without the servername" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:294 -msgid "Community Forum" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:88 +msgid "You are not authenticated to pumpio" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:295 -msgid "Forum - Mostly Public" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:90 +msgid "(Re-)Authenticate your pump.io connection" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Forum - Restricted" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:94 +msgid "Post to pump.io by default" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Forum - Private" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:98 +msgid "Should posts be public" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:300 -msgid "Feed Republish" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:102 +msgid "Mirror all public posts" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Feed - Mostly Public" +#: ../../extend/addon/hubzilla-addons/pumpio/Mod_Pumpio.php:112 +msgid "Pump.io Crosspost Connector" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Feed - Restricted" +#: ../../extend/addon/hubzilla-addons/pumpio/pumpio.php:152 +msgid "You are now authenticated to pumpio." msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:305 -msgid "Special Purpose" +#: ../../extend/addon/hubzilla-addons/pumpio/pumpio.php:153 +msgid "return to the featured settings page" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:306 -msgid "Special - Celebrity/Soapbox" +#: ../../extend/addon/hubzilla-addons/pumpio/pumpio.php:168 +msgid "Post to Pump.io" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Special - Group Repository" +#: ../../extend/addon/hubzilla-addons/nsabait/Mod_Nsabait.php:20 +#: ../../extend/addon/hubzilla-addons/nsabait/Mod_Nsabait.php:24 +msgid "NSA Bait App" msgstr "" -#: ../../Zotlabs/Access/PermissionRoles.php:311 -msgid "Custom/Expert Mode" +#: ../../extend/addon/hubzilla-addons/nsabait/Mod_Nsabait.php:26 +msgid "Make yourself a political target" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:15 +msgid "Add some colour to tag clouds" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:26 +msgid "Rainbow Tag App" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" +#: ../../extend/addon/hubzilla-addons/rainbowtag/Mod_Rainbowtag.php:34 +msgid "Rainbow Tag" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:19 +msgid "Send test email" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:66 +msgid "Mail sent." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:68 +msgid "Sending of mail failed." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" +#: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:77 +msgid "Mail Test" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" +#: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" +#: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:42 +msgid "Use markdown for editing posts" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:22 +msgid "Fuzzloc Settings updated." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:34 +msgid "Fuzzy Location App" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:35 +msgid "" +"Blur your precise location if your channel uses browser location mapping" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:40 +msgid "Minimum offset in meters" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via ! mentions in posts" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:44 +msgid "Maximum offset in meters" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:71 -msgid "Can chat with me" +#: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:53 +msgid "Fuzzy Location" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:72 -msgid "Can source my public posts in derived channels" +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:50 +msgid "Startpage App" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:73 -msgid "Can administer my channel" +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:51 +msgid "Set a preferred page to load on login from home page" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:292 -msgid "Change filename to" +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 +msgid "Page to load after login" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:309 ../../Zotlabs/Storage/Browser.php:390 -msgid "Select a target location" +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:391 -msgid "Copy to target location" +#: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:70 +msgid "Startpage" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:389 -msgid "Set permissions for all files and sub folders" +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:312 -msgid "Notify your contacts about this file" +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Theme settings" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:351 -msgid "File category" +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Narrow navbar" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:362 -msgid "Total" +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar background color" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:364 -msgid "Shared" +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar icon color " msgstr "" -#: ../../Zotlabs/Storage/Browser.php:366 -msgid "Add Files" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar active icon color " msgstr "" -#: ../../Zotlabs/Storage/Browser.php:381 -msgid "parent" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Link color" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:399 -msgid "Select All" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set font-color for banner" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:400 -msgid "Bulk Actions" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background color" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:401 -msgid "Adjust Permissions" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background image" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:402 -msgid "Move or Copy" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of items" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Info" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color of comments" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:406 -msgid "Rename" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-size for the entire application" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:408 -msgid "Attachment BBcode" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Examples: 1rem, 100%, 16px" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:409 -msgid "Embed BBcode" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set font-color for posts and comments" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:410 -msgid "Link BBcode" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set radius of corners" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:480 -#, php-format -msgid "You are using %1$s of your available file storage." +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Example: 4px" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:485 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set shadow depth of photos" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:496 -msgid "WARNING:" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:537 -msgid "Create new folder" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Leave empty for default width" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:539 -msgid "Upload file" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of conversation author photo" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:551 -msgid "Drop files here to immediately upload" +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set size of followup author photos" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:554 -msgid "" -"You can select files via the upload button or drop them right here or into " -"an existing folder." +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Show advanced settings" msgstr "" #: ../../boot.php:1695 diff --git a/view/pl/hmessages.mo b/view/pl/hmessages.mo index 94cf896a2..73af1adda 100644 Binary files a/view/pl/hmessages.mo and b/view/pl/hmessages.mo differ diff --git a/view/pl/hmessages.po b/view/pl/hmessages.po index f8edc1f5e..9c9864859 100644 --- a/view/pl/hmessages.po +++ b/view/pl/hmessages.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: 5.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-29 23:47+0200\n" -"PO-Revision-Date: 2021-05-01 02:29+0200\n" +"POT-Creation-Date: 2021-05-23 21:08+0200\n" +"PO-Revision-Date: 2021-05-23 23:32+0200\n" "Last-Translator: Andrzej Budziński \n" "Language-Team: \n" "Language: pl\n" @@ -60,7 +60,7 @@ msgstr "Może pisać na moich stronach wiki" #: ../../Zotlabs/Access/Permissions.php:66 msgid "Can post on my channel (wall) page" -msgstr "Może publikować na stronie mojego kanału (tablicy)" +msgstr "Może publikować na stronie mojego kanału (ścianie)" #: ../../Zotlabs/Access/Permissions.php:67 msgid "Can comment on or like my posts" @@ -152,12 +152,13 @@ msgstr "Specjalne - celebryckie i mównice" msgid "Special - Group Repository" msgstr "Specjalne - repozytorium grupowe" -#: ../../Zotlabs/Access/PermissionRoles.php:310 ../../Zotlabs/Module/Cdav.php:1385 -#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Connedit.php:928 -#: ../../include/selectors.php:60 ../../include/selectors.php:77 -#: ../../include/selectors.php:115 ../../include/selectors.php:151 -#: ../../include/connections.php:741 ../../include/connections.php:748 -#: ../../include/event.php:1429 ../../include/event.php:1436 +#: ../../Zotlabs/Access/PermissionRoles.php:310 +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Connedit.php:928 ../../include/selectors.php:60 +#: ../../include/selectors.php:77 ../../include/selectors.php:115 +#: ../../include/selectors.php:151 ../../include/connections.php:741 +#: ../../include/connections.php:748 ../../include/event.php:1429 +#: ../../include/event.php:1436 msgid "Other" msgstr "Inny" @@ -174,17 +175,22 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Appman.php:87 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/New_channel.php:105 ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Filestorage.php:20 ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:96 ../../Zotlabs/Module/Filestorage.php:119 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Filestorage.php:20 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 ../../Zotlabs/Module/Wiki.php:59 #: ../../Zotlabs/Module/Wiki.php:284 ../../Zotlabs/Module/Wiki.php:427 #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Locs.php:100 ../../Zotlabs/Module/Connedit.php:397 #: ../../Zotlabs/Module/Profile_photo.php:338 -#: ../../Zotlabs/Module/Profile_photo.php:351 ../../Zotlabs/Module/Sharedwithme.php:19 +#: ../../Zotlabs/Module/Profile_photo.php:351 +#: ../../Zotlabs/Module/Sharedwithme.php:19 #: ../../Zotlabs/Module/Editlayout.php:67 ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Item.php:506 #: ../../Zotlabs/Module/Item.php:525 ../../Zotlabs/Module/Item.php:535 @@ -199,30 +205,34 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Connections.php:32 ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Profile.php:99 #: ../../Zotlabs/Module/Profile.php:114 ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 #: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Articles.php:89 -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Mitem.php:129 -#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Register.php:197 -#: ../../Zotlabs/Module/Channel_calendar.php:232 ../../Zotlabs/Module/Invite.php:51 -#: ../../Zotlabs/Module/Invite.php:302 ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Cover_photo.php:341 ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Menu.php:130 ../../Zotlabs/Module/Menu.php:141 -#: ../../Zotlabs/Module/Sources.php:80 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Attach_edit.php:90 -#: ../../Zotlabs/Module/Attach_edit.php:99 ../../Zotlabs/Module/Attach_edit.php:106 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Web/WebServer.php:116 ../../Zotlabs/Lib/Chatroom.php:135 -#: ../../include/photos.php:27 ../../include/attach.php:156 -#: ../../include/attach.php:205 ../../include/attach.php:278 -#: ../../include/attach.php:329 ../../include/attach.php:424 -#: ../../include/attach.php:438 ../../include/attach.php:445 -#: ../../include/attach.php:527 ../../include/attach.php:1091 -#: ../../include/attach.php:1164 ../../include/attach.php:1327 -#: ../../include/items.php:4087 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Register.php:200 +#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Menu.php:130 +#: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Sources.php:80 +#: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Network.php:19 +#: ../../Zotlabs/Module/Attach_edit.php:90 +#: ../../Zotlabs/Module/Attach_edit.php:99 +#: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Web/WebServer.php:116 +#: ../../Zotlabs/Lib/Chatroom.php:135 ../../include/photos.php:27 +#: ../../include/attach.php:156 ../../include/attach.php:205 +#: ../../include/attach.php:278 ../../include/attach.php:329 +#: ../../include/attach.php:424 ../../include/attach.php:438 +#: ../../include/attach.php:445 ../../include/attach.php:527 +#: ../../include/attach.php:1091 ../../include/attach.php:1164 +#: ../../include/attach.php:1327 ../../include/items.php:4088 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:53 #: ../../extend/addon/hubzilla-addons/keepout/keepout.php:36 #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:26 @@ -330,20 +340,24 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Connect.php:107 ../../Zotlabs/Module/Filestorage.php:208 #: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Wiki.php:214 #: ../../Zotlabs/Module/Locs.php:132 ../../Zotlabs/Module/Connedit.php:897 -#: ../../Zotlabs/Module/Regate.php:384 ../../Zotlabs/Module/Rate.php:168 +#: ../../Zotlabs/Module/Regate.php:387 ../../Zotlabs/Module/Rate.php:168 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Chat.php:209 #: ../../Zotlabs/Module/Chat.php:248 ../../Zotlabs/Module/Photos.php:1058 #: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Editpost.php:86 ../../Zotlabs/Module/Affinity.php:87 -#: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Pconfig.php:116 +#: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Security.php:120 #: ../../Zotlabs/Module/Admin/Accounts.php:309 #: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Channels.php:147 ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Addons.php:442 ../../Zotlabs/Module/Admin/Site.php:412 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +#: ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Profs.php:178 ../../Zotlabs/Module/Thing.php:328 -#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Thing.php:381 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Setup.php:306 #: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Mitem.php:259 #: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Permcats.php:129 @@ -444,9 +458,9 @@ msgstr "z terminala." #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Cloud.php:123 #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Group.php:99 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Subthread.php:89 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Web/WebServer.php:115 -#: ../../include/items.php:441 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Subthread.php:89 ../../Zotlabs/Module/Share.php:72 +#: ../../Zotlabs/Web/WebServer.php:115 ../../include/items.php:441 #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:119 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:109 @@ -528,7 +542,7 @@ msgid "Profile Visibility Editor" msgstr "Edytor widoczności profilu" #: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:362 -#: ../../include/channel.php:1911 +#: ../../include/channel.php:1914 msgid "Profile" msgstr "Profil" @@ -540,7 +554,8 @@ msgstr "Kliknij kontakt, który chcesz dodać lub usunąć." msgid "Visible To" msgstr "Widoczne dla" -#: ../../Zotlabs/Module/Profperm.php:140 ../../Zotlabs/Module/Connections.php:218 +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:218 msgid "All Connections" msgstr "Wszystkie połączenia" @@ -569,7 +584,8 @@ msgstr "Czy zezwalasz aplikacji %s na dostęp do danych Twojego kanału?" msgid "Allow" msgstr "Zezwól" -#: ../../Zotlabs/Module/Authorize.php:33 ../../Zotlabs/Module/Admin/Accounts.php:319 +#: ../../Zotlabs/Module/Authorize.php:33 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Zabroń" @@ -700,9 +716,11 @@ msgstr "Kalendarze CalDAV" #: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Module/Card_edit.php:130 #: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Blocks.php:162 #: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Connections.php:329 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Editblock.php:139 ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Module/Connections.php:329 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:320 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:269 @@ -723,11 +741,14 @@ msgstr "Usuń wszystko" #: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 #: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profile_photo.php:507 ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Profile_photo.php:507 +#: ../../Zotlabs/Module/Editlayout.php:140 #: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:111 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:427 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:427 +#: ../../Zotlabs/Module/Cover_photo.php:428 #: ../../Zotlabs/Storage/Browser.php:383 ../../include/conversation.php:1460 #: ../../include/conversation.php:1515 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:209 @@ -753,11 +774,11 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../include/contact_widgets.php:112 -#: ../../include/contact_widgets.php:156 ../../include/contact_widgets.php:201 -#: ../../include/contact_widgets.php:236 ../../include/taxonomy.php:420 -#: ../../include/taxonomy.php:502 ../../include/taxonomy.php:522 -#: ../../include/taxonomy.php:543 +#: ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../include/contact_widgets.php:112 ../../include/contact_widgets.php:156 +#: ../../include/contact_widgets.php:201 ../../include/contact_widgets.php:236 +#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 +#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 msgid "Categories" msgstr "Kategorie" @@ -766,7 +787,8 @@ msgstr "Kategorie" #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 #: ../../Zotlabs/Module/Sharedwithme.php:106 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Admin/Channels.php:159 ../../Zotlabs/Storage/Browser.php:377 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Storage/Browser.php:377 #: ../../Zotlabs/Lib/NativeWikiPage.php:576 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:172 @@ -789,7 +811,8 @@ msgid "Phone" msgstr "Numer telefonu" #: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:789 -#: ../../Zotlabs/Module/Connedit.php:920 ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 #: ../../Zotlabs/Module/Admin/Accounts.php:330 ../../include/network.php:1768 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:71 #: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:56 @@ -810,7 +833,8 @@ msgstr "Strona internetowa" #: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:504 #: ../../Zotlabs/Module/Profiles.php:792 ../../Zotlabs/Module/Locs.php:129 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Admin/Channels.php:160 msgid "Address" msgstr "Adres" @@ -898,8 +922,8 @@ msgstr "Proszę się zalogować, aby kontynuować." #: ../../Zotlabs/Module/Api.php:97 msgid "" -"Do you want to authorize this application to access your posts and contacts, and/or " -"create new posts for you?" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" "Czy chcesz zezwolić tej aplikacji na dostęp do Twoich wpisów i kontaktów albo " "tworzenie dla Ciebie nowych wpisów ?" @@ -908,22 +932,24 @@ msgstr "" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Photos.php:673 -#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:536 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 -#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 -#: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 -#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 -#: ../../include/conversation.php:1468 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../include/dir_fns.php:146 +#: ../../Zotlabs/Module/Settings/Channel.php:311 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../include/dir_fns.php:146 #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 #: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 @@ -981,22 +1007,24 @@ msgstr "Tak" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Connedit.php:789 -#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:319 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 -#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 -#: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 -#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 -#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 -#: ../../include/conversation.php:1468 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../include/dir_fns.php:146 +#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Photos.php:673 +#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Settings/Display.php:88 +#: ../../Zotlabs/Module/Settings/Channel.php:311 +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 +#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 +#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 +#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 +#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../include/dir_fns.php:146 #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 #: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 @@ -1067,7 +1095,8 @@ msgid "or select an existing folder (doubleclick)" msgstr "lub wybierz istniejący folder (kliknij dwukrotnie)" #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Cards.php:113 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Admin/Profs.php:114 +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 #: ../../Zotlabs/Module/Articles.php:117 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Widget/Notes.php:23 #: ../../include/text.php:1145 ../../include/text.php:1157 @@ -1079,18 +1108,21 @@ msgstr "Zapisz" msgid "Save to Folder" msgstr "Zapisz do folderu" -#: ../../Zotlabs/Module/Events.php:113 ../../Zotlabs/Module/Channel_calendar.php:62 +#: ../../Zotlabs/Module/Events.php:113 +#: ../../Zotlabs/Module/Channel_calendar.php:62 msgid "Event can not end before it has started." msgstr "Wydarzenie nie może zakończyć się przed rozpoczęciem." #: ../../Zotlabs/Module/Events.php:115 ../../Zotlabs/Module/Events.php:124 -#: ../../Zotlabs/Module/Events.php:146 ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Events.php:146 +#: ../../Zotlabs/Module/Channel_calendar.php:64 #: ../../Zotlabs/Module/Channel_calendar.php:72 #: ../../Zotlabs/Module/Channel_calendar.php:87 msgid "Unable to generate preview." msgstr "Nie można wygenerować podglądu." -#: ../../Zotlabs/Module/Events.php:122 ../../Zotlabs/Module/Channel_calendar.php:70 +#: ../../Zotlabs/Module/Events.php:122 +#: ../../Zotlabs/Module/Channel_calendar.php:70 msgid "Event title and start time are required." msgstr "Wymaga się wprowadzenia tytułu wydarzenia i godziny rozpoczęcia." @@ -1101,7 +1133,8 @@ msgid "Event not found." msgstr "Nie znaleziono wydarzenia." #: ../../Zotlabs/Module/Events.php:266 ../../Zotlabs/Module/Like.php:441 -#: ../../Zotlabs/Module/Tagger.php:75 ../../Zotlabs/Module/Channel_calendar.php:221 +#: ../../Zotlabs/Module/Tagger.php:75 +#: ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../include/conversation.php:132 ../../include/text.php:2257 #: ../../include/event.php:1259 msgid "event" @@ -1114,7 +1147,7 @@ msgstr "Edytuj tytuł wydarzenia" #: ../../Zotlabs/Module/Events.php:468 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Profiles.php:747 ../../Zotlabs/Module/Profiles.php:751 #: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Appman.php:144 -#: ../../Zotlabs/Module/Register.php:522 ../../include/js_strings.php:123 +#: ../../Zotlabs/Module/Register.php:498 ../../include/js_strings.php:123 #: ../../include/datetime.php:211 #: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:334 #: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:358 @@ -1157,8 +1190,8 @@ msgstr "Dostosuj do strefy czasowej widza" #: ../../Zotlabs/Module/Events.php:479 msgid "" -"Important for events that happen in a particular place. Not practical for global " -"holidays." +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" "Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na " "globalne święta." @@ -1191,11 +1224,13 @@ msgstr "Zaawansowane opcje" msgid "l, F j" msgstr "l, F j" -#: ../../Zotlabs/Module/Events.php:641 ../../Zotlabs/Module/Channel_calendar.php:370 +#: ../../Zotlabs/Module/Events.php:641 +#: ../../Zotlabs/Module/Channel_calendar.php:370 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: ../../Zotlabs/Module/Events.php:643 ../../Zotlabs/Module/Channel_calendar.php:372 +#: ../../Zotlabs/Module/Events.php:643 +#: ../../Zotlabs/Module/Channel_calendar.php:372 msgid "Delete event" msgstr "Usuń wydarzenie" @@ -1203,7 +1238,8 @@ msgstr "Usuń wydarzenie" msgid "Link to Source" msgstr "Link do źródła" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Channel_calendar.php:406 +#: ../../Zotlabs/Module/Events.php:677 +#: ../../Zotlabs/Module/Channel_calendar.php:406 msgid "calendar" msgstr "kalendarz" @@ -1215,7 +1251,7 @@ msgstr "Edytuj wydarzenie" msgid "Create Event" msgstr "Utwórz wydarzenie" -#: ../../Zotlabs/Module/Events.php:699 ../../include/channel.php:1914 +#: ../../Zotlabs/Module/Events.php:699 ../../include/channel.php:1917 msgid "Export" msgstr "Eksportuj" @@ -1230,7 +1266,8 @@ msgstr "Widok" msgid "Event removed" msgstr "Wydarzenie usunięte" -#: ../../Zotlabs/Module/Events.php:742 ../../Zotlabs/Module/Channel_calendar.php:493 +#: ../../Zotlabs/Module/Events.php:742 +#: ../../Zotlabs/Module/Channel_calendar.php:493 msgid "Failed to remove event" msgstr "Nie udało się usunąć wydarzenia" @@ -1289,11 +1326,11 @@ msgstr "Moje zakładki połączeń" #: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Layouts.php:31 #: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Filestorage.php:59 #: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Articles.php:43 -#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Menu.php:92 -#: ../../include/channel.php:1464 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Cards.php:42 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Profile.php:27 +#: ../../Zotlabs/Module/Articles.php:43 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Menu.php:92 ../../include/channel.php:1464 #: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:49 msgid "Requested profile is not available." msgstr "Żądany profil nie jest dostępny." @@ -1332,14 +1369,17 @@ msgstr "Strony internetowe" #: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Oauth2.php:194 #: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Connections.php:321 -#: ../../Zotlabs/Module/Connections.php:363 ../../Zotlabs/Module/Connections.php:383 -#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Article_edit.php:98 +#: ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:321 +#: ../../Zotlabs/Module/Connections.php:363 +#: ../../Zotlabs/Module/Connections.php:383 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:268 #: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 ../../Zotlabs/Widget/Cdav.php:138 -#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/channel.php:1563 -#: ../../include/channel.php:1567 ../../include/menu.php:120 +#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/channel.php:1566 +#: ../../include/channel.php:1570 ../../include/menu.php:120 msgid "Edit" msgstr "Edytuj" @@ -1484,7 +1524,7 @@ msgid "View this profile" msgstr "Zobacz ten profil" #: ../../Zotlabs/Module/Profiles.php:727 ../../Zotlabs/Module/Profiles.php:826 -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1589 msgid "Edit visibility" msgstr "Edytuj dostępność" @@ -1496,7 +1536,7 @@ msgstr "Narzędzia profilowe" msgid "Change cover photo" msgstr "Zmień zdjęcie okładkowe" -#: ../../Zotlabs/Module/Profiles.php:730 ../../include/channel.php:1556 +#: ../../Zotlabs/Module/Profiles.php:730 ../../include/channel.php:1559 msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" @@ -1666,11 +1706,11 @@ msgstr "Moje inne kanały" msgid "Communications" msgstr "Komunikacja" -#: ../../Zotlabs/Module/Profiles.php:822 ../../include/channel.php:1582 +#: ../../Zotlabs/Module/Profiles.php:822 ../../include/channel.php:1585 msgid "Profile Image" msgstr "Obraz profilowy" -#: ../../Zotlabs/Module/Profiles.php:832 ../../include/channel.php:1563 +#: ../../Zotlabs/Module/Profiles.php:832 ../../include/channel.php:1566 #: ../../include/nav.php:118 msgid "Edit Profiles" msgstr "Edytuj profile" @@ -1717,13 +1757,13 @@ msgstr "Importuj kanał" #: ../../Zotlabs/Module/Import.php:629 msgid "" -"Use this form to import an existing channel from a different server/hub. You may " -"retrieve the channel identity from the old server/hub via the network or provide an " -"export file." +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (serwisu)." -"Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez sieć lub " -"dostarczyć plik eksportu." +"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera " +"(serwisu).Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez " +"sieć lub dostarczyć plik eksportu." #: ../../Zotlabs/Module/Import.php:630 ../../Zotlabs/Module/Import_items.php:127 msgid "File to Upload" @@ -1748,19 +1788,20 @@ msgstr "Twoje stare hasło logowania" #: ../../Zotlabs/Module/Import.php:636 msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)" +"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną " +"pamięcią)" #: ../../Zotlabs/Module/Import.php:638 msgid "" -"For either option, please choose whether to make this hub your new primary address, " -"or whether your old location should continue this role. You will be able to post " -"from either location, but only one can be marked as the primary location for files, " -"photos, and media." +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" "W obu przypadkach wybierz, czy chcesz ustawić ten serwis jako nowy adres " -"podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/" -"mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona " -"jako główna lokalizacja plików, zdjęć i multimediów." +"podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz " +"mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być " +"oznaczona jako główna lokalizacja plików, zdjęć i multimediów." #: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" @@ -1776,16 +1817,16 @@ msgstr "Użyj tego pseudonimu kanału zamiast podanego" #: ../../Zotlabs/Module/Import.php:642 msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly assigned a " -"similar nickname if either name is already allocated on this site." +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." msgstr "" -"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny " -"pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie." +"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo " +"podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie." #: ../../Zotlabs/Module/Import.php:644 msgid "" -"This process may take several minutes to complete. Please submit the form only once " -"and leave this page open until finished." +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę " "stronę otwartą do zakończenia procedury." @@ -1800,11 +1841,11 @@ msgstr "Ta akcja jest ograniczona do członków." #: ../../Zotlabs/Module/Like.php:113 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -"Aby kontynuować, zaloguj się za pomocą ID $Projectname lub " -"zarejestruj się jako nowy członek $Projectname." +"Aby kontynuować, zaloguj się za pomocą ID $Projectname " +"lub zarejestruj się jako nowy członek $Projectname." #: ../../Zotlabs/Module/Like.php:166 ../../Zotlabs/Module/Like.php:192 #: ../../Zotlabs/Module/Like.php:230 @@ -1831,28 +1872,28 @@ msgstr "Poprzednia czynność została cofnięta." #: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 #: ../../include/conversation.php:128 ../../include/text.php:2254 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2064 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 #: ../../extend/addon/hubzilla-addons/redphotos/redphotohelper.php:71 msgid "photo" msgstr "zdjecie" #: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2064 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 msgid "status" msgstr "stan" #: ../../Zotlabs/Module/Like.php:471 ../../Zotlabs/Lib/Activity.php:3297 #: ../../include/conversation.php:174 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1595 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2138 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s polubił %3$s %2$s" #: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #: ../../include/conversation.php:177 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2103 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s dezaprobował %3$s %2$s" @@ -1902,7 +1943,8 @@ msgstr "Dziękujemy." msgid "Could not access contact record." msgstr "Brak dostępu do rekordu kontaktu." -#: ../../Zotlabs/Module/Defperms.php:112 ../../Zotlabs/Module/Settings/Channel.php:267 +#: ../../Zotlabs/Module/Defperms.php:112 +#: ../../Zotlabs/Module/Settings/Channel.php:267 #: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:54 #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:116 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:82 @@ -1930,17 +1972,22 @@ msgstr "Domyślne uprawnienia połączenia" msgid "Apply these permissions automatically" msgstr "Zastosuj te uprawnienia automatycznie" -#: ../../Zotlabs/Module/Defperms.php:256 ../../Zotlabs/Module/Settings/Channel.php:472 -msgid "If enabled, connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Module/Settings/Channel.php:472 +msgid "" +"If enabled, connection requests will be approved without your interaction" msgstr "" -"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" +"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej " +"interakcji" #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Permission role" msgstr "Rola uprawnień" -#: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 ../../Zotlabs/Module/Connedit.php:862 +#: ../../Zotlabs/Module/Defperms.php:257 +#: ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/Connedit.php:862 #: ../../Zotlabs/Widget/Notifications.php:182 ../../include/nav.php:324 msgid "Loading" msgstr "Ładowanie" @@ -1950,7 +1997,8 @@ msgid "Add permission role" msgstr "Dodaj rolę uprawnień" #: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Connedit.php:876 -msgid "The permissions indicated on this page will be applied to all new connections." +msgid "" +"The permissions indicated on this page will be applied to all new connections." msgstr "" "Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych " "połączeń." @@ -1976,11 +2024,11 @@ msgstr "Uprawnienia indywidualne" #: ../../Zotlabs/Module/Defperms.php:271 msgid "" -"Some individual permissions may have been preset or locked based on your channel " -"type and privacy settings." +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." msgstr "" -"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub zablokowane w " -"zależności od typu kanału i ustawień prywatności." +"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub " +"zablokowane w zależności od typu kanału i ustawień prywatności." #: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 #: ../../Zotlabs/Module/Editlayout.php:128 @@ -1996,8 +2044,8 @@ msgid "Layouts" msgstr "Układy" #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 -#: ../../include/nav.php:180 ../../include/nav.php:320 ../../include/help.php:117 -#: ../../include/help.php:125 +#: ../../include/nav.php:180 ../../include/nav.php:320 +#: ../../include/help.php:117 ../../include/help.php:125 msgid "Help" msgstr "Pomoc" @@ -2049,7 +2097,7 @@ msgid "Could not create privacy group." msgstr "Nie udało się utworzyć grupy prywatności." #: ../../Zotlabs/Module/Group.php:62 ../../Zotlabs/Module/Group.php:214 -#: ../../include/items.php:4584 +#: ../../include/items.php:4585 msgid "Privacy group not found." msgstr "Nie znaleziono grupy prywatności." @@ -2119,9 +2167,11 @@ msgstr "Kliknij kanał, aby przełączyć członkostwo" #: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"Channel removals are not allowed within 48 hours of changing the account password." +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." +"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do " +"konta." #: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" @@ -2136,7 +2186,8 @@ msgstr "UWAGA: " msgid "This channel will be completely removed from the network. " msgstr "Ten kanał zostanie całkowicie usunięty z sieci. " -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "This action is permanent and can not be undone!" msgstr "Ta akcja jest bezpowrotna i nie można jej cofnąć!" @@ -2145,7 +2196,8 @@ msgstr "Ta akcja jest bezpowrotna i nie można jej cofnąć!" msgid "Please enter your password for verification:" msgstr "Wprowadź hasło do weryfikacji:" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:596 msgid "Remove Channel" msgstr "Usuń kanał" @@ -2206,7 +2258,8 @@ msgid "" "Channel name changes are not allowed within 48 hours of changing the account " "password." msgstr "" -"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta." +"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do " +"konta." #: ../../Zotlabs/Module/Changeaddr.php:46 ../../Zotlabs/Module/Register.php:100 #: ../../include/channel.php:226 ../../include/channel.php:706 @@ -2215,8 +2268,10 @@ msgstr "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny." #: ../../Zotlabs/Module/Changeaddr.php:51 ../../Zotlabs/Module/Register.php:105 #: ../../include/channel.php:231 ../../include/channel.php:711 -msgid "Nickname has unsupported characters or is already being used on this site." -msgstr "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie." +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" +"Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie." #: ../../Zotlabs/Module/Changeaddr.php:77 msgid "Change channel nickname/address" @@ -2270,7 +2325,8 @@ msgstr "Klucz konsumenta" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 msgid "Automatically generated - change if desired. Max length 20" -msgstr "Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" +msgstr "" +"Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" #: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 @@ -2286,15 +2342,17 @@ msgstr "Przekierowanie" #: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 #: ../../Zotlabs/Module/Oauth2.php:148 -msgid "Redirect URI - leave blank unless your application specifically requires this" +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego wymaga" +"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego " +"wymaga" #: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 msgid "Icon url" msgstr "URL ikony" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Register.php:522 +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Register.php:498 #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 msgid "Optional" msgstr "Opcjonalne" @@ -2332,7 +2390,8 @@ msgstr "Weryfikacja adresu e-mail została wysłana ponownie" msgid "Unable to resend email verification message." msgstr "Nie można ponownie wysłać weryfikacyjną wiadomość e-mail." -#: ../../Zotlabs/Module/Search.php:21 ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Search.php:21 +#: ../../Zotlabs/Module/Viewconnections.php:23 #: ../../Zotlabs/Module/Display.php:26 ../../Zotlabs/Module/Photos.php:519 #: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 #: ../../Zotlabs/Module/Ratings.php:83 @@ -2425,7 +2484,8 @@ msgstr "Importuj elementy" #: ../../Zotlabs/Module/Import_items.php:126 msgid "Use this form to import existing posts and content from an export file." msgstr "" -"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku eksportu." +"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku " +"eksportu." #: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 msgid "Continue" @@ -2452,20 +2512,21 @@ msgid "" "This channel may require additional steps or acknowledgement of the following " "conditions prior to connecting:" msgstr "" -"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub potwierdzenia " -"następujących warunków:" +"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub " +"potwierdzenia następujących warunków:" #: ../../Zotlabs/Module/Connect.php:105 -msgid "Potential connections will then see the following text before proceeding:" +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "Potencjalne połączenia zobaczą następujący tekst przed kontynuowaniem:" #: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 msgid "" -"By continuing, I certify that I have complied with any instructions provided on " -"this page." +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -"Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej " -"stronie." +"Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na " +"tej stronie." #: ../../Zotlabs/Module/Connect.php:115 msgid "(No specific instructions have been provided by the channel owner.)" @@ -2486,16 +2547,18 @@ msgstr "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy." #: ../../Zotlabs/Module/New_channel.php:160 msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa lotnicza" -"\"" +"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa " +"lotnicza\"" #: ../../Zotlabs/Module/New_channel.php:165 -msgid "This will be used to create a unique network address (like an email address)." +msgid "" +"This will be used to create a unique network address (like an email address)." msgstr "" -"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego do " -"adresu e-mail)." +"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego " +"do adresu e-mail)." #: ../../Zotlabs/Module/New_channel.php:167 msgid "Allowed characters are a-z 0-9, - and _" @@ -2505,7 +2568,8 @@ msgstr "Dozwolone znaki, to a-z 0-9, - oraz _" msgid "Channel name" msgstr "Nazwa kanału" -#: ../../Zotlabs/Module/New_channel.php:177 ../../Zotlabs/Module/Register.php:534 +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:510 msgid "Choose a short nickname" msgstr "Wybierz krótki pseudonim" @@ -2532,17 +2596,19 @@ msgstr "Utwórz kanał" #: ../../Zotlabs/Module/New_channel.php:182 msgid "" -"A channel is a unique network identity. It can represent a person (social network " -"profile), a forum (group), a business or celebrity page, a newsfeed, and many other " -"things." +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." msgstr "" "Kanał to unikalna tożsamość sieciowa. Może reprezentować osobę (profil sieci " "społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał " "informacyjny i wiele innych rzeczy." #: ../../Zotlabs/Module/New_channel.php:183 -msgid "or import an existing channel from another location." -msgstr "lub zaimportuj istniejący kanał z innej lokalizacji." +msgid "" +"or import an existing channel from another location." +msgstr "" +"lub zaimportuj istniejący kanał z innej lokalizacji." #: ../../Zotlabs/Module/New_channel.php:188 msgid "Validate" @@ -2566,7 +2632,8 @@ msgstr "Utwórz własną aplikację" #: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Account removals are not allowed within 48 hours of changing the account password." +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" "Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." @@ -2576,7 +2643,8 @@ msgstr "Usuń to konto" #: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"This account and all its channels will be completely removed from the network. " +"This account and all its channels will be completely removed from the " +"network. " msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. " #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -2584,21 +2652,23 @@ msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci msgid "Remove Account" msgstr "Usuń konto" -#: ../../Zotlabs/Module/Filestorage.php:14 ../../Zotlabs/Module/Filestorage.php:53 +#: ../../Zotlabs/Module/Filestorage.php:14 +#: ../../Zotlabs/Module/Filestorage.php:53 msgid "Deprecated!" msgstr "Przestarzałe!" #: ../../Zotlabs/Module/Filestorage.php:29 ../../Zotlabs/Module/Display.php:42 #: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin/Addons.php:260 -#: ../../Zotlabs/Module/Thing.php:96 ../../Zotlabs/Module/Viewsrc.php:25 -#: ../../include/items.php:4010 +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:260 ../../Zotlabs/Module/Thing.php:96 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4011 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:284 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:285 msgid "Item not found." msgstr "Nie znaleziono elementu." -#: ../../Zotlabs/Module/Filestorage.php:109 ../../Zotlabs/Module/Attach_edit.php:69 +#: ../../Zotlabs/Module/Filestorage.php:109 +#: ../../Zotlabs/Module/Attach_edit.php:69 msgid "File not found." msgstr "Nie znaleziono pliku." @@ -2610,10 +2680,11 @@ msgstr "Odmowa dostępu." msgid "Edit file permissions" msgstr "Edytuj uprawnienia do pliku" -#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Connedit.php:683 -#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Photos.php:678 -#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Thing.php:321 -#: ../../Zotlabs/Module/Thing.php:374 ../../include/acl_selectors.php:154 +#: ../../Zotlabs/Module/Filestorage.php:195 +#: ../../Zotlabs/Module/Connedit.php:683 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../include/acl_selectors.php:154 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:254 msgid "Permissions" msgstr "Uprawnienia" @@ -2631,11 +2702,13 @@ msgstr "Uwzględnij wszystkie pliki i podfoldery" msgid "Return to file list" msgstr "Wróć do listy plików" -#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Storage/Browser.php:386 +#: ../../Zotlabs/Module/Filestorage.php:206 +#: ../../Zotlabs/Storage/Browser.php:386 msgid "Copy/paste this code to attach file to a post" msgstr "Skopiuj/wklej ten kod, aby dołączyć plik do wpisu" -#: ../../Zotlabs/Module/Filestorage.php:207 ../../Zotlabs/Storage/Browser.php:387 +#: ../../Zotlabs/Module/Filestorage.php:207 +#: ../../Zotlabs/Storage/Browser.php:387 msgid "Copy/paste this URL to link file from a web page" msgstr "Skopiuj/wklej ten adres URL, aby połączyć plik ze strony internetowej" @@ -2647,14 +2720,16 @@ msgstr "Udostępnij ten plik" msgid "Show URL to this file" msgstr "Pokaż adres URL do tego pliku" -#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Storage/Browser.php:552 msgid "Show in your contacts shared folder" msgstr "Pokaż w folderze udostępnionym kontaktów" #: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 #: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 #: ../../Zotlabs/Module/Editblock.php:95 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 msgid "Item not found" msgstr "Nie znaleziono elementu" @@ -2701,7 +2776,7 @@ msgstr "Elementy strumienia" #: ../../Zotlabs/Module/Viewconnections.php:93 #: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:1051 msgid "Wall posts" -msgstr "Tablica wpisów" +msgstr "Wpisy ścienne" #: ../../Zotlabs/Module/Viewconnections.php:97 #: ../../Zotlabs/Module/Connections.php:306 ../../include/text.php:1055 @@ -2811,7 +2886,8 @@ msgstr "Rodzaj treści" #: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:370 #: ../../Zotlabs/Widget/Wiki_pages.php:38 ../../Zotlabs/Widget/Wiki_pages.php:95 -#: ../../include/text.php:2118 ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 +#: ../../include/text.php:2118 +#: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 msgid "Markdown" msgstr "Markdown" @@ -3063,15 +3139,16 @@ msgstr "Poczekaj kilka minut między kolejnymi operacjami." #: ../../Zotlabs/Module/Locs.php:135 msgid "" -"When possible, drop a location by logging into that website/hub and removing your " -"channel." +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -"Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając swój " -"kanał." +"Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając " +"swój kanał." #: ../../Zotlabs/Module/Locs.php:136 msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa." +msgstr "" +"Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa." #: ../../Zotlabs/Module/Chatsvc.php:131 msgid "Away" @@ -3160,11 +3237,13 @@ msgstr "Ostatnia aktywność" msgid "View recent posts and comments" msgstr "Wyświetl najnowsze wpisy i komentarze" -#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:322 +#: ../../Zotlabs/Module/Connedit.php:629 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 msgid "Unblock" msgstr "Odblokuj" -#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:321 +#: ../../Zotlabs/Module/Connedit.php:629 +#: ../../Zotlabs/Module/Admin/Accounts.php:321 msgid "Block" msgstr "Zablokuj" @@ -3180,7 +3259,8 @@ msgstr "To połączenie jest zablokowane!" msgid "Unignore" msgstr "Przestań ignorować" -#: ../../Zotlabs/Module/Connedit.php:637 ../../Zotlabs/Module/Connections.php:345 +#: ../../Zotlabs/Module/Connedit.php:637 +#: ../../Zotlabs/Module/Connections.php:345 msgid "Ignore" msgstr "Ignoruj" @@ -3201,10 +3281,11 @@ msgid "Archive" msgstr "Archiwizuj" #: ../../Zotlabs/Module/Connedit.php:648 -msgid "Archive (or Unarchive) this connection - mark channel dead but keep content" +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale zachowaj " -"zawartość" +"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale " +"zachowaj zawartość" #: ../../Zotlabs/Module/Connedit.php:649 msgid "This connection is archived!" @@ -3220,7 +3301,7 @@ msgstr "Ukryj" #: ../../Zotlabs/Module/Connedit.php:656 msgid "Hide or Unhide this connection from your other connections" -msgstr "Ukryj lub odkryj to połączenie przed innymi kontaktami" +msgstr "Ukryj lub odkryj to połączenie na liście innymi połączeń" #: ../../Zotlabs/Module/Connedit.php:657 msgid "This connection is hidden!" @@ -3236,7 +3317,7 @@ msgstr "Pobierz Vcard" #: ../../Zotlabs/Module/Connedit.php:675 msgid "Fetch electronic calling card for this connection" -msgstr "Pobierz elektroniczną kartę telefoniczną dla tego połączenia" +msgstr "Pobierz kartę rozmów elektronicznych dla tego połączenia" #: ../../Zotlabs/Module/Connedit.php:686 msgid "Open Individual Permissions section by default" @@ -3244,11 +3325,11 @@ msgstr "Otwórz domyślnie sekcję Uprawnienia indywidualne" #: ../../Zotlabs/Module/Connedit.php:709 msgid "Affinity" -msgstr "Zaprzyjaźnienie" +msgstr "Stopień zaprzyjaźnienie" #: ../../Zotlabs/Module/Connedit.php:712 msgid "Open Set Affinity section by default" -msgstr "Otwieraj domyślnie sekcję Ustaw zaprzyjażnienie" +msgstr "Otwieraj domyślnie sekcję Ustaw stopień zaprzyjażnienia" #: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Widget/Affinity.php:30 msgid "Me" @@ -3258,13 +3339,14 @@ msgstr "Ja" msgid "Family" msgstr "Rodzina" -#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Settings/Channel.php:71 +#: ../../Zotlabs/Module/Connedit.php:718 +#: ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 #: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:90 ../../Zotlabs/Widget/Affinity.php:32 -#: ../../include/channel.php:506 ../../include/channel.php:509 -#: ../../include/selectors.php:134 +#: ../../Zotlabs/Module/Settings/Channel.php:90 +#: ../../Zotlabs/Widget/Affinity.php:32 ../../include/channel.php:506 +#: ../../include/channel.php:509 ../../include/selectors.php:134 msgid "Friends" msgstr "Przyjaciele" @@ -3283,7 +3365,7 @@ msgstr "Filtr" #: ../../Zotlabs/Module/Connedit.php:752 msgid "Open Custom Filter section by default" -msgstr "Otwieraj domyślnie sekcję Filtr niestandardowy" +msgstr "Otwieraj domyślnie sekcję Własny filtr" #: ../../Zotlabs/Module/Connedit.php:789 msgid "Approve this connection" @@ -3295,7 +3377,7 @@ msgstr "Zaakceptuj połączenie, aby umożliwić komunikację" #: ../../Zotlabs/Module/Connedit.php:794 msgid "Set Affinity" -msgstr "Ustaw zaprzyjaźnienie" +msgstr "Ustaw stopień zaprzyjaźnienia" #: ../../Zotlabs/Module/Connedit.php:797 msgid "Set Profile" @@ -3303,7 +3385,7 @@ msgstr "Ustaw profil" #: ../../Zotlabs/Module/Connedit.php:800 msgid "Set Affinity & Profile" -msgstr "Ustaw zaprzyjaźnienie i profil" +msgstr "Ustaw stopień zaprzyjaźnienia i profil" #: ../../Zotlabs/Module/Connedit.php:848 msgid "This connection is unreachable from this location." @@ -3319,13 +3401,13 @@ msgstr "Niezależność lokalizacji nie jest obsługiwana przez ich sieć." #: ../../Zotlabs/Module/Connedit.php:857 msgid "" -"This connection is unreachable from this location. Location independence is not " -"supported by their network." +"This connection is unreachable from this location. Location independence is " +"not supported by their network." msgstr "" -"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie " -"jest obsługiwana przez ich sieć." +"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji " +"nie jest obsługiwana przez ich sieć." -#: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4617 +#: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 #, php-format msgid "Connection: %s" msgstr "Połączenie: %s" @@ -3348,7 +3430,7 @@ msgstr "Narzędzia połączeń" #: ../../Zotlabs/Module/Connedit.php:879 msgid "Slide to adjust your degree of friendship" -msgstr "Przesuń, aby dostosować stopień przyjaźni" +msgstr "Przesuń, aby dostosować stopień zaprzyjaźnienia" #: ../../Zotlabs/Module/Connedit.php:880 ../../Zotlabs/Module/Rate.php:157 #: ../../include/js_strings.php:20 @@ -3372,13 +3454,14 @@ msgid "Only import posts with this text" msgstr "Importuj tylko wpisy z tym tekstem" #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 -#: ../../Zotlabs/Module/Admin/Site.php:512 ../../Zotlabs/Module/Admin/Site.php:513 +#: ../../Zotlabs/Module/Admin/Site.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:513 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all " -"posts" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, aby " -"zaimportować wszystkie wpisy" +"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw " +"puste, aby zaimportować wszystkie wpisy" #: ../../Zotlabs/Module/Connedit.php:886 msgid "Do not import posts with this text" @@ -3395,11 +3478,11 @@ msgstr "Połączenie oczekujące na zatwierdzenie" #: ../../Zotlabs/Module/Connedit.php:898 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your profile " -"securely." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego przeglądania " -"swojego profilu." +"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego " +"przeglądania swojego profilu." #: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Tokens.php:180 msgid "Their Settings" @@ -3412,21 +3495,23 @@ msgid "" "\">privacy settings, which have higher priority than " "individual settings. You can not change those settings here." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień " -"prywatności Twojego kanału, które mają wyższy priorytet niż " -"indywidualne ustawienia. Nie możesz tutaj zmienić tych ustawień." +"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają " +"wyższy priorytet niż indywidualne ustawienia. Nie możesz " +"tutaj zmienić tych ustawień." #: ../../Zotlabs/Module/Connedit.php:905 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have any " -"impact unless the inherited setting changes." +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień " -"prywatności Twojego kanału, te które mają wyższy priorytet niż " -"indywidualne ustawienia. Możesz zmienić te ustawienia tutaj, ale nie będą one miały " -"żadnego wpływu, chyba że odziedziczone ustawienie ulegnie zmianie." +"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają " +"wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia " +"tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone " +"ustawienie ulegnie zmianie." #: ../../Zotlabs/Module/Connedit.php:906 msgid "Last update:" @@ -3444,185 +3529,197 @@ msgstr "Wiadomość wysłana" msgid "Email resend failed" msgstr "Ponowne wysłanie wiadomości nie powiodło się" -#: ../../Zotlabs/Module/Regate.php:105 -msgid "Verify successfull" -msgstr "Weryfikacja powiodła się" +#: ../../Zotlabs/Module/Regate.php:106 +msgid "Verification successful" +msgstr "Weryfikacja zakończyła się pomyślnie" -#: ../../Zotlabs/Module/Regate.php:149 +#: ../../Zotlabs/Module/Regate.php:150 msgid "Account successfull created" msgstr "Konto zostało pomyślnie utworzone" -#: ../../Zotlabs/Module/Regate.php:190 +#: ../../Zotlabs/Module/Regate.php:191 msgid "Channel successfull created" msgstr "Kanał został pomyślnie utworzony" -#: ../../Zotlabs/Module/Regate.php:196 +#: ../../Zotlabs/Module/Regate.php:197 msgid "Automatic channel creation failed. Please create a channel." msgstr "Automatyczne tworzenie kanału nie powiodło się. Utwórz kanał ręcznie." -#: ../../Zotlabs/Module/Regate.php:208 +#: ../../Zotlabs/Module/Regate.php:209 msgid "Account creation error" msgstr "Błąd tworzenia konta" -#: ../../Zotlabs/Module/Regate.php:220 +#: ../../Zotlabs/Module/Regate.php:221 msgid "Verify failed" msgstr "Weryfikacja nie powiodła się" -#: ../../Zotlabs/Module/Regate.php:225 +#: ../../Zotlabs/Module/Regate.php:226 msgid "Token verification failed" msgstr "Weryfikacja tokena nie powiodła się" -#: ../../Zotlabs/Module/Regate.php:230 +#: ../../Zotlabs/Module/Regate.php:231 msgid "Request not inside time frame" msgstr "Żądanie nie mieści się się w ramach czasowych" -#: ../../Zotlabs/Module/Regate.php:236 ../../Zotlabs/Module/Regate.php:266 +#: ../../Zotlabs/Module/Regate.php:237 ../../Zotlabs/Module/Regate.php:267 msgid "Identity unknown" msgstr "Tożsamość nieznana" -#: ../../Zotlabs/Module/Regate.php:242 +#: ../../Zotlabs/Module/Regate.php:243 msgid "dId2 mistaken" msgstr "nieprawidłowy dId2" -#: ../../Zotlabs/Module/Regate.php:270 +#: ../../Zotlabs/Module/Regate.php:271 msgid "Your Registration ID" msgstr "Twój identyfikator rejestracji" -#: ../../Zotlabs/Module/Regate.php:283 ../../Zotlabs/Module/Regate.php:374 -#: ../../Zotlabs/Module/Regate.php:403 +#: ../../Zotlabs/Module/Regate.php:284 ../../Zotlabs/Module/Regate.php:376 +#: ../../Zotlabs/Module/Regate.php:408 msgid "Registration verification" msgstr "Weryfikacja rejestracji" -#: ../../Zotlabs/Module/Regate.php:290 ../../Zotlabs/Module/Regate.php:408 +#: ../../Zotlabs/Module/Regate.php:291 ../../Zotlabs/Module/Regate.php:413 msgid "Hold on, you can start verification in" msgstr "Poczekaj. Możesz rozpocząć weryfikację za" -#: ../../Zotlabs/Module/Regate.php:291 +#: ../../Zotlabs/Module/Regate.php:292 msgid "Please remember your verification token for ID" msgstr "Zapamiętaj swój token weryfikacyjny dla identyfikatora" -#: ../../Zotlabs/Module/Regate.php:292 +#: ../../Zotlabs/Module/Regate.php:294 msgid "Token validity" msgstr "Ważność tokena" -#: ../../Zotlabs/Module/Regate.php:328 -msgid "Resend" -msgstr "Wyślij ponownie" +#: ../../Zotlabs/Module/Regate.php:330 +msgid "Resend email" +msgstr "Wyślij ponownie wiadomość e-mail" -#: ../../Zotlabs/Module/Regate.php:333 +#: ../../Zotlabs/Module/Regate.php:335 msgid "Registration status" msgstr "Status rejestracji" -#: ../../Zotlabs/Module/Regate.php:336 +#: ../../Zotlabs/Module/Regate.php:338 msgid "Verification successful!" msgstr "Weryfikacja powiodła się!" -#: ../../Zotlabs/Module/Regate.php:337 +#: ../../Zotlabs/Module/Regate.php:339 msgid "Your login ID is" msgstr "Twój identyfikator logowania to" -#: ../../Zotlabs/Module/Regate.php:338 +#: ../../Zotlabs/Module/Regate.php:340 msgid "" -"After your account has been approved by our administrator you will be able to login " -"with your login ID and your provided password." +"After your account has been approved by our administrator you will be able to " +"login with your login ID and your provided password." msgstr "" -"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się za " -"pomocą swojego identyfikatora logowania i podanego hasła." +"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować " +"się za pomocą swojego identyfikatora logowania i podanego hasła." -#: ../../Zotlabs/Module/Regate.php:350 +#: ../../Zotlabs/Module/Regate.php:352 msgid "Registration request revoked" msgstr "Wniosek o rejestrację został odwołany" -#: ../../Zotlabs/Module/Regate.php:351 +#: ../../Zotlabs/Module/Regate.php:353 msgid "Sorry for any inconvience. Thank you for your response." msgstr "Przepraszamy za jakiekolwiek niedogodności. Dziękujemy za odpowiedź." -#: ../../Zotlabs/Module/Regate.php:375 +#: ../../Zotlabs/Module/Regate.php:377 msgid "Please enter your verification token for ID" msgstr "Wprowadź token weryfikacyjny dla identyfikatora" -#: ../../Zotlabs/Module/Regate.php:385 +#: ../../Zotlabs/Module/Regate.php:378 ../../Zotlabs/Module/Regate.php:405 +msgid "Please check your email!" +msgstr "Proszę sprawdzić swoją skrzynkę pocztową!" + +#: ../../Zotlabs/Module/Regate.php:388 msgid "Verification token" msgstr "Token weryfikacyjny" -#: ../../Zotlabs/Module/Regate.php:396 +#: ../../Zotlabs/Module/Regate.php:399 msgid "ID expired" msgstr "Ważność identyfikatora wygasła" -#: ../../Zotlabs/Module/Regate.php:409 +#: ../../Zotlabs/Module/Regate.php:414 msgid "You will require the verification token for ID" msgstr "Będziesz potrzebować tokena weryfikacyjnego do identyfikatora" -#: ../../Zotlabs/Module/Regate.php:417 +#: ../../Zotlabs/Module/Regate.php:423 msgid "Unknown or expired ID" msgstr "Nieznany lub wygasły identyfikator" -#: ../../Zotlabs/Module/Regate.php:428 +#: ../../Zotlabs/Module/Regate.php:434 msgid "dId2 malformed" msgstr "źle sformułowany dId2" -#: ../../Zotlabs/Module/Profile_photo.php:93 ../../Zotlabs/Module/Cover_photo.php:85 +#: ../../Zotlabs/Module/Profile_photo.php:93 +#: ../../Zotlabs/Module/Cover_photo.php:85 msgid "Image uploaded but image cropping failed." msgstr "Obraz został przesłany, ale przycinanie obrazu nie powiodło się." #: ../../Zotlabs/Module/Profile_photo.php:147 -#: ../../Zotlabs/Module/Profile_photo.php:284 ../../include/photo/photo_driver.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:284 +#: ../../include/photo/photo_driver.php:435 msgid "Profile Photos" msgstr "Zdjęcia profilowe" -#: ../../Zotlabs/Module/Profile_photo.php:166 ../../Zotlabs/Module/Cover_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:166 +#: ../../Zotlabs/Module/Cover_photo.php:212 msgid "Image resize failed." msgstr "Zmiana rozmiaru obrazu nie powiodła się." #: ../../Zotlabs/Module/Profile_photo.php:254 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:298 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not display " -"immediately." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -"Shift-przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe " +"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe " "zdjęcie nie zostanie wyświetlone od razu." -#: ../../Zotlabs/Module/Profile_photo.php:261 ../../Zotlabs/Module/Cover_photo.php:241 -#: ../../include/photos.php:196 +#: ../../Zotlabs/Module/Profile_photo.php:261 +#: ../../Zotlabs/Module/Cover_photo.php:241 ../../include/photos.php:196 msgid "Unable to process image" msgstr "Nie można przetworzyć obrazu" -#: ../../Zotlabs/Module/Profile_photo.php:296 ../../Zotlabs/Module/Cover_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:296 +#: ../../Zotlabs/Module/Cover_photo.php:265 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." -#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Cover_photo.php:282 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Cover_photo.php:282 msgid "Unable to process image." msgstr "Nie można przetworzyć obrazu." #: ../../Zotlabs/Module/Profile_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:431 ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../Zotlabs/Module/Profile_photo.php:431 +#: ../../Zotlabs/Module/Cover_photo.php:367 #: ../../Zotlabs/Module/Cover_photo.php:382 msgid "Photo not available." msgstr "Zdjęcie nie jest dostępne." #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your default profile photo is visible to anybody on the internet. Profile photos " -"for alternate profiles will inherit the permissions of the profile" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" msgstr "" -"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. Zdjęcia " -"profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" +"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. " +"Zdjęcia profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your profile photo is visible to anybody on the internet and may be distributed to " -"other websites." +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." msgstr "" "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być " "rozpowszechniane na innych stronach internetowych." -#: ../../Zotlabs/Module/Profile_photo.php:497 ../../Zotlabs/Module/Cover_photo.php:420 +#: ../../Zotlabs/Module/Profile_photo.php:497 +#: ../../Zotlabs/Module/Cover_photo.php:420 msgid "Upload File:" -msgstr "Przesłanie pliku:" +msgstr "Prześlij plik:" -#: ../../Zotlabs/Module/Profile_photo.php:498 ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Profile_photo.php:498 +#: ../../Zotlabs/Module/Cover_photo.php:421 msgid "Select a profile:" msgstr "Wybierz profil:" @@ -3638,40 +3735,47 @@ msgstr "Zmień zdjęcie profilowe" msgid "Use" msgstr "Użyj" -#: ../../Zotlabs/Module/Profile_photo.php:500 ../../Zotlabs/Module/Photos.php:688 -#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Embedphotos.php:189 +#: ../../Zotlabs/Module/Profile_photo.php:500 +#: ../../Zotlabs/Module/Photos.php:688 ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Embedphotos.php:189 #: ../../Zotlabs/Storage/Browser.php:540 ../../Zotlabs/Widget/Cdav.php:146 #: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 #: ../../Zotlabs/Widget/Album.php:97 msgid "Upload" msgstr "Prześlij" -#: ../../Zotlabs/Module/Profile_photo.php:501 ../../Zotlabs/Module/Photos.php:996 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:459 +#: ../../Zotlabs/Module/Profile_photo.php:501 +#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Admin/Addons.php:459 #: ../../Zotlabs/Module/Cover_photo.php:424 #: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:92 msgid "Remove" msgstr "Usuń" #: ../../Zotlabs/Module/Profile_photo.php:505 -#: ../../Zotlabs/Module/Profile_photo.php:506 ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Profile_photo.php:506 +#: ../../Zotlabs/Module/Cover_photo.php:426 #: ../../Zotlabs/Module/Cover_photo.php:427 msgid "Use a photo from your albums" msgstr "Użyj zdjęcia ze swoich albumów" -#: ../../Zotlabs/Module/Profile_photo.php:516 ../../Zotlabs/Module/Cover_photo.php:438 +#: ../../Zotlabs/Module/Profile_photo.php:516 +#: ../../Zotlabs/Module/Cover_photo.php:438 msgid "Select existing photo" msgstr "Wybierz istniejące zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:535 ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:535 +#: ../../Zotlabs/Module/Cover_photo.php:455 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:536 ../../Zotlabs/Module/Cover_photo.php:456 +#: ../../Zotlabs/Module/Profile_photo.php:536 +#: ../../Zotlabs/Module/Cover_photo.php:456 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalne wyświetlanie." -#: ../../Zotlabs/Module/Profile_photo.php:538 ../../Zotlabs/Module/Cover_photo.php:458 +#: ../../Zotlabs/Module/Profile_photo.php:538 +#: ../../Zotlabs/Module/Cover_photo.php:458 msgid "Done Editing" msgstr "Zakończono edycję" @@ -3683,12 +3787,13 @@ msgstr "Pliki: udostępnione mi" msgid "NEW" msgstr "NOWY" -#: ../../Zotlabs/Module/Sharedwithme.php:108 ../../Zotlabs/Storage/Browser.php:379 -#: ../../include/text.php:1558 +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:379 ../../include/text.php:1558 msgid "Size" msgstr "Rozmiar" -#: ../../Zotlabs/Module/Sharedwithme.php:109 ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Module/Sharedwithme.php:109 +#: ../../Zotlabs/Storage/Browser.php:380 msgid "Last Modified" msgstr "Ostatnio zmodyfikowane" @@ -3812,19 +3917,19 @@ msgstr "Nie znaleziono strony." #: ../../Zotlabs/Module/Page.php:173 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " -"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud " -"exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute " -"irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla " -"pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia " -"deserunt mollit anim id est laborum." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " -"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud " -"exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute " -"irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla " -"pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia " -"deserunt mollit anim id est laborum." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non " +"proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non " +"proident, sunt in culpa qui officia deserunt mollit anim id est laborum." #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -3889,19 +3994,21 @@ msgstr "Instalacja elementu %s nie powiodła się" #: ../../Zotlabs/Module/Pubsites.php:25 ../../Zotlabs/Widget/Pubsites.php:12 msgid "Public Hubs" -msgstr "Węzły publiczne" +msgstr "Portale publiczne" #: ../../Zotlabs/Module/Pubsites.php:28 msgid "" -"The listed hubs allow public registration for the $Projectname network. All hubs in " -"the network are interlinked so membership on any of them conveys membership in the " -"network as a whole. Some hubs may require subscription or provide tiered service " -"plans. The hub itself may provide additional details." +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." msgstr "" -"Wymienione węzły umożliwiają publiczną rejestrację w sieci $Projectname. Wszystkie " -"węzły w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza " -"członkostwo w całej sieci. Niektóre węzły mogą wymagać subskrypcji lub oferować " -"warstwowe plany usług. Sam serwis może podać dodatkowe szczegóły." +"Wymienione portale umożliwiają publiczną rejestrację w sieci $Projectname. " +"Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w " +"którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą " +"wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację " +"można znaleźć na poszczególnych portalach." #: ../../Zotlabs/Module/Pubsites.php:34 msgid "Hub URL" @@ -4027,13 +4134,13 @@ msgstr "Eksport Kanału" #: ../../Zotlabs/Module/Uexport.php:75 msgid "" -"Export your basic channel information to a file. This acts as a backup of your " -"connections, permissions, profile and basic data, which can be used to import your " -"data to a new server hub, but does not contain your content." +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." msgstr "" -"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa " -"połączeń, uprawnień, profilu i podstawowych danych, których można użyć do " -"zaimportowania danych do nowego serwisu, ale nie zawiera treści." +"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia " +"zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można " +"użyć do zaimportowania danych do nowego serwisu, ale nie zawiera treści." #: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" @@ -4041,16 +4148,17 @@ msgstr "Eksport Treści" #: ../../Zotlabs/Module/Uexport.php:77 msgid "" -"Export your channel information and recent content to a JSON backup that can be " -"restored or imported to another server hub. This backs up all of your connections, " -"permissions, profile data and several months of posts. This file may be VERY " -"large. Please be patient - it may take several minutes for this download to begin." +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This file " +"may be VERY large. Please be patient - it may take several minutes for this " +"download to begin." msgstr "" -"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą " -"można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie zapasowe " -"wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik " -"może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć " -"kilka minut." +"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, " +"którą można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie " +"zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku " +"miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie " +"pobierania może zająć kilka minut." #: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." @@ -4058,44 +4166,45 @@ msgstr "Eksportuj swoje wpisy z danego roku." #: ../../Zotlabs/Module/Uexport.php:81 msgid "" -"You may also export your posts and conversations for a particular year or month. " -"Adjust the date in your browser location bar to select other dates. If the export " -"fails (possibly due to memory exhaustion on your server hub), please try again " -"selecting a more limited date range." +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. If " +"the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." msgstr "" -"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. " -"Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się " -"nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera serwisu), " -"spróbuj ponownie, wybierając bardziej ograniczony zakres dat." +"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub " +"miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. " +"Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci " +"w serwera serwisu), spróbuj ponownie, wybierając bardziej ograniczony zakres " +"dat." #: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" -"To select all posts for a given year, such as this year, visit " -"%2$s" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" +"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" #: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" -"To select all posts for a given month, such as January of this year, visit %2$s" -msgstr "" -"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2$s" +msgstr "" +"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź " +"%2$s" #: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results please import or restore " -"these in date order (oldest first)." +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać najlepsze " -"wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)." +"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać " +"najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)." #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4117,11 +4226,11 @@ msgstr "Zresetowano hasło na %s" #: ../../Zotlabs/Module/Lostpass.php:68 msgid "" -"Request could not be verified. (You may have previously submitted it.) Password " -"reset failed." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie " -"hasła nie powiodło się." +"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). " +"Resetowanie hasła nie powiodło się." #: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" @@ -4145,7 +4254,8 @@ msgstr "kliknij tutaj aby się zalogować" #: ../../Zotlabs/Module/Lostpass.php:96 msgid "" -"Your password may be changed from the Settings page after successful login." +"Your password may be changed from the Settings page after successful " +"login." msgstr "" "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym " "zalogowaniu." @@ -4161,11 +4271,11 @@ msgstr "Zapomniałeś hasła?" #: ../../Zotlabs/Module/Lostpass.php:131 msgid "" -"Enter your email address and submit to have your password reset. Then check your " -"email for further instructions." +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź swoja " -"skrzynkę e-mail, aby uzyskać dalsze instrukcje." +"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź " +"swoja skrzynkę e-mail, aby uzyskać dalsze instrukcje." #: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" @@ -4213,9 +4323,11 @@ msgid "shared a file with you" msgstr "udostępnił Ci plik" #: ../../Zotlabs/Module/Display.php:354 ../../Zotlabs/Module/Channel.php:483 -msgid "You must enable javascript for your browser to be able to view this content." +msgid "" +"You must enable javascript for your browser to be able to view this content." msgstr "" -"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej przeglądarce." +"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej " +"przeglądarce." #: ../../Zotlabs/Module/Display.php:372 msgid "Article" @@ -4242,8 +4354,8 @@ msgstr "Wygasłe konta" msgid "Expiring accounts" msgstr "Wygasające konta" -#: ../../Zotlabs/Module/Admin.php:117 ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Widget/Admin.php:24 +#: ../../Zotlabs/Module/Admin.php:117 +#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../Zotlabs/Widget/Admin.php:24 msgid "Channels" msgstr "Kanały" @@ -4259,8 +4371,10 @@ msgstr "Twoje oprogramowanie powinno zostać zaktualizowane" #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Security.php:98 #: ../../Zotlabs/Module/Admin/Accounts.php:307 -#: ../../Zotlabs/Module/Admin/Channels.php:145 ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Addons.php:342 ../../Zotlabs/Module/Admin/Addons.php:440 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:440 #: ../../Zotlabs/Module/Admin/Site.php:408 msgid "Administration" msgstr "Administracja" @@ -4360,8 +4474,8 @@ msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" #: ../../Zotlabs/Module/Photos.php:787 ../../Zotlabs/Module/Photos.php:1333 -#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Widget/Portfolio.php:87 -#: ../../Zotlabs/Widget/Album.php:78 +#: ../../Zotlabs/Module/Embedphotos.php:171 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 msgid "View Photo" msgstr "Zobacz zdjęcie" @@ -4370,7 +4484,8 @@ msgstr "Zobacz zdjęcie" #: ../../Zotlabs/Lib/Apps.php:1196 ../../Zotlabs/Lib/Activity.php:1552 #: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Pinned.php:268 #: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1214 -#: ../../include/cdav.php:158 ../../include/cdav.php:159 ../../include/cdav.php:167 +#: ../../include/cdav.php:158 ../../include/cdav.php:159 +#: ../../include/cdav.php:167 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1189 msgid "Unknown" msgstr "Nieznane" @@ -4519,7 +4634,7 @@ msgid "View all" msgstr "Pokaż wszystkie" #: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:243 -#: ../../include/conversation.php:1752 ../../include/channel.php:1806 +#: ../../include/conversation.php:1752 ../../include/channel.php:1809 #: ../../include/taxonomy.php:670 msgctxt "noun" msgid "Like" @@ -4620,7 +4735,8 @@ msgid "What would you like to do?" msgstr "Co chciałbyś zrobić?" #: ../../Zotlabs/Module/Go.php:31 -msgid "Please bookmark this page if you would like to return to it in the future" +msgid "" +"Please bookmark this page if you would like to return to it in the future" msgstr "Dodaj tę stronę do zakładek, jeśli chcesz wrócić do niej w przyszłości" #: ../../Zotlabs/Module/Go.php:35 @@ -4660,40 +4776,48 @@ msgid "View your connections and/or add somebody whose address you already know" msgstr "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz" #: ../../Zotlabs/Module/Go.php:44 -msgid "View your personal stream (this may be empty until you add some connections)" +msgid "" +"View your personal stream (this may be empty until you add some connections)" msgstr "" "Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych " "połączeń)" #: ../../Zotlabs/Module/Go.php:52 msgid "View the public stream. Warning: this content is not moderated" -msgstr "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" +msgstr "" +"Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" -#: ../../Zotlabs/Module/Connections.php:58 ../../Zotlabs/Module/Connections.php:116 +#: ../../Zotlabs/Module/Connections.php:58 +#: ../../Zotlabs/Module/Connections.php:116 #: ../../Zotlabs/Module/Connections.php:274 msgid "Active" msgstr "Aktywny" -#: ../../Zotlabs/Module/Connections.php:63 ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:63 +#: ../../Zotlabs/Module/Connections.php:182 #: ../../Zotlabs/Module/Connections.php:279 msgid "Blocked" msgstr "Zablokowany" -#: ../../Zotlabs/Module/Connections.php:68 ../../Zotlabs/Module/Connections.php:189 +#: ../../Zotlabs/Module/Connections.php:68 +#: ../../Zotlabs/Module/Connections.php:189 #: ../../Zotlabs/Module/Connections.php:278 msgid "Ignored" msgstr "Ignorowany" -#: ../../Zotlabs/Module/Connections.php:73 ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:73 +#: ../../Zotlabs/Module/Connections.php:203 #: ../../Zotlabs/Module/Connections.php:277 msgid "Hidden" msgstr "Ukryty" -#: ../../Zotlabs/Module/Connections.php:78 ../../Zotlabs/Module/Connections.php:196 +#: ../../Zotlabs/Module/Connections.php:78 +#: ../../Zotlabs/Module/Connections.php:196 msgid "Archived/Unreachable" msgstr "Zarchiwizowane/Nieosiągalne" -#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:83 +#: ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Notifications.php:53 ../../Zotlabs/Module/Menu.php:180 msgid "New" msgstr "Nowy" @@ -4706,7 +4830,8 @@ msgstr "Aktywne połączenia" msgid "Show active connections" msgstr "Pokaż aktywne połączenia" -#: ../../Zotlabs/Module/Connections.php:165 ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Module/Connections.php:165 +#: ../../Zotlabs/Widget/Notifications.php:104 msgid "New Connections" msgstr "Nowe połączenia" @@ -4784,7 +4909,8 @@ msgid "Approve connection" msgstr "Zatwierdź połączenie" #: ../../Zotlabs/Module/Connections.php:343 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 ../../include/conversation.php:776 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 +#: ../../include/conversation.php:776 msgid "Approve" msgstr "Zatwierdź" @@ -4799,7 +4925,7 @@ msgstr "Ostatnia aktywność" #: ../../Zotlabs/Module/Connections.php:350 ../../Zotlabs/Module/Suggest.php:71 #: ../../Zotlabs/Module/Directory.php:370 ../../Zotlabs/Widget/Follow.php:32 #: ../../Zotlabs/Widget/Suggestions.php:46 ../../include/conversation.php:1103 -#: ../../include/channel.php:1643 ../../include/connections.php:110 +#: ../../include/channel.php:1646 ../../include/connections.php:110 msgid "Connect" msgstr "Połączenie" @@ -4820,8 +4946,9 @@ msgstr "Wyszukaj swoje połączenia" msgid "Connections search" msgstr "Wyszukiwanie połączeń" -#: ../../Zotlabs/Module/Connections.php:382 ../../Zotlabs/Module/Directory.php:433 -#: ../../Zotlabs/Module/Directory.php:438 ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:382 +#: ../../Zotlabs/Module/Directory.php:433 ../../Zotlabs/Module/Directory.php:438 +#: ../../include/contact_widgets.php:23 msgid "Find" msgstr "Znajdź" @@ -4848,14 +4975,14 @@ msgstr "Zaktualizowano ustawienia narzędzia koligacji." #: ../../Zotlabs/Module/Affinity.php:47 msgid "" "This app presents a slider control in your connection editor and also on your " -"network page. The slider represents your degree of friendship (affinity) with each " -"connection. It allows you to zoom in or out and display conversations from only " -"your closest friends or everybody in your stream." +"network page. The slider represents your degree of friendship (affinity) with " +"each connection. It allows you to zoom in or out and display conversations " +"from only your closest friends or everybody in your stream." msgstr "" "Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie " -"internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym połączeniem. " -"Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów tylko od " -"najbliższych znajomych lub wszystkich w strumieniu." +"internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym " +"połączeniem. Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów " +"tylko od najbliższych znajomych lub wszystkich w strumieniu." #: ../../Zotlabs/Module/Affinity.php:52 msgid "Affinity Tool App" @@ -4863,11 +4990,11 @@ msgstr "Aplikacja Narzędzie koligacji" #: ../../Zotlabs/Module/Affinity.php:57 msgid "" -"The numbers below represent the minimum and maximum slider default positions for " -"your network/stream page as a percentage." +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." msgstr "" -"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków na " -"stronie sieci/strumienia w procentach." +"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków " +"na stronie sieci/strumienia w procentach." #: ../../Zotlabs/Module/Affinity.php:64 msgid "Default maximum affinity level" @@ -4890,10 +5017,11 @@ msgid "Persistent affinity levels" msgstr "Trwałe poziomy więzi" #: ../../Zotlabs/Module/Affinity.php:76 -msgid "If disabled the max and min levels will be reset to default after page reload" +msgid "" +"If disabled the max and min levels will be reset to default after page reload" msgstr "" -"Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości " -"domyślnych po ponownym załadowaniu strony" +"Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do " +"wartości domyślnych po ponownym załadowaniu strony" #: ../../Zotlabs/Module/Affinity.php:84 msgid "Affinity Tool Settings" @@ -4940,16 +5068,16 @@ msgstr "Edytuj artykuł" msgid "Authentication failed." msgstr "Uwierzytelnianie nie powiodło się." -#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2622 +#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 #: ../../boot.php:1717 msgid "Remote Authentication" msgstr "Zdalne uwierzytelnianie" -#: ../../Zotlabs/Module/Rmagic.php:97 ../../include/channel.php:2623 +#: ../../Zotlabs/Module/Rmagic.php:97 ../../include/channel.php:2626 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Wpisz adres swojego kanału (np. kanał@example.com)" -#: ../../Zotlabs/Module/Rmagic.php:98 ../../include/channel.php:2624 +#: ../../Zotlabs/Module/Rmagic.php:98 ../../include/channel.php:2627 msgid "Authenticate" msgstr "Uwierzytelnianie" @@ -4959,7 +5087,8 @@ msgstr "Element nie jest dostępny." #: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 msgid "This setting requires special processing and editing has been blocked." -msgstr "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." +msgstr "" +"To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." #: ../../Zotlabs/Module/Pconfig.php:57 msgid "Configuration Editor" @@ -4967,13 +5096,13 @@ msgstr "Edytor konfiguracji" #: ../../Zotlabs/Module/Pconfig.php:58 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please leave " -"this page unless you are comfortable with and knowledgeable about how to correctly " -"use this feature." +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." msgstr "" -"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie " -"działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie wiesz, jak " -"prawidłowo korzystać z tej funkcji." +"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał " +"przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie " +"wiesz, jak prawidłowo korzystać z tej funkcji." #: ../../Zotlabs/Module/Randprof.php:29 msgid "Random Channel App" @@ -4991,11 +5120,13 @@ msgstr "Zaktualizowano ustawienia motywu." msgid "No themes found." msgstr "Nie znaleziono motywów." -#: ../../Zotlabs/Module/Admin/Themes.php:95 ../../Zotlabs/Module/Admin/Addons.php:311 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:311 msgid "Disable" msgstr "Wyłącz" -#: ../../Zotlabs/Module/Admin/Themes.php:97 ../../Zotlabs/Module/Admin/Addons.php:314 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:314 msgid "Enable" msgstr "Włącz" @@ -5003,26 +5134,30 @@ msgstr "Włącz" msgid "Screenshot" msgstr "Zrzut ekranu" -#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Module/Admin/Themes.php:157 -#: ../../Zotlabs/Widget/Admin.php:28 +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 msgid "Themes" msgstr "Motywy" -#: ../../Zotlabs/Module/Admin/Themes.php:124 ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:344 msgid "Toggle" msgstr "Przełącz" -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Module/Admin/Addons.php:345 -#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Widget/Settings_menu.php:61 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 +#: ../../Zotlabs/Widget/Settings_menu.php:61 #: ../../Zotlabs/Widget/Newmember.php:53 ../../include/nav.php:106 msgid "Settings" msgstr "Ustawienia" -#: ../../Zotlabs/Module/Admin/Themes.php:134 ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:352 msgid "Author: " msgstr "Autor: " -#: ../../Zotlabs/Module/Admin/Themes.php:135 ../../Zotlabs/Module/Admin/Addons.php:353 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:353 msgid "Maintainer: " msgstr "Opiekun: " @@ -5044,10 +5179,11 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"The recommended setting is to only allow unfiltered HTML from the following sites:" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących " -"serwisów:" +"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z " +"następujących serwisów:" #: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" @@ -5062,8 +5198,8 @@ msgid "" "All other embedded content will be filtered, unless embedded " "content from that site is explicitly blocked." msgstr "" -"Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone " -"treści z tego serwisu są jawnie zablokowane." +"Wszystkie inne osadzone treści będą filtrowane, chyba że " +"osadzone treści z tego serwisu są jawnie zablokowane." #: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:25 msgid "Security" @@ -5075,25 +5211,27 @@ msgstr "Zablokuj publiczny dostęp" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "" -"Check to block public access to all otherwise public personal pages on this site " -"unless you are currently authenticated." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -"Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron " -"osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony." +"Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych " +"stron osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony." #: ../../Zotlabs/Module/Admin/Security.php:102 msgid "Provide a cloud root directory" msgstr "Podaj katalog główny w chmurze" #: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "The cloud root directory lists all channel names which provide public files" +msgid "" +"The cloud root directory lists all channel names which provide public files" msgstr "" -"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają " -"pliki publiczne" +"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które " +"udostępniają pliki publiczne" #: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Show total disk space available to cloud uploads" -msgstr "Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury" +msgstr "" +"Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Set \"Transport Security\" HTTP header" @@ -5112,9 +5250,9 @@ 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, które są dozwolone w adresach e-mail podczas " -"rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza " -"zezwolenie na dowolne domeny" +"Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail " +"podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. " +"Puste pole oznacza zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Not allowed email domains" @@ -5123,20 +5261,21 @@ msgstr "Niedozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "" "Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any domains, " -"unless allowed domains have been defined." +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail " -"podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole " -"oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane " -"jakieś dozwolone domeny." +"podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. " +"Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio " +"zdefiniowane jakieś dozwolone domeny." #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Allow communications only from these sites" msgstr "Zezwalaj na komunikację tylko z tych serwisów" #: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "One site per line. Leave empty to allow communication from anywhere by default" +msgid "" +"One site per line. Leave empty to allow communication from anywhere by default" msgstr "" "Jeden serwis w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na " "komunikację z każdym serwisem" @@ -5150,9 +5289,11 @@ msgid "Allow communications only from these channels" msgstr "Zezwalaj na komunikację tylko z tych kanałów" #: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "One channel (hash) per line. Leave empty to allow from any channel by default" +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -"Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał" +"Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na " +"dowolny kanał" #: ../../Zotlabs/Module/Admin/Security.php:111 msgid "Block communications from these channels" @@ -5206,7 +5347,7 @@ msgstr[2] "%s kont jest usuniętych" msgid "Account not found" msgstr "Konto nie znalezione" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/channel.php:2782 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/channel.php:2785 #, php-format msgid "Account '%s' deleted" msgstr "Usunięto konto '%s'" @@ -5308,21 +5449,23 @@ msgstr "Klasa usługi" #: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane " -"na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało " +"opublikowane na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na " +"pewno usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym " -"serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na " +"tym serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" -#: ../../Zotlabs/Module/Admin/Accounts.php:347 ../../include/conversation.php:1123 +#: ../../Zotlabs/Module/Admin/Accounts.php:347 +#: ../../include/conversation.php:1123 msgid "Message" msgstr "Wiadowmość" @@ -5330,13 +5473,13 @@ msgstr "Wiadowmość" #: ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "Off" -msgstr "Wył." +msgstr "WYŁ" #: ../../Zotlabs/Module/Admin/Features.php:55 #: ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "On" -msgstr "Wł." +msgstr "WŁ" #: ../../Zotlabs/Module/Admin/Features.php:56 #, php-format @@ -5375,7 +5518,8 @@ msgstr "Pusta kolejka dla tego serwisu" msgid "Last known contact" msgstr "Ostatni znany kontakt" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 ../../Zotlabs/Module/Admin/Dbsync.php:59 +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako pomyślna" @@ -5386,7 +5530,8 @@ msgstr "" "Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki " "systemowe." -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 ../../Zotlabs/Module/Admin/Dbsync.php:74 +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizacja %s została pomyślnie zastosowana." @@ -5394,14 +5539,16 @@ msgstr "Aktualizacja %s została pomyślnie zastosowana." #: ../../Zotlabs/Module/Admin/Dbsync.php:39 #, php-format msgid "Verifying update %s did not return a status. Unknown if it succeeded." -msgstr "Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." +msgstr "" +"Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:42 #, php-format msgid "Update %s does not contain a verification function." msgstr "Aktualizacja %s nie zawiera funkcji weryfikacji." -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 ../../Zotlabs/Module/Admin/Dbsync.php:81 +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 #, php-format msgid "Update function %s could not be found." msgstr "Nie można znaleźć funkcji aktualizacji %s." @@ -5410,12 +5557,14 @@ msgstr "Nie można znaleźć funkcji aktualizacji %s." #, php-format msgid "Executing update procedure %s failed. Check system logs." msgstr "" -"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki systemowe." +"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki " +"systemowe." #: ../../Zotlabs/Module/Admin/Dbsync.php:78 #, php-format msgid "" -"Update %s did not return a status. It cannot be determined if it was successful." +"Update %s did not return a status. It cannot be determined if it was " +"successful." msgstr "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:99 @@ -5428,7 +5577,8 @@ msgstr "Oznacz sukces (jeśli aktualizacja została wykonana ręcznie)" #: ../../Zotlabs/Module/Admin/Dbsync.php:102 msgid "Attempt to verify this update if a verification procedure exists" -msgstr "Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" +msgstr "" +"Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" #: ../../Zotlabs/Module/Admin/Dbsync.php:103 msgid "Attempt to execute this update step automatically" @@ -5495,11 +5645,13 @@ msgstr "Niedozwolony kod kanału '%s'" msgid "select all" msgstr "wybierz wszystkie" -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:150 +#: ../../Zotlabs/Module/Directory.php:362 msgid "Censor" -msgstr "Cezoruj" +msgstr "Cenzoruj" -#: ../../Zotlabs/Module/Admin/Channels.php:151 ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Directory.php:362 msgid "Uncensor" msgstr "Usuń cenzurę" @@ -5529,11 +5681,11 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:163 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie " -"bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale " +"będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." @@ -5558,10 +5710,11 @@ msgstr "Plik dziennika" #: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"Must be writable by web server. Relative to your top-level webserver directory." +"Must be writable by web server. Relative to your top-level webserver " +"directory." msgstr "" -"Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego serwera " -"WWW." +"Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego " +"serwera WWW." #: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" @@ -5606,8 +5759,8 @@ msgstr "Wtyczka %s jest wyłączona." msgid "Plugin %s enabled." msgstr "Wtyczka %s jest włączona." -#: ../../Zotlabs/Module/Admin/Addons.php:343 ../../Zotlabs/Module/Admin/Addons.php:441 -#: ../../Zotlabs/Widget/Admin.php:27 +#: ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Addons.php:441 ../../Zotlabs/Widget/Admin.php:27 msgid "Addons" msgstr "Dodatki" @@ -5631,7 +5784,8 @@ msgstr "Zgodne role serwera: " msgid "Requires: " msgstr "Wymaga: " -#: ../../Zotlabs/Module/Admin/Addons.php:359 ../../Zotlabs/Module/Admin/Addons.php:446 +#: ../../Zotlabs/Module/Admin/Addons.php:359 +#: ../../Zotlabs/Module/Admin/Addons.php:446 msgid "Disabled - version incompatibility" msgstr "Wyłączone - niezgodność wersji" @@ -5744,7 +5898,8 @@ msgstr "Domyślna rola uprawnień dla nowych kont" #: ../../Zotlabs/Module/Admin/Site.php:345 msgid "This role will be used for the first channel created after registration." -msgstr "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji." +msgstr "" +"Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji." #: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 msgid "Minute(s)" @@ -5778,8 +5933,8 @@ msgstr "Zarejestruj opóźnioną weryfikację" msgid "Time to wait before a registration can be verified" msgstr "Czas oczekiwania na weryfikację rejestracji" -#: ../../Zotlabs/Module/Admin/Site.php:372 ../../Zotlabs/Module/Admin/Site.php:394 -#: ../../Zotlabs/Module/Invite.php:409 +#: ../../Zotlabs/Module/Admin/Site.php:372 +#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 msgid "duration up from now" msgstr "czas oczekiwania od teraz" @@ -5795,7 +5950,7 @@ msgstr "Czas do wygaśnięcia niezweryfikowanej rejestracji" msgid "Site" msgstr "Witryna" -#: ../../Zotlabs/Module/Admin/Site.php:413 ../../Zotlabs/Module/Register.php:544 +#: ../../Zotlabs/Module/Admin/Site.php:413 ../../Zotlabs/Module/Register.php:520 msgid "Registration" msgstr "Rejestracja" @@ -5831,8 +5986,8 @@ msgstr "Informacje o administratorze" #: ../../Zotlabs/Module/Admin/Site.php:423 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. BBCode " -"can be used here" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" "Informacje kontaktowe dla administratorów serwisu. Wyświetlane na stronie " "informacji o serwisie. Tutaj można użyć BBCode" @@ -5843,8 +5998,8 @@ msgstr "Informacje o serwisie" #: ../../Zotlabs/Module/Admin/Site.php:424 msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. BBCode can " -"be used here" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" msgstr "" "Publicznie widoczny opis tego serwisu. Wyświetlane na stronie informacji o " "serwisie. Tutaj można użyć BBCode" @@ -5862,8 +6017,8 @@ msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -"Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - zmień ustawienia motywu" +"Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - " +"zmień ustawienia motywu" #: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" @@ -5878,10 +6033,11 @@ msgid "Maximum image size" msgstr "Maksymalny rozmiar obrazu" #: ../../Zotlabs/Module/Admin/Site.php:430 -msgid "Maximum size in bytes of uploaded images. Default is 0, which means no limits." +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no limits." msgstr "" -"Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza " -"brak ograniczeń." +"Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co " +"oznacza brak ograniczeń." #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" @@ -5890,13 +6046,14 @@ msgstr "Minimalny wiek" #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." msgstr "" -"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie." +"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej " +"stronie." #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "Which best describes the types of account offered by this hub?" msgstr "" -"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten " -"serwis?" +"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych " +"przez ten serwis?" #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." @@ -5921,31 +6078,32 @@ msgstr "Skonfiguruj dni i godziny otwarte rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:453 msgid "Empty or '-:-' value will keep registration open 24/7 (default)" msgstr "" -"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na dobę i " -"7 dni w tygodniu (domyślne ustawienie)" +"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na " +"dobę i 7 dni w tygodniu (domyślne ustawienie)" #: ../../Zotlabs/Module/Admin/Site.php:454 msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` " -"example: 1:800-1200" +"Weekdays and hours must be separated by colon ':', From-To ranges with a dash " +"`-` example: 1:800-1200" msgstr "" -"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do myślnikiem " -"'-'. Przykład: 1:800-1200" +"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do " +"myślnikiem '-'. Przykład: 1:800-1200" #: ../../Zotlabs/Module/Admin/Site.php:455 msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" -msgstr "" -"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: 1:900-1700 " +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " "2:900-1700" +msgstr "" +"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: " +"1:900-1700 2:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:456 msgid "" -"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or " -"1-2,4-5:900-1700" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" msgstr "" -"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: 1:800-1200,1300-1700 " -"lub 1-2,4-5:900-1700" +"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: " +"1:800-1200,1300-1700 lub 1-2,4-5:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:457 msgid "Advanced examples:" @@ -5982,8 +6140,8 @@ msgstr "Automatyczne tworzenie kanałów" #: ../../Zotlabs/Module/Admin/Site.php:478 msgid "" -"If disabled the channel will be created in a separate step during the registration " -"process" +"If disabled the channel will be created in a separate step during the " +"registration process" msgstr "" "Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas " "procesu rejestracji" @@ -6010,16 +6168,17 @@ msgstr "Konto porzucone po x dniach" #: ../../Zotlabs/Module/Admin/Site.php:500 msgid "" -"Will not waste system resources polling external sites for abandonded accounts. " -"Enter 0 for no time limit." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu " -"porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." +"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w " +"poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "Site homepage to show visitors (default: login box)" msgstr "" -"Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz logowania)" +"Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz " +"logowania)" #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" @@ -6027,8 +6186,8 @@ msgid "" "webpage called 'home' or 'include:home.html' to include a file." msgstr "" "przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby " -"wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home.html', " -"aby dołączyć plik." +"wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home." +"html', aby dołączyć plik." #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" @@ -6036,7 +6195,8 @@ msgstr "Zachowaj adres URL strony głównej serwisu" #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "" -"Present the site homepage in a frame at the original location instead of redirecting" +"Present the site homepage in a frame at the original location instead of " +"redirecting" msgstr "" "Przedstaw stronę główną serwisu w ramce w oryginalnej lokalizacji zamiast " "przekierowywania" @@ -6047,21 +6207,23 @@ msgstr "Dozwolone domeny znajomych" #: ../../Zotlabs/Module/Admin/Site.php:507 msgid "" -"Comma separated list of domains which are allowed to establish friendships with " -"this site. Wildcards are accepted. Empty to allow any domains" +"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ą zawierać przyjaźnie z tą witryną. " -"Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny" +"Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą " +"witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na " +"dowolne domeny" #: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Wymuś publikację" #: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "Check to force all profiles on this site to be listed in the site directory." +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -"Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili założonych " -"w tym serwisie." +"Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili " +"założonych w tym serwisie." #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" @@ -6069,23 +6231,23 @@ msgstr "Importuj strumienie publiczne" #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "" -"Import and allow access to public content pulled from other sites. Warning: this " -"content is unmoderated." +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." msgstr "" -"Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych serwisów. " -"Ostrzeżenie: ta zawartość jest niemoderowana." +"Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych " +"serwisów. Ostrzeżenie: ta zawartość jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" -msgstr "W serwisie tylko strumienie publiczne" +msgstr "Strumienie publiczne tylko z tego portalu" #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" -"Allow access to public content originating only from this site if Imported Public " -"Streams are disabled." +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." msgstr "" -"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, jeśli " -"importowane strumienie publiczne są wyłączone." +"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, " +"jeśli importowane strumienie publiczne są wyłączone." #: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" @@ -6096,8 +6258,8 @@ msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." msgstr "" -"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość " -"jest niemoderowana." +"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta " +"zawartość jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" @@ -6124,7 +6286,8 @@ msgid "Enable context help" msgstr "Włącz pomoc kontekstową" #: ../../Zotlabs/Module/Admin/Site.php:517 -msgid "Display contextual help for the current page when the help button is pressed." +msgid "" +"Display contextual help for the current page when the help button is pressed." msgstr "" "Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku " "pomocy." @@ -6155,11 +6318,11 @@ msgstr "Włącz powiadomienia SSE" #: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" -"If disabled, traditional polling will be used. Warning: this setting might not be " -"suited for shared hosting" +"If disabled, traditional polling will be used. Warning: this setting might " +"not be suited for shared hosting" msgstr "" -"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to ustawienie " -"może nie być odpowiednie dla hostingu współdzielonego" +"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to " +"ustawienie może nie być odpowiednie dla hostingu współdzielonego" #: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" @@ -6175,7 +6338,8 @@ msgstr "Limit czasu sieci" #: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)." +msgstr "" +"Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)." #: ../../Zotlabs/Module/Admin/Site.php:530 msgid "Delivery interval" @@ -6183,13 +6347,13 @@ msgstr "Interwał dostaw" #: ../../Zotlabs/Module/Admin/Site.php:530 msgid "" -"Delay background delivery processes by this many seconds to reduce system load. " -"Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large " -"dedicated servers." +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." msgstr "" "Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów " -"prywatnych. 0-1 dla dużych serwerów dedykowanych." +"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych " +"serwerów prywatnych. 0-1 dla dużych serwerów dedykowanych." #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" @@ -6197,11 +6361,11 @@ msgstr "Liczba dostaw na proces" #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust if " -"necessary to tune system performance. Recommend: 1-5." +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." msgstr "" -"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W razie " -"potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5." +"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W " +"razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5." #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" @@ -6209,10 +6373,11 @@ msgstr "Próg kolejki" #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" -"Always defer immediate delivery if queue contains more than this number of entries." +"Always defer immediate delivery if queue contains more than this number of " +"entries." msgstr "" -"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej pozycji " -"niż ta liczba." +"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej " +"pozycji niż ta liczba." #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" @@ -6220,11 +6385,11 @@ msgstr "Okres odpytywania" #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "" -"Delay background polling processes by this many seconds to reduce system load. If " -"0, use delivery interval." +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. " -"Jeśli 0, użyty będzie interwał dostawy." +"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie " +"systemu. Jeśli 0, użyty będzie interwał dostawy." #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" @@ -6232,13 +6397,13 @@ msgstr "Ścieżka do programu konwertującego ImageMagick" #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > 4000 " -"pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/" -"bin/convert" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" msgstr "" -"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla dużych " -"obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może wystąpić " -"wyczerpanie pamięci. Przykład: /usr/bin/convert" +"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla " +"dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może " +"wystąpić wyczerpanie pamięci. Przykład: /usr/bin/convert" #: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" @@ -6246,10 +6411,11 @@ msgstr "Maksymalne średnie obciążenie" #: ../../Zotlabs/Module/Admin/Site.php:535 msgid "" -"Maximum system load before delivery and poll processes are deferred - default 50." +"Maximum system load before delivery and poll processes are deferred - default " +"50." msgstr "" -"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i odpytywania " -"- domyślnie 50." +"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i " +"odpytywania - domyślnie 50." #: ../../Zotlabs/Module/Admin/Site.php:536 msgid "Expiration period in days for imported (grid/network) content" @@ -6292,7 +6458,8 @@ msgstr "Opcjonalnie: lokalizacja serwisu" msgid "Region or country" msgstr "Region lub kraj" -#: ../../Zotlabs/Module/Admin/Site.php:625 ../../Zotlabs/Module/Admin/Site.php:626 +#: ../../Zotlabs/Module/Admin/Site.php:625 +#: ../../Zotlabs/Module/Admin/Site.php:626 msgid "Invalid 24h time value (hhmm/hmm)" msgstr "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)" @@ -6300,31 +6467,38 @@ msgstr "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)" msgid "New Profile Field" msgstr "Nowe pole profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 msgid "Field nickname" msgstr "Krótka nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 msgid "System name of field" msgstr "Systemowa nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:91 ../../Zotlabs/Module/Admin/Profs.php:111 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 msgid "Input type" msgstr "Typ wejścia" -#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Field Name" msgstr "Nazwa Pola" -#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Label on profile pages" msgstr "Etykieta na stronach profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Help text" msgstr "Tekst pomocy" -#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Additional info (optional)" msgstr "Dodatkowe informacje (opcjonalnie)" @@ -6439,12 +6613,15 @@ msgstr "Aplikacja Sugerowane Kanały" #: ../../Zotlabs/Module/Suggest.php:41 msgid "" -"Suggestions for channels in the $Projectname network you might be interested in" +"Suggestions for channels in the $Projectname network you might be interested " +"in" msgstr "" -"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" +"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię " +"zainteresować" #: ../../Zotlabs/Module/Suggest.php:54 -msgid "No suggestions available. If this is a new site, please try again in 24 hours." +msgid "" +"No suggestions available. If this is a new site, please try again in 24 hours." msgstr "" "Brak dostępnych propozycji. Jeśli to jest nowy serwis, spróbuj ponownie za 24 " "godziny." @@ -6465,13 +6642,13 @@ msgstr "Wymagana jest weryfikacja adresu e-mail" #: ../../Zotlabs/Module/Email_validation.php:37 #, php-format msgid "" -"A verification token was sent to your email address [%s]. Enter that token here to " -"complete the account verification step. Please allow a few minutes for delivery, " -"and check your spam folder if you do not see the message." +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." msgstr "" -"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta ten " -"token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na dostarczenie i " -"jeśli nie widzisz wiadomości, sprawdź folder ze spamem." +"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta " +"ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na " +"dostarczenie i jeśli nie widzisz wiadomości, sprawdź folder ze spamem." #: ../../Zotlabs/Module/Email_validation.php:38 msgid "Resend Email" @@ -6487,7 +6664,8 @@ msgstr "Aplikacja Notatki" #: ../../Zotlabs/Module/Notes.php:58 msgid "A simple notes app with a widget (note: notes are not encrypted)" -msgstr "Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)" +msgstr "" +"Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)" #: ../../Zotlabs/Module/Tokens.php:39 #, php-format @@ -6509,28 +6687,29 @@ msgstr "Aplikacja Dostęp Gościnny" #: ../../Zotlabs/Module/Tokens.php:100 msgid "Create access tokens so that non-members can access private content" msgstr "" -"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do Twoich " -"treści prywatnych" +"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do " +"Twoich treści prywatnych" #: ../../Zotlabs/Module/Tokens.php:133 msgid "" "Use this form to create temporary access identifiers to share things with non-" -"members. These identities may be used in Access Control Lists and visitors may " -"login using these credentials to access private content." +"members. These identities may be used in Access Control Lists and visitors " +"may login using these credentials to access private content." msgstr "" "Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby " -"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane na " -"listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych " -"poświadczeń, aby uzyskać dostęp do treści prywatnych." +"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być " +"używane na listach kontroli dostępu, a odwiedzający mogą logować się przy " +"użyciu tych poświadczeń, aby uzyskać dostęp do treści prywatnych." #: ../../Zotlabs/Module/Tokens.php:135 msgid "" -"You may also provide dropbox style access links to friends and associates " -"by adding the Login Password to any specific site URL as shown. Examples:" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" "Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu " -"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak " -"pokazano na ilustracji. Przykłady:" +"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, " +"jak pokazano na ilustracji. Przykłady:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" @@ -6558,18 +6737,20 @@ msgstr "Zmień kolejność aplikacji na pasku aplikacji" #: ../../Zotlabs/Module/Apporder.php:48 msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the navbar" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo (u " -"dołu) na pasku nawigacyjnym" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w " +"prawo (u dołu) na pasku nawigacyjnym" #: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w zasobniku " -"aplikacji" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w " +"zasobniku aplikacji" -#: ../../Zotlabs/Module/Notifications.php:63 ../../Zotlabs/Lib/ThreadItem.php:484 +#: ../../Zotlabs/Module/Notifications.php:63 +#: ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" msgstr "Oznacz wszystkie jako oglądnięte" @@ -6612,7 +6793,8 @@ msgstr "Nie można połączyć się z bazą danych." #: ../../Zotlabs/Module/Setup.php:177 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS issue." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" "Nie można połączyć się z określonym adresem URL serwisu. Możliwy problem z " "certyfikatem SSL lub DNS." @@ -6630,8 +6812,8 @@ msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." msgstr "" -"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą " -"klienta bazy danych." +"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za " +"pomocą klienta bazy danych." #: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 #: ../../Zotlabs/Module/Setup.php:768 @@ -6652,26 +6834,27 @@ msgstr "Połączenie z bazą danych" #: ../../Zotlabs/Module/Setup.php:285 msgid "" -"In order to install $Projectname we need to know how to connect to your database." +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" "Aby zainstalować $Projectname, musimy wiedzieć, jak połączyć się z twoją bazą " "danych." #: ../../Zotlabs/Module/Setup.php:286 msgid "" -"Please contact your hosting provider or site administrator if you have questions " -"about these settings." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług " "hostingowych lub administratorem serwisu." #: ../../Zotlabs/Module/Setup.php:287 msgid "" -"The database you specify below should already exist. If it does not, please create " -"it before continuing." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, " -"utwórz ją przed kontynuowaniem." +"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie " +"stało, utwórz ją przed kontynuowaniem." #: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" @@ -6711,10 +6894,11 @@ msgstr "Adres e-mail administratora serwisu" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "" -"Your account email address must match this in order to use the web admin panel." +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać " -"z panelu administratora sieci." +"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc " +"korzystać z panelu administratora sieci." #: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" @@ -6746,8 +6930,8 @@ msgstr "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW." #: ../../Zotlabs/Module/Setup.php:399 msgid "" -"If you don't have a command line version of PHP installed on server, you will not " -"be able to run background polling via cron." +"If you don't have a command line version of PHP installed on server, you will " +"not be able to run background polling via cron." msgstr "" "Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można " "uruchomić odpytywania w tle przez cron." @@ -6761,8 +6945,8 @@ msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, " -"aby kontynuować instalację." +"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole " +"puste, aby kontynuować instalację." #: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" @@ -6770,15 +6954,16 @@ msgstr "PHP CLI" #: ../../Zotlabs/Module/Setup.php:418 msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is required." +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." msgstr "" -"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To jest " -"wymagane." +"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To " +"jest wymagane." #: ../../Zotlabs/Module/Setup.php:422 msgid "" -"The command line version of PHP on your system does not have \"register_argc_argv\" " -"enabled." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "PHP CLI w Twoim systemie nie ma włączonego \"register_argc_argv\"." #: ../../Zotlabs/Module/Setup.php:423 @@ -6791,21 +6976,21 @@ msgstr "PHP register_argc_argv" #: ../../Zotlabs/Module/Setup.php:446 msgid "" -"This is not sufficient to upload larger images or files. You should be able to " -"upload at least 4 MB at once." +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." msgstr "" -"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc przesłać co " -"najmniej 4 MB na raz." +"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc " +"przesłać co najmniej 4 MB na raz." #: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to upload " -"is set to %s. You are allowed to upload up to %d files at once." +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. Maksymalny " -"rozmiar jednego pliku do przesłania to %s. Możesz przesłać jednocześnie do %d " -"plików." +"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. " +"Maksymalny rozmiar jednego pliku do przesłania to %s. Możesz przesłać " +"jednocześnie do %d plików." #: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." @@ -6817,11 +7002,11 @@ msgstr "Limity wysyłania PHP" #: ../../Zotlabs/Module/Setup.php:479 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to generate " -"encryption keys" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować " -"kluczy szyfrujących" +"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie " +"wygenerować kluczy szyfrujących" #: ../../Zotlabs/Module/Setup.php:480 msgid "" @@ -6868,9 +7053,11 @@ msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" #: ../../Zotlabs/Module/Setup.php:510 -msgid "Error: Apache webserver mod-rewrite module is required but not installed." +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest zainstalowany." +"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest " +"zainstalowany." #: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" @@ -6878,10 +7065,11 @@ msgstr "exec" #: ../../Zotlabs/Module/Setup.php:516 msgid "" -"Error: exec is required but is either not installed or has been disabled in php.ini" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" msgstr "" -"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został wyłączony " -"w php.ini" +"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został " +"wyłączony w php.ini" #: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" @@ -6889,11 +7077,11 @@ msgstr "shell_exec" #: ../../Zotlabs/Module/Setup.php:522 msgid "" -"Error: shell_exec is required but is either not installed or has been disabled in " -"php.ini" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony w " -"php.ini" +"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został " +"wyłączony w php.ini" #: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." @@ -6901,18 +7089,19 @@ msgstr "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:534 msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library required but " -"not installed." +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." msgstr "" -"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką graficzną " -"ImageMagick, ale nie jest on zainstalowany." +"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką " +"graficzną ImageMagick, ale nie jest on zainstalowany." #: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: wymagany jest moduł PHP openssl, ale niezainstalowany." #: ../../Zotlabs/Module/Setup.php:544 -msgid "Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "Błąd: w module PHP PDO brakuje sterownika dla mysql lub pgsql." #: ../../Zotlabs/Module/Setup.php:549 @@ -6937,19 +7126,19 @@ msgstr ".htconfig.php jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:585 msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" in the " -"top folder of your web server and it is unable to do so." +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \".htconfig.php" -"\" w głównym folderze serwera WWW a nie może tego zrobić." +"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"." +"htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić." #: ../../Zotlabs/Module/Setup.php:586 msgid "" -"This is most often a permission setting, as the web server may not be able to write " -"files in your folder - even if you can." +"This is most often a permission setting, as the web server may not be able to " +"write files in your folder - even if you can." msgstr "" -"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w stanie " -"zapisywać plików w Twoim folderze - nawet jeśli możesz." +"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w " +"stanie zapisywać plików w Twoim folderze - nawet jeśli możesz." #: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." @@ -6957,37 +7146,38 @@ msgstr "Dodatkowe informacje można znaleźć w pliku install/INSTALL.txt." #: ../../Zotlabs/Module/Setup.php:603 msgid "" -"This software uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." msgstr "" -"To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania widoków " -"internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." +"To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania " +"widoków internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć " +"renderowanie." #: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" -"In order to store these compiled templates, the web server needs to have write " -"access to the directory %s under the top level web folder." +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do " -"zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." +"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp " +"do zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has write " -"access to this folder." +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do zapisu w " -"tym folderze." +"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do " +"zapisu w tym folderze." #: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" -"Note: as a security measure, you should give the web server write access to %s " -"only--not the template files (.tpl) that it contains." +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu tylko " -"do %s - nie do plików szablonów (.tpl), które on zawiera." +"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu " +"tylko do %s - nie do plików szablonów (.tpl), które on zawiera." #: ../../Zotlabs/Module/Setup.php:609 #, php-format @@ -6996,12 +7186,13 @@ msgstr "%s jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:625 msgid "" -"This software uses the store directory to save uploaded files. The web server needs " -"to have write access to the store directory under the top level web folder" +"This software uses the store directory to save uploaded files. The web server " +"needs to have write access to the store directory under the top level web " +"folder" msgstr "" -"To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. " -"Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w " -"folderze serwera WWW najwyższego poziomu" +"To oprogramowanie używa katalogu store do zapisywania przesyłanych " +"plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, " +"znajdującego się w folderze serwera WWW najwyższego poziomu" #: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" @@ -7009,50 +7200,52 @@ msgstr "katalog store jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:661 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access to " -"this site." +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https " -"do tej witryny." +"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp " +"https do tej witryny." #: ../../Zotlabs/Module/Setup.php:662 msgid "" -"If you have https access to your website or allow connections to TCP port 443 (the " -"https: port), you MUST use a browser-valid certificate. You MUST NOT use self-" -"signed certificates!" +"If you have https access to your website or allow connections to TCP port 443 " +"(the https: port), you MUST use a browser-valid certificate. You MUST NOT use " +"self-signed certificates!" msgstr "" "Jeśli masz dostęp https do swojego serwisu internetowego lub zezwalasz na " -"połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego " -"przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!" +"połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu " +"akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem " +"własnym!" #: ../../Zotlabs/Module/Setup.php:663 msgid "" -"This restriction is incorporated because public posts from you may for example " -"contain references to images on your own hub." +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" "To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na " -"przykład zawierać odniesienia do obrazów na Twoim węźle." +"przykład zawierać odniesienia do obrazów na Twoim portalu." #: ../../Zotlabs/Module/Setup.php:664 msgid "" -"If your certificate is not recognized, members of other sites (who may themselves " -"have valid certificates) will get a warning message on their own site complaining " -"about security issues." +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy " -"sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej " -"witrynie, ostrzegający o problemie z bezpieczeństwem." +"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn " +"(którzy sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we " +"własnej witrynie, ostrzegający o problemie z bezpieczeństwem." #: ../../Zotlabs/Module/Setup.php:665 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we must " -"insist on this requirement." +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -"Może to powodować problemy z użytecznością w innym serwisie (nie tylko na Twoim), " -"więc musimy nalegać na to wymaganie." +"Może to powodować problemy z użytecznością w innym serwisie (nie tylko na " +"Twoim), więc musimy nalegać na to wymaganie." #: ../../Zotlabs/Module/Setup.php:666 -msgid "Providers are available that issue free certificates which are browser-valid." +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez " "przeglądarki." @@ -7060,13 +7253,14 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:667 msgid "" "If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. These " -"are not normally required by browsers, but are required for server-to-server " -"communications." +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" "Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, " -"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one " -"wymagane przez przeglądarki, ale są wymagane do komunikacji między serwerami." +"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie " +"są one wymagane przez przeglądarki, ale są wymagane do komunikacji między " +"serwerami." #: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" @@ -7074,10 +7268,11 @@ msgstr "Walidacja certyfikatu SSL" #: ../../Zotlabs/Module/Setup.php:675 msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration.Test: " -msgstr "" -"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. " +"Url rewrite in .htaccess is not working. Check your server configuration." "Test: " +msgstr "" +"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację " +"serwera. Test: " #: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" @@ -7085,11 +7280,13 @@ msgstr "Przepisywanie adresu URL działa" #: ../../Zotlabs/Module/Setup.php:691 msgid "" -"The database configuration file \".htconfig.php\" could not be written. Please use " -"the enclosed text to create a configuration file in your web server root." +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj " -"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera WWW." +"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym " +"serwera WWW." #: ../../Zotlabs/Module/Setup.php:720 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:401 @@ -7101,7 +7298,8 @@ msgid "

What next?

" msgstr "

Co następnie?

" #: ../../Zotlabs/Module/Setup.php:767 -msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowanie zadania Cron." #: ../../Zotlabs/Module/Directory.php:122 @@ -7128,11 +7326,11 @@ msgstr "Status: " msgid "Homepage: " msgstr "Strona główna: " -#: ../../Zotlabs/Module/Directory.php:349 ../../include/channel.php:1831 +#: ../../Zotlabs/Module/Directory.php:349 ../../include/channel.php:1834 msgid "Age:" msgstr "Wiek:" -#: ../../Zotlabs/Module/Directory.php:354 ../../include/channel.php:1658 +#: ../../Zotlabs/Module/Directory.php:354 ../../include/channel.php:1661 #: ../../include/event.php:63 ../../include/event.php:134 msgid "Location:" msgstr "Lokalizacja:" @@ -7141,11 +7339,11 @@ msgstr "Lokalizacja:" msgid "Description:" msgstr "Opis:" -#: ../../Zotlabs/Module/Directory.php:367 ../../include/channel.php:1860 +#: ../../Zotlabs/Module/Directory.php:367 ../../include/channel.php:1863 msgid "Hometown:" msgstr "Miasto pobytu:" -#: ../../Zotlabs/Module/Directory.php:369 ../../include/channel.php:1866 +#: ../../Zotlabs/Module/Directory.php:369 ../../include/channel.php:1869 msgid "About:" msgstr "O mnie:" @@ -7404,143 +7602,143 @@ msgstr "Pseudonim jest wymagany." msgid "Email address required" msgstr "Wymagany jest adres e-mail" -#: ../../Zotlabs/Module/Register.php:153 +#: ../../Zotlabs/Module/Register.php:156 msgid "No password provided" msgstr "Nie podano hasła" -#: ../../Zotlabs/Module/Register.php:158 ../../include/js_strings.php:12 +#: ../../Zotlabs/Module/Register.php:161 ../../include/js_strings.php:12 msgid "Passwords do not match" msgstr "Hasła nie pasują do siebie" -#: ../../Zotlabs/Module/Register.php:176 +#: ../../Zotlabs/Module/Register.php:179 msgid "Terms of Service not accepted" msgstr "Regulamin serwisu nie został zaakceptowany" -#: ../../Zotlabs/Module/Register.php:238 +#: ../../Zotlabs/Module/Register.php:241 msgid "Invitation code succesfully applied" msgstr "Kod zaproszenia został pomyślnie zastosowany" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:261 msgid "Invitation not in time or too late" msgstr "Zaproszenie nie na czas lub za późno" -#: ../../Zotlabs/Module/Register.php:264 +#: ../../Zotlabs/Module/Register.php:267 msgid "Invitation email failed" msgstr "Wygenerowanie wiadomość e-mail z zaproszeniem nie powiodło się" -#: ../../Zotlabs/Module/Register.php:272 +#: ../../Zotlabs/Module/Register.php:275 msgid "Invitation code failed" msgstr "Kod zaproszenia nie został wygenerowany" -#: ../../Zotlabs/Module/Register.php:279 +#: ../../Zotlabs/Module/Register.php:282 msgid "Invitations are not available" msgstr "Zaproszenia nie są dostępne" -#: ../../Zotlabs/Module/Register.php:305 -msgid "Email address already in use" -msgstr "Ten adres e-mail jest już używany" - -#: ../../Zotlabs/Module/Register.php:315 +#: ../../Zotlabs/Module/Register.php:292 msgid "Registration on this hub is by invitation only" msgstr "Rejestracja w tym serwisie odbywa się wyłącznie za zaproszeniem" -#: ../../Zotlabs/Module/Register.php:352 ../../include/account.php:429 -#: ../../include/account.php:497 +#: ../../Zotlabs/Module/Register.php:328 ../../include/account.php:435 +#: ../../include/account.php:503 #, php-format msgid "Registration confirmation for %s" msgstr "Potwierdzenie rejestracji dla %s" -#: ../../Zotlabs/Module/Register.php:423 +#: ../../Zotlabs/Module/Register.php:399 msgid "New register request" msgstr "Nowa prośba o rejestrację" -#: ../../Zotlabs/Module/Register.php:441 +#: ../../Zotlabs/Module/Register.php:417 msgid "Error creating dId A" msgstr "Błąd podczas tworzenia dId A" -#: ../../Zotlabs/Module/Register.php:459 +#: ../../Zotlabs/Module/Register.php:435 msgid "Registration on this hub is disabled." -msgstr "Rejestracja na tym węźle jest wyłączona." +msgstr "Rejestracja na tym portalu jest wyłączona." -#: ../../Zotlabs/Module/Register.php:468 +#: ../../Zotlabs/Module/Register.php:444 msgid "Registration on this hub is by approval only." -msgstr "Rejestracja na tym węźle wymaga zatwierdzenia przez administratora." +msgstr "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora." -#: ../../Zotlabs/Module/Register.php:469 +#: ../../Zotlabs/Module/Register.php:445 msgid "Register at another affiliated hub in case when prefered" msgstr "" "Zarejestruj się w innym stowarzyszonym serwisie w przypadku, gdy potrzebujesz " "takiego rozwiązania" -#: ../../Zotlabs/Module/Register.php:482 +#: ../../Zotlabs/Module/Register.php:458 msgid "Registration on this hub is by invitation only." -msgstr "Rejestracja na tym węźle wymaga uprzedniego zaproszenia." +msgstr "Rejestracja na tym portalu wymaga uprzedniego zaproszenia." -#: ../../Zotlabs/Module/Register.php:483 +#: ../../Zotlabs/Module/Register.php:459 msgid "Register at another affiliated hub" msgstr "Zarejestruj się w innym stowarzyszonym serwisie" -#: ../../Zotlabs/Module/Register.php:497 ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" msgstr "Regulamin" -#: ../../Zotlabs/Module/Register.php:503 +#: ../../Zotlabs/Module/Register.php:479 #, php-format msgid "I accept the %s for this website" msgstr "Akceptuję % s dla tego serwisu" -#: ../../Zotlabs/Module/Register.php:510 +#: ../../Zotlabs/Module/Register.php:486 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Mam ponad % s lat i akceptuję % s dla tego serwisu" -#: ../../Zotlabs/Module/Register.php:520 +#: ../../Zotlabs/Module/Register.php:496 msgid "Your email address" msgstr "Twój adres e-mail" -#: ../../Zotlabs/Module/Register.php:527 +#: ../../Zotlabs/Module/Register.php:503 msgid "Choose a password" msgstr "Wybierz hasło" -#: ../../Zotlabs/Module/Register.php:528 +#: ../../Zotlabs/Module/Register.php:504 msgid "Please re-enter your password" msgstr "Wprowadź ponownie swoje hasło" -#: ../../Zotlabs/Module/Register.php:530 +#: ../../Zotlabs/Module/Register.php:506 msgid "Please enter your invitation code" msgstr "Wprowadź kod zaproszenia" -#: ../../Zotlabs/Module/Register.php:532 +#: ../../Zotlabs/Module/Register.php:508 msgid "Your name" msgstr "Twoja nazwa" -#: ../../Zotlabs/Module/Register.php:532 +#: ../../Zotlabs/Module/Register.php:508 msgid "Real name is preferred" msgstr "Preferowane jest prawdziwe imię i nazwisko" -#: ../../Zotlabs/Module/Register.php:534 +#: ../../Zotlabs/Module/Register.php:510 msgid "Your nickname will be used to create an easy to remember channel address" -msgstr "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" +msgstr "" +"Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" -#: ../../Zotlabs/Module/Register.php:538 +#: ../../Zotlabs/Module/Register.php:514 msgid "Why do you want to join this hub?" msgstr "Dlaczego chcesz dołączyć do tego serwisu?" -#: ../../Zotlabs/Module/Register.php:538 +#: ../../Zotlabs/Module/Register.php:514 msgid "This will help to review your registration" msgstr "Pomoże to przejrzeć Twoją rejestrację" -#: ../../Zotlabs/Module/Register.php:552 +#: ../../Zotlabs/Module/Register.php:528 msgid "I have an invite code" msgstr "Mam kod zaproszenia" -#: ../../Zotlabs/Module/Register.php:566 ../../include/nav.php:168 ../../boot.php:1696 +#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 +#: ../../boot.php:1696 msgid "Register" msgstr "Zarejestruj się" -#: ../../Zotlabs/Module/Register.php:599 -msgid "This site has exceeded the number of allowed daily account registrations." -msgstr "Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont." +#: ../../Zotlabs/Module/Register.php:575 +msgid "" +"This site has exceeded the number of allowed daily account registrations." +msgstr "" +"Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont." #: ../../Zotlabs/Module/Acl.php:123 ../../Zotlabs/Module/Lockview.php:117 #: ../../Zotlabs/Module/Lockview.php:153 @@ -7575,7 +7773,8 @@ msgstr "Chroniony adres e-mail. Nie można zmienić tego adresu e-mail." #: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "" -"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj ponownie." +"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj " +"ponownie." #: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." @@ -7618,7 +7817,6 @@ msgid "Leave password fields blank unless changing" msgstr "Pozostaw pola hasła puste, chyba że je zmieniasz" #: ../../Zotlabs/Module/Settings/Account.php:108 -#| msgid "Email Address:" msgid "DId2 or Email Address:" msgstr "DId2 lub adres e-mail:" @@ -7723,7 +7921,8 @@ msgstr "Domyślnie: menu kanału znajduje się w menu aplikacji" msgid "Link post titles to source" msgstr "Połącz tytuły wpisów ze źródłem" -#: ../../Zotlabs/Module/Settings/Display.php:203 ../../Zotlabs/Widget/Newmember.php:75 +#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Widget/Newmember.php:75 msgid "New Member Links" msgstr "Linki dla nowych członków" @@ -7774,7 +7973,8 @@ msgstr "Opublikuj swój domyślny profil w katalogu sieciowym" #: ../../Zotlabs/Module/Settings/Channel.php:416 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego przyjaciela?" +"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego " +"przyjaciela?" #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" @@ -7796,7 +7996,7 @@ msgstr "Ustawienia kanału" msgid "Basic Settings" msgstr "Podstawowe ustawienia" -#: ../../Zotlabs/Module/Settings/Channel.php:501 ../../include/channel.php:1788 +#: ../../Zotlabs/Module/Settings/Channel.php:501 ../../include/channel.php:1791 msgid "Full Name:" msgstr "Pełna nazwa:" @@ -7826,11 +8026,11 @@ msgstr "Treść dla dorosłych" #: ../../Zotlabs/Module/Settings/Channel.php:507 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag any adult " -"material and/or nudity with #NSFW)" +"This channel frequently or regularly publishes adult content. (Please tag any " +"adult material and/or nudity with #NSFW)" msgstr "" -"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz wszelkie " -"materiały dla dorosłych albo nagość tagiem #NSFW)" +"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz " +"wszelkie materiały dla dorosłych albo nagość tagiem #NSFW)" #: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Security and Privacy Settings" @@ -7838,7 +8038,8 @@ msgstr "Ustawienia bezpieczeństwa i prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" +msgstr "" +"Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" #: ../../Zotlabs/Module/Settings/Channel.php:513 msgid "Hide my online presence" @@ -7853,16 +8054,19 @@ msgid "Simple Privacy Settings:" msgstr "Proste ustawienia prywatności:" #: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "Very Public - extremely permissive (should be used with caution)" -msgstr "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" +"Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" #: ../../Zotlabs/Module/Settings/Channel.php:517 msgid "" "Typical - default public, privacy when desired (similar to social network " "permissions but with improved privacy)" msgstr "" -"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do uprawnień " -"w popularnych sieciach społecznościowych, ale z podwyższoną prywatnością)" +"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do " +"uprawnień w popularnych sieciach społecznościowych, ale z podwyższoną " +"prywatnością)" #: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Private - default private, never open or public" @@ -7921,7 +8125,8 @@ msgstr "Domyślna grupa prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Use my default audience setting for the type of object published" -msgstr "Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" +msgstr "" +"Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" #: ../../Zotlabs/Module/Settings/Channel.php:538 msgid "Default permissions category" @@ -7935,7 +8140,8 @@ msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" msgid "Useful to reduce spamming" msgstr "Przydatne do ograniczenia spamowania" -#: ../../Zotlabs/Module/Settings/Channel.php:547 ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Ustawienia powiadomień" @@ -7969,7 +8175,7 @@ msgstr "Twoje połączenia są potwierdzone" #: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na Twojej tablicy profilu" +msgstr "Ktoś pisze na Twojej ścianie profilu" #: ../../Zotlabs/Module/Settings/Channel.php:556 msgid "Someone writes a followup comment" @@ -7989,7 +8195,7 @@ msgstr "Oznaczono Ciebie tagiem w poście" #: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "You are poked/prodded/etc. in a post" -msgstr "Szturchnięto Ciebie w poście" +msgstr "Zaczepiono Ciebie we wpisie" #: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Someone likes your post/comment" @@ -8077,8 +8283,8 @@ msgstr "Serwer powiadomień e-mail (nazwa hosta)" #: ../../Zotlabs/Module/Settings/Channel.php:582 #, php-format msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred location. " -"This will prevent duplicate email notifications. Example: %s" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" msgstr "" "Jeśli twój kanał jest powielany na wielu serwisach, ustaw to na preferowaną " "lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s" @@ -8086,7 +8292,8 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -"Pokaż w powiadomieniach nowe wpisy na tablicy oraz prywatne wiadomości i połączenia" +"Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i " +"połączenia" #: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Notify me of events this many days in advance" @@ -8207,25 +8414,21 @@ msgstr "(% s): Nieprawidłowy adres e-mail" #: ../../Zotlabs/Module/Invite.php:138 #, php-format -#| msgid "%s : Not a valid email address." msgid "(%s) : Not a real email address" msgstr "(%s) : To nie jest prawdziwy adres e-mail" #: ../../Zotlabs/Module/Invite.php:145 #, php-format -#| msgid "%s : Not a valid email address." msgid "(%s) : Not allowed email address" msgstr "(%s) : Niedozwolony adres e-mail" #: ../../Zotlabs/Module/Invite.php:158 #, php-format -#| msgid "Your email address is already registered at this site." msgid "(%s) : email address already in use" msgstr "(%s) : Ten adres e-mail jest już używany" #: ../../Zotlabs/Module/Invite.php:165 #, php-format -#| msgid "%s : Not a valid email address." msgid "(%s) : Accepted email address" msgstr "(%s) : Zaakceptowany adres e-mail" @@ -8237,7 +8440,6 @@ msgstr "%s: dostarczenie wiadomości nie powiodło się." #: ../../Zotlabs/Module/Invite.php:257 #, php-format -#| msgid "%s : Message delivery failed." msgid "To %s : Message delivery success." msgstr "To %s : Dostarczenie wiadomości powiodło się." @@ -8247,17 +8449,14 @@ msgid "%1$d mail(s) sent, %2$d mail error(s)" msgstr "Wysłano %1$d wiadomości, %2$d błędy poczty" #: ../../Zotlabs/Module/Invite.php:315 -#| msgid "Site Setup and Configuration" msgid "Invites not proposed by configuration" msgstr "Zaproszenia nie zostały skonfigurowane" #: ../../Zotlabs/Module/Invite.php:316 -#| msgid "Contact Filter" msgid "Contact the site admin" msgstr "Skontaktuj się z administratorem witryny" #: ../../Zotlabs/Module/Invite.php:332 -#| msgid "Item is not editable" msgid "Invites by users not enabled" msgstr "Zaproszenia od użytkowników nie są włączone" @@ -8266,17 +8465,14 @@ msgid "You have no more invitations available" msgstr "Nie masz więcej dostępnych zaproszeń" #: ../../Zotlabs/Module/Invite.php:353 -#| msgid "No channel." msgid "Not on xchan" msgstr "Nie na xchan" #: ../../Zotlabs/Module/Invite.php:386 -#| msgid "Total invitation limit exceeded." msgid "All users invitation limit exceeded." msgstr "Przekroczono limit zaproszeń wszystkich użytkowników." #: ../../Zotlabs/Module/Invite.php:404 -#| msgid "Invalid Activation Directive." msgid "Invitation expires after" msgstr "Zaproszenie wygasa po" @@ -8289,18 +8485,17 @@ msgid "Send invitations" msgstr "Wyślij zaproszenia" #: ../../Zotlabs/Module/Invite.php:535 -#| msgid "Invitation only" msgid "Invitations I am using" msgstr "Zaproszenia, których używam" #: ../../Zotlabs/Module/Invite.php:536 -#| msgid "Invitation only" msgid "Invitations we are using" msgstr "Zaproszenia, z których korzystamy" #: ../../Zotlabs/Module/Invite.php:537 msgid "§ Note, the email(s) sent will be recorded in the system logs" -msgstr "§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" +msgstr "" +"§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" #: ../../Zotlabs/Module/Invite.php:538 msgid "Enter email addresses, one per line:" @@ -8312,7 +8507,6 @@ msgid "Your message:" msgstr "Twoja wiadomość:" #: ../../Zotlabs/Module/Invite.php:540 -#| msgid "Invite App" msgid "Invite template" msgstr "Szablon zaproszenia" @@ -8347,7 +8541,8 @@ msgid "This site is powered by $Projectname" msgstr "Ta witryna jest oparta na $Projectname" #: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Federated and decentralised networking and identity services provided by Zot" +msgid "" +"Federated and decentralised networking and identity services provided by Zot" msgstr "" "Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące " "protokół Zot" @@ -8405,34 +8600,35 @@ msgstr "Witamy w Hubzilla!" msgid "You have got no unseen posts..." msgstr "Nie masz żadnych nieoglądniętych wpisów..." -#: ../../Zotlabs/Module/Cover_photo.php:196 ../../Zotlabs/Module/Cover_photo.php:254 +#: ../../Zotlabs/Module/Cover_photo.php:196 +#: ../../Zotlabs/Module/Cover_photo.php:254 msgid "Cover Photos" msgstr "Zdjęcia na okładkę" -#: ../../Zotlabs/Module/Cover_photo.php:297 ../../include/items.php:4965 +#: ../../Zotlabs/Module/Cover_photo.php:297 ../../include/items.php:4966 msgid "female" msgstr "kobieta" -#: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4966 +#: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4967 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s zaktualizował ją %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4967 +#: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4968 msgid "male" msgstr "mężczyzna" -#: ../../Zotlabs/Module/Cover_photo.php:300 ../../include/items.php:4968 +#: ../../Zotlabs/Module/Cover_photo.php:300 ../../include/items.php:4969 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s zaktualizował jego %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4970 +#: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4971 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s zaktualizował swoje %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2353 +#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2356 msgid "cover photo" msgstr "zdjęcie okładkowe" @@ -8570,11 +8766,11 @@ msgstr "Nowe źródło" #: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 msgid "" -"Import all or selected content from the following channel into this channel and " -"distribute it according to your channel settings." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -"Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału i " -"rozpowszechniaj je zgodnie z ustawieniami kanału." +"Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału " +"i rozpowszechniaj je zgodnie z ustawieniami kanału." #: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Only import content with these words (one per line)" @@ -8590,10 +8786,11 @@ msgstr "Nazwa kanału" #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 msgid "" -"Add the following categories to posts imported from this source (comma separated)" +"Add the following categories to posts imported from this source (comma " +"separated)" msgstr "" -"Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone " -"przecinkami)" +"Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła " +"(oddzielone przecinkami)" #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 msgid "Resend posts with this channel as author" @@ -8629,24 +8826,24 @@ msgstr "Aplikacja kuksaniec" #: ../../Zotlabs/Module/Poke.php:166 msgid "Poke somebody in your addressbook" -msgstr "Szturchnij kogoś w swojej książce adresowej" +msgstr "Zaczep kogoś w swojej książce adresowej" #: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:351 #: ../../include/conversation.php:1143 msgid "Poke" -msgstr "Szturchnij" +msgstr "Zaczep" #: ../../Zotlabs/Module/Poke.php:200 msgid "Poke somebody" -msgstr "Szturchnij kogoś" +msgstr "Zaczep kogoś" #: ../../Zotlabs/Module/Poke.php:203 msgid "Poke/Prod" -msgstr "Szturchnij" +msgstr "Zaczepka" #: ../../Zotlabs/Module/Poke.php:204 msgid "Poke, prod or do other things to somebody" -msgstr "Szturchać, badać, testować lub robić z kimś podobne rzeczy" +msgstr "Zaczepić, sprawdzić lub robić z kimś podobne rzeczy" #: ../../Zotlabs/Module/Poke.php:211 msgid "Recipient" @@ -8817,16 +9014,16 @@ msgid "" "You can select files via the upload button or drop them right here or into an " "existing folder." msgstr "" -"Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do " -"istniejącego folderu." +"Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub " +"do istniejącego folderu." #: ../../Zotlabs/Zot/Auth.php:154 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please logout " -"and retry." +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -"Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. " -"Wyloguj się i spróbuj ponownie." +"Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej " +"stronie. Wyloguj się i spróbuj ponownie." #: ../../Zotlabs/Zot/Auth.php:266 #: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:76 @@ -8837,13 +9034,13 @@ msgstr "Witaj %s. Zdalne uwierzytelnianie powiodło się." #: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:23 msgid "" -"A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you " -"intended, please create another group with a different name." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące elementów " -"mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli " -"nie tego chciałeś, utwórz kolejną grupę o innej nazwie." +"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące " +"elementów mogą dotyczyć tej grupy i wszystkich przyszłych " +"członków. Jeśli nie tego chciałeś, utwórz kolejną grupę o innej nazwie." #: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:271 msgid "Add new connections to this privacy group" @@ -8943,8 +9140,8 @@ msgstr "Zdalna diagnostyka" msgid "Suggest Channels" msgstr "Zaproponuj kanały" -#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 ../../include/nav.php:131 -#: ../../boot.php:1716 +#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 +#: ../../include/nav.php:131 ../../boot.php:1716 msgid "Login" msgstr "Zaloguj się" @@ -9094,13 +9291,13 @@ msgstr "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów." #: ../../Zotlabs/Lib/AccessList.php:28 msgid "" -"A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you " -"intended, please create another list with a different name." +"A deleted list with this name was revived. Existing item permissions " +"may apply to this list and any future members. If this is " +"not what you intended, please create another list with a different name." msgstr "" -"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące elementów " -"mogą dotyczyć tej listy i wszystkich przyszłych członków. Jeśli " -"nie tego chciałeś, utwórz kolejną listę z inną nazwą." +"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące " +"elementów mogą dotyczyć tej listy i wszystkich przyszłych " +"członków. Jeśli nie tego chciałeś, utwórz kolejną listę z inną nazwą." #: ../../Zotlabs/Lib/AccessList.php:286 msgid "Add new connections to this access list" @@ -9195,7 +9392,8 @@ msgstr "Ta wiadomość e-mail została wysłana przez %1$s z %2$s." #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format msgid "" -"To stop receiving these messages, please adjust your Notification Settings at %s" +"To stop receiving these messages, please adjust your Notification Settings at " +"%s" msgstr "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s" #: ../../Zotlabs/Lib/Enotify.php:68 @@ -9230,7 +9428,8 @@ msgstr "prywatna wiadomość" #: ../../Zotlabs/Lib/Enotify.php:131 #, php-format msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." +msgstr "" +"Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." #: ../../Zotlabs/Lib/Enotify.php:144 msgid "commented on" @@ -9308,17 +9507,17 @@ msgstr "%1$s polubił utworzony przez Ciebie element/rozmowę." #: ../../Zotlabs/Lib/Enotify.php:332 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Notify]%s opublikowany na Twojej tablicy profilu" +msgstr "[$Projectname:Notify]%s opublikowany na Twojej ścianie profilu" #: ../../Zotlabs/Lib/Enotify.php:334 #, php-format msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s opublikowano na tablicy Twojego profilu pod adresem %2$s" +msgstr "%1$s opublikowano na ścianie Twojego profilu pod adresem %2$s" #: ../../Zotlabs/Lib/Enotify.php:336 #, php-format msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$s opublikował na [zrl=%2$s]Twojej tablicy[/zrl]" +msgstr "%1$s opublikował na [zrl=%2$s]Twojej ścianie[/zrl]" #: ../../Zotlabs/Lib/Enotify.php:359 #, php-format @@ -9338,17 +9537,17 @@ msgstr "%1$s [zrl=%2$s]oznaczył Cię tagiem[/zrl]." #: ../../Zotlabs/Lib/Enotify.php:372 #, php-format msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Notify] %1$s szturchnął Cię" +msgstr "[$Projectname:Notify] %1$s zaczepił Cię" #: ../../Zotlabs/Lib/Enotify.php:373 #, php-format msgid "%1$s poked you at %2$s" -msgstr "%1$s szturchnął Cię %2$s" +msgstr "%1$s zaczepił Cię %2$s" #: ../../Zotlabs/Lib/Enotify.php:374 #, php-format msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s]szturchnął Cię[/zrl]." +msgstr "%1$s [zrl=%2$s]zaczepił Cię[/zrl]." #: ../../Zotlabs/Lib/Enotify.php:389 #, php-format @@ -9401,7 +9600,8 @@ msgstr "Otrzymał(eś/aś) propozycję znajomości od „%1$s” na %2$s" #: ../../Zotlabs/Lib/Enotify.php:418 #, php-format msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Otrzymał(eś/aś) [zrl=%1$s] propozycję znajomości[/ zrl] dla %2$s od %3$s." +msgstr "" +"Otrzymał(eś/aś) [zrl=%1$s] propozycję znajomości[/ zrl] dla %2$s od %3$s." #: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" @@ -9458,15 +9658,16 @@ msgid "created an event" msgstr "utworzono wydarzenie" #: ../../Zotlabs/Lib/Enotify.php:986 -msgid "verified" -msgstr "sprawdzono" +msgid "status verified" +msgstr "status został zweryfikowany" #: ../../Zotlabs/Lib/Libsync.php:740 ../../include/zot.php:2663 #, php-format msgid "Unable to verify site signature for %s" msgstr "Nie można zweryfikować podpisu witryny dla %s" -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 ../../Zotlabs/Lib/NativeWikiPage.php:94 +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:94 msgid "(No Title)" msgstr "(Brak tytułu)" @@ -9482,7 +9683,8 @@ msgstr "Nie znaleziono wiki." msgid "Destination name already exists" msgstr "Nazwa celu już istnieje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:167 ../../Zotlabs/Lib/NativeWikiPage.php:368 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 +#: ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "Strona nie znaleziona" @@ -9490,8 +9692,10 @@ msgstr "Strona nie znaleziona" msgid "Error reading page content" msgstr "Błąd podczas odczytu zawartości strony" -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 ../../Zotlabs/Lib/NativeWikiPage.php:409 -#: ../../Zotlabs/Lib/NativeWikiPage.php:480 ../../Zotlabs/Lib/NativeWikiPage.php:522 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 +#: ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Błąd podczas odczytu wiki" @@ -9812,8 +10016,8 @@ msgstr "Nie może uczestniczyć w wydarzeniu %s" #: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 #: ../../include/network.php:1767 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1902 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2110 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1939 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2147 msgid "ActivityPub" msgstr "ActivityPub" @@ -9865,11 +10069,13 @@ msgstr "wydawca" msgid "Unable to verify channel signature" msgstr "Nie można zweryfikować podpisu kanału" -#: ../../Zotlabs/Lib/PermissionDescription.php:34 ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Widoczne dla domyślnych odbiorców" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 ../../include/acl_selectors.php:136 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:136 msgid "Only me" msgstr "Tylko ja" @@ -9904,28 +10110,34 @@ msgstr "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzon #: ../../Zotlabs/Lib/PermissionDescription.php:150 msgid "" -"This is your default setting for the audience of your normal stream, and posts." -msgstr "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" +"To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." #: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "This is your default setting for who can view your default channel profile" +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny profil " -"kanału" +"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny " +"profil kanału" #: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "This is your default setting for who can view your connections" -msgstr "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" +msgstr "" +"To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" #: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "This is your default setting for who can view your file storage and photos" +msgid "" +"This is your default setting for who can view your file storage and photos" msgstr "" -"Jest to domyślne ustawienie określające, kto może wyświetlać miejsce na pliki i " -"zdjęcia" +"Jest to domyślne ustawienie określające, kto może wyświetlać miejsce na pliki " +"i zdjęcia" #: ../../Zotlabs/Lib/PermissionDescription.php:154 msgid "This is your default setting for the audience of your webpages" -msgstr "To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" +msgstr "" +"To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" #: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:115 @@ -10010,7 +10222,8 @@ msgstr "Importuj książkę adresową" msgid "Select an addressbook to import to" msgstr "Wybierz książkę adresową do zaimportowania" -#: ../../Zotlabs/Widget/Filer.php:28 ../../Zotlabs/Widget/Activity_filter.php:189 +#: ../../Zotlabs/Widget/Filer.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:189 #: ../../include/contact_widgets.php:53 ../../include/features.php:318 msgid "Saved Folders" msgstr "Zapisywane foldery" @@ -10060,9 +10273,11 @@ msgstr "Czaty dodane do zakładek" msgid "photo/image" msgstr "zdjęcie/obraz" -#: ../../Zotlabs/Widget/Forums.php:100 ../../Zotlabs/Widget/Activity_filter.php:123 +#: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:123 #: ../../Zotlabs/Widget/Notifications.php:139 -#: ../../Zotlabs/Widget/Notifications.php:140 ../../include/acl_selectors.php:125 +#: ../../Zotlabs/Widget/Notifications.php:140 +#: ../../include/acl_selectors.php:125 msgid "Forums" msgstr "Fora" @@ -10306,17 +10521,20 @@ msgstr "Powiadomienia o nowej aktywności sieciowej" msgid "View your network activity" msgstr "Wyświetl swoją aktywność w sieci" -#: ../../Zotlabs/Widget/Notifications.php:23 ../../Zotlabs/Widget/Notifications.php:62 +#: ../../Zotlabs/Widget/Notifications.php:23 +#: ../../Zotlabs/Widget/Notifications.php:62 msgid "Mark all notifications read" msgstr "Oznacz wszystkie powiadomienia jako przeczytane" -#: ../../Zotlabs/Widget/Notifications.php:26 ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:46 #: ../../Zotlabs/Widget/Notifications.php:65 #: ../../Zotlabs/Widget/Notifications.php:172 msgid "Show new posts only" msgstr "Pokaż tylko nowe wpisy" -#: ../../Zotlabs/Widget/Notifications.php:27 ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:47 #: ../../Zotlabs/Widget/Notifications.php:66 #: ../../Zotlabs/Widget/Notifications.php:142 #: ../../Zotlabs/Widget/Notifications.php:173 @@ -10614,12 +10832,12 @@ msgstr "%1$s jest teraz połączony z %2$s" #: ../../include/conversation.php:263 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s szturchnął %2$s" +msgstr "%1$s zaczepił %2$s" #: ../../include/conversation.php:267 ../../include/text.php:1236 #: ../../include/text.php:1240 msgid "poked" -msgstr "szturchnięty" +msgstr "zaczepiony" #: ../../include/conversation.php:781 #, php-format @@ -10700,9 +10918,9 @@ msgstr "i" #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" -msgstr[0] " oraz %d inna osoba" -msgstr[1] " oraz %d inne osoby" -msgstr[2] " oraz %d innych osób" +msgstr[0] ", oraz %d inna osoba" +msgstr[1] ", oraz %d inne osoby" +msgstr[2] ", oraz %d innych osób" #: ../../include/conversation.php:1281 #, php-format @@ -10913,149 +11131,149 @@ msgstr "Nie można pobrać zmodyfikowanej tożsamości" msgid "Requested channel is not available." msgstr "Żądany kanał nie jest dostępny." -#: ../../include/channel.php:1564 +#: ../../include/channel.php:1567 msgid "Create New Profile" msgstr "Utwórz nowy profil" -#: ../../include/channel.php:1567 ../../include/nav.php:120 +#: ../../include/channel.php:1570 ../../include/nav.php:120 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:58 msgid "Edit Profile" msgstr "Edytuj profil" -#: ../../include/channel.php:1585 +#: ../../include/channel.php:1588 msgid "Visible to everybody" msgstr "Widoczne dla każdego" -#: ../../include/channel.php:1662 ../../include/channel.php:1790 +#: ../../include/channel.php:1665 ../../include/channel.php:1793 msgid "Gender:" msgstr "Płeć:" -#: ../../include/channel.php:1663 ../../include/channel.php:1834 +#: ../../include/channel.php:1666 ../../include/channel.php:1837 msgid "Status:" msgstr "Status:" -#: ../../include/channel.php:1664 ../../include/channel.php:1858 +#: ../../include/channel.php:1667 ../../include/channel.php:1861 msgid "Homepage:" msgstr "Strona domowa:" -#: ../../include/channel.php:1665 +#: ../../include/channel.php:1668 msgid "Online Now" msgstr "Teraz online" -#: ../../include/channel.php:1718 +#: ../../include/channel.php:1721 msgid "Change your profile photo" msgstr "Zmień swoje zdjęcie profilowe" -#: ../../include/channel.php:1745 ../../include/selectors.php:60 +#: ../../include/channel.php:1748 ../../include/selectors.php:60 #: ../../include/selectors.php:77 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 msgid "Female" msgstr "Kobieta" -#: ../../include/channel.php:1747 ../../include/selectors.php:60 +#: ../../include/channel.php:1750 ../../include/selectors.php:60 #: ../../include/selectors.php:77 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 msgid "Male" msgstr "Mężczyzna" -#: ../../include/channel.php:1749 +#: ../../include/channel.php:1752 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1751 ../../include/selectors.php:60 +#: ../../include/channel.php:1754 ../../include/selectors.php:60 msgid "Neuter" msgstr "Osoba aseksualna" -#: ../../include/channel.php:1753 ../../include/selectors.php:60 +#: ../../include/channel.php:1756 ../../include/selectors.php:60 msgid "Non-specific" msgstr "Nie określono" -#: ../../include/channel.php:1795 +#: ../../include/channel.php:1798 msgid "Like this channel" msgstr "Polub ten kanał" -#: ../../include/channel.php:1819 +#: ../../include/channel.php:1822 msgid "j F, Y" msgstr "d M, R" -#: ../../include/channel.php:1820 +#: ../../include/channel.php:1823 msgid "j F" msgstr "d M" -#: ../../include/channel.php:1827 +#: ../../include/channel.php:1830 msgid "Birthday:" msgstr "Urodziny:" -#: ../../include/channel.php:1840 +#: ../../include/channel.php:1843 #, php-format msgid "for %1$d %2$s" msgstr "dla %1$d %2$s" -#: ../../include/channel.php:1852 +#: ../../include/channel.php:1855 msgid "Tags:" msgstr "Tagi:" -#: ../../include/channel.php:1856 +#: ../../include/channel.php:1859 msgid "Sexual Preference:" msgstr "Preferencje seksualne:" -#: ../../include/channel.php:1862 +#: ../../include/channel.php:1865 msgid "Political Views:" msgstr "Poglądy polityczne:" -#: ../../include/channel.php:1864 +#: ../../include/channel.php:1867 msgid "Religion:" msgstr "Religia:" -#: ../../include/channel.php:1868 +#: ../../include/channel.php:1871 msgid "Hobbies/Interests:" msgstr "Hobby/Zainteresowania:" -#: ../../include/channel.php:1870 +#: ../../include/channel.php:1873 msgid "Likes:" msgstr "Polubień:" -#: ../../include/channel.php:1872 +#: ../../include/channel.php:1875 msgid "Dislikes:" msgstr "Dezaprobat:" -#: ../../include/channel.php:1874 +#: ../../include/channel.php:1877 msgid "Contact information and Social Networks:" msgstr "Informacje kontaktowe i sieci społecznościowe:" -#: ../../include/channel.php:1876 +#: ../../include/channel.php:1879 msgid "My other channels:" msgstr "Moje inne kanały:" -#: ../../include/channel.php:1878 +#: ../../include/channel.php:1881 msgid "Musical interests:" msgstr "Zainteresowania muzyczne:" -#: ../../include/channel.php:1880 +#: ../../include/channel.php:1883 msgid "Books, literature:" msgstr "Książki, literatura:" -#: ../../include/channel.php:1882 +#: ../../include/channel.php:1885 msgid "Television:" msgstr "Telewizja:" -#: ../../include/channel.php:1884 +#: ../../include/channel.php:1887 msgid "Film/dance/culture/entertainment:" msgstr "Film/taniec/kultura/rozrywka:" -#: ../../include/channel.php:1886 +#: ../../include/channel.php:1889 msgid "Love/Romance:" msgstr "Miłość/Romans:" -#: ../../include/channel.php:1888 +#: ../../include/channel.php:1891 msgid "Work/employment:" msgstr "Praca/zatrudnienie:" -#: ../../include/channel.php:1890 +#: ../../include/channel.php:1893 msgid "School/education:" msgstr "Szkoła/edukacja:" -#: ../../include/channel.php:1913 +#: ../../include/channel.php:1916 msgid "Like this thing" msgstr "Jak ta rzecz" @@ -11170,11 +11388,11 @@ msgstr "Duże zdjęcia" #: ../../include/features.php:219 msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) " -"photo thumbnails" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie jest " -"to włączone, można używać tylko małych miniatur (640 px)" +"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie " +"jest to włączone, można używać tylko małych miniatur (640 px)" #: ../../include/features.php:226 msgid "Even More Encryption" @@ -11183,8 +11401,8 @@ msgstr "Jeszcze więcej szyfrowania" #: ../../include/features.php:227 msgid "Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego tajnego " -"klucza" +"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego " +"tajnego klucza" #: ../../include/features.php:234 msgid "Disable Comments" @@ -11216,11 +11434,11 @@ msgstr "Pomijaj zduplikowane wpisy i komentarze" #: ../../include/features.php:259 msgid "" -"Prevent posts with identical content to be published with less than two minutes in " -"between submissions." +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." msgstr "" -"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie minuty " -"między przesłaniami." +"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie " +"minuty między przesłaniami." #: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" @@ -11276,11 +11494,11 @@ msgstr "Alternatywna kolejność strumienia" #: ../../include/features.php:327 msgid "" -"Ability to order the stream by last post date, last comment date or unthreaded " -"activities" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" msgstr "" -"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty ostatniego " -"komentarza lub nieprzeczytanych aktywności" +"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty " +"ostatniego komentarza lub nieprzeczytanych aktywności" #: ../../include/features.php:334 msgid "Contact Filter" @@ -11304,7 +11522,8 @@ msgstr "Filtr wpisów osobistych" #: ../../include/features.php:351 msgid "Ability to display only posts that you've interacted on" -msgstr "Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję" +msgstr "" +"Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję" #: ../../include/features.php:372 msgid "Photo Location" @@ -11350,7 +11569,8 @@ msgstr "Wylogowano." #: ../../include/auth.php:294 msgid "Email validation is incomplete. Please check your email." msgstr "" -"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." +"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres " +"email." #: ../../include/auth.php:310 msgid "Failed authentication" @@ -11401,11 +11621,11 @@ msgstr "Sieć: %s" #: ../../include/text.php:1236 ../../include/text.php:1240 msgid "poke" -msgstr "szturchać" +msgstr "zaczepiać" #: ../../include/text.php:1241 msgid "ping" -msgstr "ping" +msgstr "spingować" #: ../../include/text.php:1241 msgid "pinged" @@ -11413,11 +11633,11 @@ msgstr "spingowany" #: ../../include/text.php:1242 msgid "prod" -msgstr "szturchać" +msgstr "sprawdzać" #: ../../include/text.php:1242 msgid "prodded" -msgstr "szturchać" +msgstr "zaczepiony" #: ../../include/text.php:1243 msgid "slap" @@ -11787,8 +12007,8 @@ msgstr "Własny wybór" #: ../../include/acl_selectors.php:146 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the " -"scope of \"Allow\"." +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " +"limit the scope of \"Allow\"." msgstr "" "Wybierz \"Zezwól\", aby zezwolić na przeglądanie. \"Nie zezwalaj\" umożliwia " "zastąpienie i ograniczenie zakresu \"Zezwalaj\"." @@ -11803,8 +12023,8 @@ msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These " "permissions set who is allowed to view the post." msgstr "" -"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu wpisu. Te uprawnienia określają, kto może oglądać wpis." +"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu " +"wpisu.
Te uprawnienia określają, kto może oglądać wpis." #: ../../include/opengraph.php:56 #, php-format @@ -11848,10 +12068,11 @@ msgid "Unable to import a removed channel." msgstr "Nie można zaimportować usuniętego kanału." #: ../../include/import.php:55 -msgid "Cannot create a duplicate channel identifier on this system. Import failed." +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -"Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import " -"nieudany." +"Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. " +"Import nieudany." #: ../../include/import.php:76 #: ../../extend/addon/hubzilla-addons/diaspora/import_diaspora.php:44 @@ -11868,7 +12089,7 @@ msgstr "Zdalne uwierzytelnianie" #: ../../include/nav.php:95 msgid "Click to authenticate to your home hub" -msgstr "Kliknij, aby uwierzytelnić się na swoim głównym węźle" +msgstr "Kliknij, aby uwierzytelnić się na swoim głównym portalu" #: ../../include/nav.php:101 msgid "Manage your channels" @@ -11983,7 +12204,7 @@ msgstr "Wyświetl witryny internetowe" msgid "Select an alternate language" msgstr "Wybierz alternatywny język" -#: ../../include/zid.php:360 +#: ../../include/zid.php:403 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" @@ -12151,7 +12372,8 @@ msgid "" "Your chosen nickname was either already taken or not valid. Please use our " "suggestion (" msgstr "" -"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej prpozycji (" +"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej " +"prpozycji (" #: ../../include/js_strings.php:31 msgid ") or enter a new one." @@ -12381,17 +12603,16 @@ msgid "Please stand by while your download is being prepared." msgstr "Proszę czekać, aż pobieranie zostanie zakończone." #: ../../include/js_strings.php:122 -#| msgid "Email Address" msgid "Email address not valid" msgstr "Adres e-mail jest nieprawidłowy" #: ../../include/security.php:607 msgid "" -"The form security token was not correct. This probably happened because the form " -"has been opened for too long (>3 hours) before submitting it." +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się tak, " -"ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." +"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się " +"tak, ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." #: ../../include/selectors.php:18 msgid "Profile to assign new connections" @@ -12673,87 +12894,91 @@ msgstr "MySpace" msgid "The provided email address is not valid" msgstr "Podany adres e-mail jest nieprawidłowy" -#: ../../include/account.php:40 -#| msgid "Your email domain is not among those allowed on this site" +#: ../../include/account.php:41 msgid "The provided email domain is not among those allowed on this site" msgstr "Podana domena e-mail nie należy do domen dozwolonych w tym serwisie" -#: ../../include/account.php:51 -#| msgid "Your email address is already registered at this site." +#: ../../include/account.php:48 msgid "The provided email address is already registered at this site" msgstr "Podany adres e-mail jest już zarejestrowany w tej witrynie" -#: ../../include/account.php:88 +#: ../../include/account.php:55 +msgid "" +"There is a pending registration for this address - click \"Register\" to " +"continue verification" +msgstr "" +"Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby " +"kontynuować weryfikację" + +#: ../../include/account.php:94 msgid "An invitation is required." msgstr "Wymagane jest zaproszenie." -#: ../../include/account.php:97 +#: ../../include/account.php:103 msgid "Invitation could not be verified." msgstr "Nie udało się zweryfikować zaproszenia." -#: ../../include/account.php:185 +#: ../../include/account.php:191 msgid "Please enter the required information." msgstr "Proszę wprowadzić wymagane informacje." -#: ../../include/account.php:252 ../../include/account.php:360 +#: ../../include/account.php:258 ../../include/account.php:366 msgid "Failed to store account information." msgstr "Nie udało się zapisać informacji o koncie." -#: ../../include/account.php:572 +#: ../../include/account.php:578 #, php-format msgid "Registration request at %s" msgstr "Wniosek o rejestrację na %s" -#: ../../include/account.php:594 +#: ../../include/account.php:600 msgid "your registration password" msgstr "hasło rejestracyjne" -#: ../../include/account.php:600 ../../include/account.php:689 +#: ../../include/account.php:606 ../../include/account.php:695 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: ../../include/account.php:700 +#: ../../include/account.php:706 msgid "Account approved." msgstr "Konto zostało zatwierdzone." -#: ../../include/account.php:756 +#: ../../include/account.php:762 #, php-format msgid "Registration revoked for %s" msgstr "Rejestracja cofnięta dla %s" -#: ../../include/account.php:763 +#: ../../include/account.php:769 #, php-format -#| msgid "your registration password" msgid "Could not revoke registration for %s" msgstr "Nie można unieważnić rejestracji dla % s" -#: ../../include/account.php:1179 ../../include/account.php:1181 +#: ../../include/account.php:1185 ../../include/account.php:1187 msgid "Click here to upgrade." msgstr "Kliknij tutaj, aby zaktualizować." -#: ../../include/account.php:1187 +#: ../../include/account.php:1193 msgid "This action exceeds the limits set by your subscription plan." msgstr "Ta czynność wykracza poza limity określone w planie subskrypcji." -#: ../../include/account.php:1192 +#: ../../include/account.php:1198 msgid "This action is not available under your subscription plan." msgstr "Ta czynność nie jest dostępna w ramach Twojego planu subskrypcji." -#: ../../include/account.php:1252 +#: ../../include/account.php:1258 msgid "open" msgstr "otwórz" -#: ../../include/account.php:1252 +#: ../../include/account.php:1258 msgid "closed" msgstr "zamknięte" -#: ../../include/account.php:1259 -#| msgid "Registration Policy" +#: ../../include/account.php:1265 msgid "Registration is currently" msgstr "Rejestracja trwa" -#: ../../include/account.php:1268 +#: ../../include/account.php:1274 msgid "please come back" msgstr "proszę wrócić" @@ -12799,8 +13024,8 @@ msgstr "Osiągnięty został limit %1$.0f MB miejsca na załączniki." #: ../../include/attach.php:1004 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub działanie " -"zakończone." +"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub " +"działanie zakończone." #: ../../include/attach.php:1033 msgid "Stored file could not be verified. Upload failed." @@ -13033,71 +13258,71 @@ msgstr "urodziny %1$s" msgid "Happy Birthday %1$s" msgstr "%1$s, wszystkiego najlepszego z okazji urodzin" -#: ../../include/items.php:1037 ../../include/items.php:1097 +#: ../../include/items.php:1038 ../../include/items.php:1098 msgid "(Unknown)" msgstr "(Nieznane)" -#: ../../include/items.php:1301 +#: ../../include/items.php:1302 msgid "Visible to anybody on the internet." msgstr "Widoczne dla każdego w internecie." -#: ../../include/items.php:1303 +#: ../../include/items.php:1304 msgid "Visible to you only." msgstr "Widoczne tylko dla Ciebie." -#: ../../include/items.php:1305 +#: ../../include/items.php:1306 msgid "Visible to anybody in this network." msgstr "Widoczne dla każdego w tej sieci." -#: ../../include/items.php:1307 +#: ../../include/items.php:1308 msgid "Visible to anybody authenticated." msgstr "Widoczne dla każdego uwierzytelnionego." -#: ../../include/items.php:1309 +#: ../../include/items.php:1310 #, php-format msgid "Visible to anybody on %s." msgstr "Widoczne dla wszystkich na %s." -#: ../../include/items.php:1311 +#: ../../include/items.php:1312 msgid "Visible to all connections." msgstr "Widoczny dla wszystkich połączeń." -#: ../../include/items.php:1313 +#: ../../include/items.php:1314 msgid "Visible to approved connections." msgstr "Widoczny dla zatwierdzonych połączeń." -#: ../../include/items.php:1315 +#: ../../include/items.php:1316 msgid "Visible to specific connections." msgstr "Widoczny dla określonych połączeń." -#: ../../include/items.php:4600 +#: ../../include/items.php:4601 msgid "Privacy group is empty." msgstr "Grupa prywatności jest pusta." -#: ../../include/items.php:4607 +#: ../../include/items.php:4608 #, php-format msgid "Privacy group: %s" msgstr "Grupa prywatności: %s" -#: ../../include/items.php:4619 +#: ../../include/items.php:4620 msgid "Connection not found." msgstr "Nie znaleziono połączenia." -#: ../../include/items.php:4972 +#: ../../include/items.php:4973 msgid "profile photo" msgstr "zdjęcie profilowe" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 #, php-format msgid "[Edited %s]" msgstr "[Edytowane %s]" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 msgctxt "edit_activity" msgid "Post" msgstr "Wpis" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 msgctxt "edit_activity" msgid "Comment" msgstr "Komentarz" @@ -13142,8 +13367,8 @@ msgid "" "This post contains an installable %s element, however you lack permissions to " "install it on this site." msgstr "" -"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do " -"zainstalowania go w tym serwisie." +"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz " +"uprawnień do zainstalowania go w tym serwisie." #: ../../include/bbcode.php:551 msgid "card" @@ -13180,8 +13405,9 @@ msgstr "%1$s obserwujesz teraz %2$s" #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:16 msgid "" -"The GNU-Social protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" "Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia " "nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." @@ -13386,18 +13612,19 @@ msgid "" "This website is tracked using the Piwik " "analytics tool." msgstr "" -"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." +"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:88 #, php-format msgid "" -"If you do not want that your visits are logged this way you can set a " -"cookie to prevent Piwik from tracking further visits of the site (opt-out)." +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." msgstr "" -"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, " -"możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych wizyt na " -"stronie (rezygnacja)." +"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie " +"dalszych wizyt na stronie (rezygnacja)." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "Piwik Base URL" @@ -13405,10 +13632,11 @@ msgstr "Bazowy adres URL Piwik" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with trailing " -"slash)" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" msgstr "" -"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym ukośnikiem)" +"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym " +"ukośnikiem)" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:97 msgid "Site ID" @@ -13467,8 +13695,8 @@ msgstr "Minimalna reputacja, zanim członek będzie mógł moderować inne wpisy #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:122 msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from reputation " -"of person being moderated" +"Max ratio of moderator's reputation that can be added to/deducted from " +"reputation of person being moderated" msgstr "" "Maksymalny współczynnik reputacji moderatora, który można dodać do reputacji " "moderowanej osoby lub od niej odjąć" @@ -13491,11 +13719,11 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:126 msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this " -"rate per hour" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " +"at this rate per hour" msgstr "" -"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na jest " -"z taką szybkością na godzinę" +"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na " +"jest z taką szybkością na godzinę" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:140 msgid "Community Moderation Settings" @@ -13539,8 +13767,8 @@ msgid "" "If checked, the Rendezvous database tables will be deleted when the plugin is " "uninstalled." msgstr "" -"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele z " -"bazy danych Rendezvous." +"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie " +"tabele z bazy danych Rendezvous." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "Mapbox Access Token" @@ -13548,11 +13776,11 @@ msgstr "Token dostępu Mapbox" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles from " -"Mapbox instead of the default OpenStreetMap tile server." +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." msgstr "" -"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania fragmentów " -"mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." +"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania " +"fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:162 msgid "Rendezvous" @@ -13560,13 +13788,13 @@ msgstr "Rendezvous" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:167 msgid "" -"This identity has been deleted by another member due to inactivity. Please press " -"the \"New identity\" button or refresh the page to register a new identity. You may " -"use the same name." +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." msgstr "" "Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. " -"Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby zarejestrować " -"nową tożsamość. Możesz użyć tej samej nazwy." +"Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby " +"zarejestrować nową tożsamość. Możesz użyć tej samej nazwy." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:168 msgid "Welcome to Rendezvous!" @@ -13574,14 +13802,14 @@ msgstr "Witamy w Rendezvous!" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:169 msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with the " -"other members, tap the GPS control. When your location is discovered, a red dot " -"will appear and others will be able to see you on the map." +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." msgstr "" -"Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia " -"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego GPS. " -"Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni będą " -"mogli Cię zobaczyć na mapie." +"Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu " +"rozpoczęcia udostępniania swojej lokalizacji innym członkom, dotknij elementu " +"sterującego GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona " +"kropka i inni będą mogli Cię zobaczyć na mapie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:171 msgid "Let's meet here" @@ -13613,11 +13841,12 @@ msgstr "Edytuj alert zbliżeniowy" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 msgid "" -"A proximity alert will be issued when this member is within a certain radius of you." -"

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w określonym " -"promieniu od Ciebie.

Wprowadź promień w metrach (0, aby wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w " +"określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby " +"wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:185 @@ -13631,11 +13860,12 @@ msgstr "Odległość ostrzeżenia o bliskości (metry)" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:182 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:184 msgid "" -"A proximity alert will be issued when you are within a certain radius of the marker " -"location.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym promieniu " -"od lokalizacji znacznika.

Wprowadź promień w metrach (0, aby wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym " +"promieniu od lokalizacji znacznika.

Wprowadź promień w metrach (0, " +"aby wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:183 msgid "Marker proximity alert" @@ -13646,9 +13876,11 @@ msgid "Reminder note" msgstr "Notatka przypominająca" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:187 -msgid "Enter a note to be displayed when you are within the specified proximity..." +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." msgstr "" -"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej odległości ..." +"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej " +"odległości ..." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:199 msgid "Add new rendezvous" @@ -13656,15 +13888,15 @@ msgstr "Dodaj nowe spotkanie" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:200 msgid "" -"Create a new rendezvous and share the access link with those you wish to invite to " -"the group. Those who open the link become members of the rendezvous. They can view " -"other member locations, add markers to the map, or share their own locations with " -"the group." +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." msgstr "" -"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić do " -"grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą wyświetlać " -"lokalizacje innych członków, dodawać znaczniki do mapy lub udostępniać własne " -"lokalizacje grupie." +"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić " +"do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą " +"wyświetlać lokalizacje innych członków, dodawać znaczniki do mapy lub " +"udostępniać własne lokalizacje grupie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:232 msgid "You have no rendezvous. Press the button above to create a rendezvous!" @@ -13752,7 +13984,8 @@ msgstr "Weryfikacja dwuetapowa TOTP" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:24 msgid "Enter the 2-step verification generated by your authenticator app:" msgstr "" -"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" +"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację " +"uwierzytelniającą:" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:25 msgid "Success!" @@ -13851,8 +14084,8 @@ msgstr "Konto zostało dla Ciebie utworzone." #: ../../extend/addon/hubzilla-addons/ldapauth/ldapauth.php:77 msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta jest " -"wyłączone." +"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta " +"jest wyłączone." #: ../../extend/addon/hubzilla-addons/cart/cart.php:252 msgid "DB Cleanup Failure" @@ -14027,9 +14260,11 @@ msgid "Enable Subscription Management Module" msgstr "Włącz moduł zarządzania subskrypcjami" #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:223 -msgid "Cannot include subscription items with different terms in the same order." +msgid "" +"Cannot include subscription items with different terms in the same order." msgstr "" -"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej kolejności." +"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej " +"kolejności." #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:372 msgid "Select Subscription to Edit" @@ -14104,11 +14339,11 @@ msgstr "Płatności za pomocą przycisku PayPal nie są włączone." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:282 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:270 msgid "" -"Paypal button payments are not properly configured. Please choose another payment " -"option." +"Paypal button payments are not properly configured. Please choose another " +"payment option." msgstr "" -"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz inną " -"opcję płatności." +"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz " +"inną opcję płatności." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:85 msgid "Enable Paypal Button Module" @@ -14155,8 +14390,8 @@ msgstr "Podstawowa waluta sprzedawcy" #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "" -"We encountered a problem while logging in with the OpenID you provided. Please " -"check the correct spelling of the ID." +"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 za pomocą podanego przez Ciebie " "identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora." @@ -14228,7 +14463,8 @@ msgstr "Import z magazynu plików Hubzilla" #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:82 msgid "This will import all your cloud files from another server." msgstr "" -"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu Hubzilla." +"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu " +"Hubzilla." #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:83 msgid "Hubzilla Server base URL" @@ -14250,11 +14486,11 @@ msgstr "Zaktualizowano ustawienia protokołu Diaspora." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:52 msgid "" -"The diaspora protocol does not support location independence. Connections you make " -"within that network may be unreachable from alternate channel locations." +"The diaspora protocol does not support location independence. Connections you " +"make within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane w " -"tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia " +"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 msgid "Diaspora Protocol App" @@ -14262,15 +14498,16 @@ msgstr "Aplikacja Protokół Diaspora" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "Allow any Diaspora member to comment or like your public posts" -msgstr "Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" +msgstr "" +"Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "" -"If this setting is disabled only your contacts will be able to comment or like your " -"public posts" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" msgstr "" -"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować lub " -"aprobować Twoje publiczne wpisy" +"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły " +"komentować lub aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" @@ -14298,8 +14535,10 @@ msgid "%1$s dislikes %2$s's %3$s" msgstr "%1$s niepolubień %2$s %3$s" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:70 -msgid "Please install the statistics addon to be able to configure a diaspora relay" -msgstr "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" +msgid "" +"Please install the statistics addon to be able to configure a diaspora relay" +msgstr "" +"Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 msgid "Diaspora Relay Handle" @@ -14319,19 +14558,19 @@ msgstr "Statystyki katalogowe Hubzilla" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:95 msgid "Total Hubs" -msgstr "Razem węzłów" +msgstr "Razem" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:97 msgid "Hubzilla Hubs" -msgstr "Węzły Hubzilla" +msgstr "Portale (huby) Hubzilla" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:99 msgid "Friendica Hubs" -msgstr "Węzły Friendica" +msgstr "Portale (węzły) Friendica" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:101 msgid "Diaspora Pods" -msgstr "Pody Diaspora" +msgstr "Portale (pody) Diaspora" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:103 msgid "Hubzilla Channels" @@ -14367,13 +14606,13 @@ msgstr "Znane tagi" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:119 msgid "" -"Please note Diaspora and Friendica statistics are merely those **this directory** " -"is aware of, and not all those known in the network. This also applies to " -"chatrooms," +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," msgstr "" -"Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są " -"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to również " -"czatów," +"Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które " +"są widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to " +"również czatów," #: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:25 msgid "Show Upload Limits" @@ -14399,7 +14638,8 @@ msgstr "Aplikacja Hide Aside" #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:24 #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:28 msgid "Fade out aside areas after a while when using endless scroll" -msgstr "Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania" +msgstr "" +"Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania" #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:27 #: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:23 @@ -14448,8 +14688,8 @@ msgstr "Adres URL serwera Nominatim (odwrotne geokodowanie)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 msgid "" -"A list of Nominatim servers" +"A list of Nominatim servers" msgstr "" "Lista serwerów Nominatim" @@ -14459,10 +14699,11 @@ msgid "Default zoom" msgstr "Powiększenie domyślne" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 -msgid "The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od serwera " -"kafelków)" +"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od " +"serwera kafelków)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:159 msgid "Include marker on map" @@ -14577,13 +14818,13 @@ msgstr "Użyj centralnej bazy użytkowników" #: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 msgid "" -"If enabled, members will automatically login to an ejabberd server that has to be " -"installed on this machine with synchronized credentials via the \"auth_ejabberd.php" -"\" script." +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." msgstr "" -"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera ejabberd, " -"który musi być zainstalowany na tym komputerze z zsynchronizowanymi danymi " -"uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." +"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera " +"ejabberd, który musi być zainstalowany na tym komputerze z zsynchronizowanymi " +"danymi uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." #: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:23 msgid "XMPP settings updated." @@ -14639,10 +14880,11 @@ msgid "Random Planet App" msgstr "Aplikacja Losowa Planeta" #: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:25 -msgid "Set a random planet from the Star Wars Empire as your location when posting" +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych " -"Wojen" +"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium " +"Gwiezdnych Wojen" #: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:152 msgid "Possible adult content" @@ -14667,20 +14909,20 @@ msgstr "Zwija treść zawierającą określone słowa" #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:44 msgid "" -"This app looks in posts for the words/text you specify below, and collapses any " -"content containing those keywords so it is not displayed at inappropriate times, " -"such as sexual innuendo that may be improper in a work setting. It is polite and " -"recommended to tag any content containing nudity with #NSFW. This filter can also " -"match any other word/text you specify, and can thereby be used as a general purpose " -"content filter." -msgstr "" -"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie treści " -"zawierające te słowa kluczowe, aby nie były wyświetlane w nieodpowiednich " -"momentach, na przykład, insynuacje seksualne, które mogą być niewłaściwe w miejscu " -"pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich treści zawierających " -"nagość tagiem #NSFW. Ten filtr może również pasować do dowolnego innego określonego " -"słowa lub tekstu, dzięki czemu może być używany jako filtr treści ogólnego " -"przeznaczenia." +"This app looks in posts for the words/text you specify below, and collapses " +"any content containing those keywords so it is not displayed at inappropriate " +"times, such as sexual innuendo that may be improper in a work setting. It is " +"polite and recommended to tag any content containing nudity with #NSFW. This " +"filter can also match any other word/text you specify, and can thereby be " +"used as a general purpose content filter." +msgstr "" +"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie " +"treści zawierające te słowa kluczowe, aby nie były wyświetlane w " +"nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być " +"niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie " +"wszelkich treści zawierających nagość tagiem #NSFW. Ten filtr może również " +"pasować do dowolnego innego określonego słowa lub tekstu, dzięki czemu może " +"być używany jako filtr treści ogólnego przeznaczenia." #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 msgid "Comma separated list of keywords to hide" @@ -14712,8 +14954,8 @@ msgstr "Nowa gra z handicapem" #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:61 msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that it is " -"played on multiple levels simultaneously. " +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" "Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym " "wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. " @@ -14723,16 +14965,16 @@ msgid "" "In this case there are three levels. You win by getting three in a row on any " "level, as well as up, down, and diagonally across the different levels." msgstr "" -"W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym " -"poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." +"W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na " +"dowolnym poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:64 msgid "" -"The handicap game disables the center position on the middle level because the " -"player claiming this square often has an unfair advantage." +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." msgstr "" -"Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz " -"zajmujący to pole często ma nieuczciwą przewagę." +"Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ " +"gracz zajmujący to pole często ma nieuczciwą przewagę." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:183 msgid "You go first..." @@ -14761,11 +15003,11 @@ msgstr "Zapisano ustawienia pamięci podręcznej zdjęć." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:36 msgid "" -"Photo Cache addon saves a copy of images from external sites locally to increase " -"your anonymity in the web." +"Photo Cache addon saves a copy of images from external sites locally to " +"increase your anonymity in the web." msgstr "" -"Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby " -"zwiększyć Twoją anonimowość w sieci." +"Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, " +"aby zwiększyć Twoją anonimowość w sieci." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:42 msgid "Photo Cache App" @@ -14837,7 +15079,8 @@ msgid "Flag Adult Photos" msgstr "Oznaczanie zdjęć dla dorosłych" #: ../../extend/addon/hubzilla-addons/adultphotoflag/adultphotoflag.php:25 -msgid "Provide photo edit option to hide inappropriate photos from default album view" +msgid "" +"Provide photo edit option to hide inappropriate photos from default album view" msgstr "" "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w " "domyślnym widoku albumu" @@ -14856,25 +15099,28 @@ msgstr "Nazwa aplikacji" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:61 msgid "" -"Please contact your site administrator.
The provided API URL is not valid." +"Please contact your site administrator.
The provided API URL is not " +"valid." msgstr "" -"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API " -"jest nieprawidłowy." +"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu " +"API jest nieprawidłowy." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:98 msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." +"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej " +"ścieżce." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:130 msgid "GNU social settings updated." msgstr "Ustawienia społecznościowe GNU zostały zaktualizowane." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:147 -msgid "Relay public postings to a connected GNU social account (formerly StatusNet)" +msgid "" +"Relay public postings to a connected GNU social account (formerly StatusNet)" msgstr "" -"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU (dawniej " -"StatusNet)" +"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU " +"(dawniej StatusNet)" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:181 msgid "Globally Available GNU social OAuthKeys" @@ -14882,13 +15128,14 @@ msgstr "Globalnie dostępne klucze OAuthKey społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:183 msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers available. If " -"you are using one of them, please use these credentials.
If not feel free to " -"connect to any other GNU social instance (see below)." +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." msgstr "" "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów " -"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń.
" -"Jeśli nie możesz połączyć się z inną instancją społecznościową GNU (patrz poniżej)." +"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń. " +"
Jeśli nie możesz połączyć się z inną instancją społecznościową GNU " +"(patrz poniżej)." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:198 msgid "Provide your own OAuth Credentials" @@ -14896,18 +15143,18 @@ msgstr "Podaj własne dane logowania OAuth" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:200 msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as an " -"desktop client on your GNU social account, copy the consumer key pair here and " -"enter the API base root.
Before you register your own OAuth key pair ask the " -"administrator if there is already a key pair for this Hubzilla installation at your " -"favourite GNU social installation." -msgstr "" -"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj swoje " -"konto Hubzilla jako klienta stacjonarnego na swoim koncie społecznościowym GNU, " -"skopiuj tutaj parę kluczy klienta i wprowadź podstawowy katalog główny API.
" -"Przed zarejestrowaniem własnej pary kluczy OAuth zapytaj administratora, czy " -"istnieje już para kluczy dla tej instalacji Hubzilli w Twojej ulubionej instalacji " -"społecznościowej GNU." +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair here " +"and enter the API base root.
Before you register your own OAuth key pair " +"ask the administrator if there is already a key pair for this Hubzilla " +"installation at your favourite GNU social installation." +msgstr "" +"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj " +"swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie " +"społecznościowym GNU, skopiuj tutaj parę kluczy klienta i wprowadź podstawowy " +"katalog główny API.
Przed zarejestrowaniem własnej pary kluczy OAuth " +"zapytaj administratora, czy istnieje już para kluczy dla tej instalacji " +"Hubzilli w Twojej ulubionej instalacji społecznościowej GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:204 msgid "OAuth Consumer Key" @@ -14931,14 +15178,16 @@ msgstr "Nazwa aplikacji społecznościowej GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:239 msgid "" -"To connect to your GNU social account click the button below to get a security code " -"from GNU social which you have to copy into the input box below and submit the " -"form. Only your public posts will be posted to GNU social." +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box below " +"and submit the form. Only your public posts will be posted " +"to GNU social." msgstr "" "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy " -"przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, który " -"musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje " -"publiczne wpisy będą publikowane w społecznościach GNU." +"przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, " +"który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. " +"Tylko twoje publiczne wpisy będą publikowane w " +"społecznościach GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:241 msgid "Log in with GNU social" @@ -14967,16 +15216,16 @@ msgstr "Obecnie połączony z: " #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:277 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to GNU social will lead the visitor to a blank page informing the visitor " -"that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." msgstr "" "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik " -"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), ewentualnie " -"zawarty w publicznych wpisach przekazywanych do społeczności GNU, będzie kierował " -"odwiedzającego na pustą stronę z informacją dla odwiedzającego, że dostęp do " -"Twojego profilu został ograniczony." +"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), " +"ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, " +"będzie kierował odwiedzającego na pustą stronę z informacją dla " +"odwiedzającego, że dostęp do Twojego profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "Post to GNU social by default" @@ -14984,11 +15233,11 @@ msgstr "Wysyłaj domyślnie do społeczności GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "" -"If enabled your public postings will be posted to the associated GNU-social account " -"by default" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" msgstr "" -"Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na " -"powiązane konto społecznościowe GNU" +"Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane " +"na powiązane konto społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:291 #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:171 @@ -15009,8 +15258,9 @@ msgstr "Zaktualizowano ustawienia ActivityPub Protocol." #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:34 msgid "" -"The activitypub protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The activitypub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." msgstr "" "Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia " "nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." @@ -15025,11 +15275,11 @@ msgstr "Dostarcz do odbiorców ActivityPub w grupach prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:50 msgid "" -"May result in a large number of mentions and expose all the members of your privacy " -"group" +"May result in a large number of mentions and expose all the members of your " +"privacy group" msgstr "" -"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej grupy " -"prywatności" +"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej " +"grupy prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:54 msgid "Send multi-media HTML articles" @@ -15138,12 +15388,12 @@ msgstr "Informacje" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 msgid "" "Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was " -"found at Libravatar." +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing " +"was found at Libravatar." msgstr "" -"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar " -"lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic " -"nie zostanie znalezione w bibliotece Libravatara." +"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek " +"Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta " +"Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara." #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Default avatar image" @@ -15152,8 +15402,8 @@ msgstr "Domyślny obraz awatara" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. " -"Zobacz README" +"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w " +"Gravatarze. Zobacz README" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 msgid "Rating of images" @@ -15192,11 +15442,13 @@ msgstr "Zaloguj się do Hubzilli za pomocą konta społecznościowego" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:207 msgid "Social Authentication using your social media account" -msgstr "Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" +msgstr "" +"Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:211 msgid "" -"This app enables one or more social provider sign-in buttons on the login page." +"This app enables one or more social provider sign-in buttons on the login " +"page." msgstr "" "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego " "przycisku logowania dostawcy usług społecznościowych." @@ -15271,8 +15523,8 @@ msgstr "Import albumu fotograficznego Redmatrix" #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:130 msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego " -"kanału." +"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do " +"tego kanału." #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:131 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:121 @@ -15319,23 +15571,25 @@ msgstr "Przekazuj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:103 msgid "" -"No consumer key pair for Twitter found. Please contact your site administrator." +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z administratorem " -"witryny." +"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z " +"administratorem witryny." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:125 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not yet " -"connected your account to your Twitter account. To do so click the button below to " -"get a PIN from Twitter which you have to copy into the input box below and submit " -"the form. Only your public posts will be posted to Twitter." +"connected your account to your Twitter account. To do so click the button " +"below to get a PIN from Twitter which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to Twitter." msgstr "" -"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś jeszcze " -"swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy przycisk, aby " -"uzyskać kod PIN z Twittera, który należy skopiować do pola wprowadzania poniżej i " -"przesłać formularz. Na Twitterze będą publikowane tylko Twoje publiczne wpisy." +"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś " +"jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy " +"przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola " +"wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane " +"tylko Twoje publiczne wpisy." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:127 msgid "Log in with Twitter" @@ -15347,16 +15601,16 @@ msgstr "Skopiuj tutaj PIN z Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:152 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to Twitter will lead the visitor to a blank page informing the visitor that " -"the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" -" Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj " -"szczegóły swojego profilu przed nieznanymi widzami?) ten link, potencjalnie " -"zawarty w publicznych wpisach przekazywanych do Twittera, będzie prowadził " -"odwiedzającego do pustej strony informującej gościa, że dostęp do Twojego profilu " -"został ograniczony." +" Uwaga: Ze względu na Twoje ustawienia prywatności " +"(Ukryj szczegóły swojego profilu przed nieznanymi widzami?) ten " +"link, potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, " +"będzie prowadził odwiedzającego do pustej strony informującej gościa, że " +"dostęp do Twojego profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 msgid "Twitter post length" @@ -15372,11 +15626,11 @@ msgstr "Domyślnie wysyłaj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 msgid "" -"If enabled your public postings will be posted to the associated Twitter account by " -"default" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" msgstr "" -"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane na " -"powiązanym koncie Twittera" +"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie " +"publikowane na powiązanym koncie Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:181 msgid "Twitter Crosspost Connector" @@ -15396,37 +15650,38 @@ msgstr "Twórca projektu i kierownik techniczny" #: ../../extend/addon/hubzilla-addons/donate/donate.php:49 msgid "" -"And the hundreds of other people and organisations who helped make the Hubzilla " -"possible." -msgstr "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" +"Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." #: ../../extend/addon/hubzilla-addons/donate/donate.php:52 msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their " -"time and expertise - and often paying out of pocket for services they share with " -"others." +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." msgstr "" -"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, którzy " -"poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za usługi, którymi " -"dzielą się z innymi." +"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, " +"którzy poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za " +"usługi, którymi dzielą się z innymi." #: ../../extend/addon/hubzilla-addons/donate/donate.php:53 msgid "" "There is no corporate funding and no ads, and we do not collect and sell your " -"personal information. (We don't control your personal information - you do.)" +"personal information. (We don't control your personal information - " +"you do.)" msgstr "" "Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie " -"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych - " -" Ty tak )." +"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych " +"osobowych - Ty tak )." #: ../../extend/addon/hubzilla-addons/donate/donate.php:54 msgid "" "Help support our ground-breaking work in decentralisation, web identity, and " "privacy." msgstr "" -"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości " -"internetowej i prywatności." +"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, " +"tożsamości internetowej i prywatności." #: ../../extend/addon/hubzilla-addons/donate/donate.php:56 msgid "" @@ -15441,23 +15696,27 @@ msgid "Donate" msgstr "Wspomóż" #: ../../extend/addon/hubzilla-addons/donate/donate.php:61 -msgid "Choose a project, developer, or public hub to support with a one-time donation" +msgid "" +"Choose a project, developer, or public hub to support with a one-time donation" msgstr "" -"Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową darowizną" +"Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową " +"darowizną" #: ../../extend/addon/hubzilla-addons/donate/donate.php:62 msgid "Donate Now" msgstr "Wpłać teraz" #: ../../extend/addon/hubzilla-addons/donate/donate.php:63 -msgid "Or become a project sponsor (Hubzilla Project only)" +msgid "" +"Or become a project sponsor (Hubzilla Project only)" msgstr "" -"lub zostań sponsorem projektu (tylko Projekt Hubzilla)" +"lub zostań sponsorem projektu (tylko Projekt " +"Hubzilla)" #: ../../extend/addon/hubzilla-addons/donate/donate.php:64 msgid "" -"Please indicate if you would like your first name or full name (or nothing) to " -"appear in our sponsor listing" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" msgstr "" "Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej " "liście sponsorów" @@ -15517,11 +15776,11 @@ msgstr "Aplikacja Bez Federalizacji" #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:34 msgid "" -"Prevent posting from being federated to anybody. It will exist only on your channel " -"page." +"Prevent posting from being federated to anybody. It will exist only on your " +"channel page." msgstr "" -"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na stronie " -"Twojego kanału." +"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na " +"stronie Twojego kanału." #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 msgid "Federate posts by default" @@ -15562,24 +15821,25 @@ msgstr "Zaimportowano pliki" #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:122 msgid "" -"This addon app copies existing content and file storage to a cloned/copied channel. " -"Once the app is installed, visit the newly installed app. This will allow you to " -"set the location of your original channel and an optional date range of files/" -"conversations to copy." +"This addon app copies existing content and file storage to a cloned/copied " +"channel. Once the app is installed, visit the newly installed app. This will " +"allow you to set the location of your original channel and an optional date " +"range of files/conversations to copy." msgstr "" "Ten dodatek kopiuje istniejące treści i magazyn plików do sklonowanego lub " "skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. " -"Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego zakresu " -"dat plików lub konwersacji do skopiowania." +"Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego " +"zakresu dat plików lub konwersacji do skopiowania." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:136 msgid "" -"This will import all your conversations and cloud files from a cloned channel on " -"another server. This may take a while if you have lots of posts and or files." +"This will import all your conversations and cloud files from a cloned channel " +"on another server. This may take a while if you have lots of posts and or " +"files." msgstr "" -"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w chmurze ze " -"sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli masz dużo " -"wpisów lun plików." +"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w " +"chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, " +"jeśli masz dużo wpisów lun plików." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 msgid "Include posts" @@ -15726,8 +15986,8 @@ msgstr "Usuń rozmowę" #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:296 msgid "" -"No secure communications available. You may be able to respond " -"from the sender's profile page." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" "Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony " "profilu nadawcy." @@ -15962,7 +16222,8 @@ msgstr "Aplikacja Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:44 msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" msgstr "" -"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC WordPress" +"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC " +"WordPress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:69 msgid "WordPress username" @@ -16003,7 +16264,8 @@ msgid "Wordpress Post" msgstr "Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:22 -msgid "Allow magic authentication only to websites of your immediate connections" +msgid "" +"Allow magic authentication only to websites of your immediate connections" msgstr "" "Zezwalaj na magiczne uwierzytelnianie tylko w serwisach internetowych Twoich " "bezpośrednich połączeń" @@ -16087,11 +16349,11 @@ msgstr "unieść brwi" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:27 msgid "raised their eyebrows at" -msgstr "podnieśli brwi" +msgstr "uniósł brwi" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:28 msgid "insult" -msgstr "zniewaga" +msgstr "znieważyć" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:28 msgid "insulted" @@ -16099,7 +16361,7 @@ msgstr "znieważony" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:29 msgid "praise" -msgstr "pochwała" +msgstr "pochwalić" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:29 msgid "praised" @@ -16115,19 +16377,19 @@ msgstr "zwątpiony" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:31 msgid "eat" -msgstr "jeść" +msgstr "zjeść" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:31 msgid "ate" -msgstr "najedzony" +msgstr "zjedli" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:32 msgid "giggle and fawn at" -msgstr "chichotać i płakać" +msgstr "chichotać i płakać ze śmiechu" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:32 msgid "giggled and fawned at" -msgstr "chichotał i łakał" +msgstr "zchichotany i zapłakany od śmiechu" #: ../../extend/addon/hubzilla-addons/morepokes/morepokes.php:33 msgid "doubt" @@ -16304,8 +16566,8 @@ msgstr "Aplikacja Zamazywanie Lokalizacji" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:35 msgid "Blur your precise location if your channel uses browser location mapping" msgstr "" -"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji w " -"przeglądarce" +"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania " +"lokalizacji w przeglądarce" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:40 msgid "Minimum offset in meters" @@ -16325,7 +16587,8 @@ msgstr "Aplikacja Strona początkowa" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:51 msgid "Set a preferred page to load on login from home page" -msgstr "Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej" +msgstr "" +"Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "Page to load after login" @@ -16333,13 +16596,13 @@ msgstr "Strona do załadowania po zalogowaniu" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy collection), " -""channel" or "notifications/system" (leave blank for default " -"network page (grid)." +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." msgstr "" "Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja " -"prywatności), "kanał" lub "powiadomienie/system" (pozostaw " -"puste dla domyślnej strony sieci." +"prywatności), "kanał" lub "powiadomienie/system" " +"(pozostaw puste dla domyślnej strony sieci." #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:70 msgid "Startpage" @@ -16476,6 +16739,18 @@ msgstr "[$Projectname] Zadania Crona nie działają na %s" msgid "Cron/Scheduled tasks not running." msgstr "Zadania Crona (zaplanowane) nie działają." +#~ msgid "Verify successfull" +#~ msgstr "Weryfikacja powiodła się" + +#~ msgid "Resend" +#~ msgstr "Wyślij ponownie" + +#~ msgid "Email address already in use" +#~ msgstr "Ten adres e-mail jest już używany" + +#~ msgid "verified" +#~ msgstr "sprawdzono" + #~ msgid "Please refresh page" #~ msgstr "Odśwież stronę" @@ -16486,8 +16761,8 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Klasa usługi" #~ msgid "" -#~ "Only allow new member registrations with an invitation code. Above register " -#~ "policy must be set to Yes." +#~ "Only allow new member registrations with an invitation code. Above " +#~ "register policy must be set to Yes." #~ msgstr "" #~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. " #~ "Powyższe zasady rejestrów muszą być ustawione na Tak." @@ -16500,34 +16775,40 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ "Przekroczono maksymalną dzienną liczbę rejestracji witryn. Proszę spróbuj " #~ "ponownie jutro." -#~ msgid "Please indicate acceptance of the Terms of Service. Registration failed." +#~ msgid "" +#~ "Please indicate acceptance of the Terms of Service. Registration failed." #~ msgstr "" -#~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. " -#~ "Rejestracja nieudana." +#~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. Rejestracja nieudana." #~ msgid "Passwords do not match." #~ msgstr "Hasła niezgodne." #~ msgid "Registration successful. Continue to create your first channel..." -#~ msgstr "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." +#~ msgstr "" +#~ "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." #~ msgid "" -#~ "Registration successful. Please check your email for validation instructions." +#~ "Registration successful. Please check your email for validation " +#~ "instructions." #~ msgstr "" -#~ "Rejestracja oomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje dotyczące " -#~ "weryfikacji." +#~ "Rejestracja oomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje " +#~ "dotyczące weryfikacji." #~ msgid "Your registration is pending approval by the site owner." -#~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela serwisu." +#~ msgstr "" +#~ "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela serwisu." #~ msgid "Your registration can not be processed." -#~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." +#~ msgstr "" +#~ "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." #~ msgid "" -#~ "Select a channel permission role for your usage needs and privacy requirements." +#~ "Select a channel permission role for your usage needs and privacy " +#~ "requirements." #~ msgstr "" -#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i wymaganiami " -#~ "dotyczącymi prywatności." +#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i " +#~ "wymaganiami dotyczącymi prywatności." #~ msgid "no" #~ msgstr "nie" @@ -16536,17 +16817,18 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "tak" #~ msgid "" -#~ "This site requires email verification. After completing this form, please check " -#~ "your email for further instructions." +#~ "This site requires email verification. After completing this form, please " +#~ "check your email for further instructions." #~ msgstr "" -#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza " -#~ "sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." +#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego " +#~ "formularza sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." #~ msgid "Please join us on $Projectname" #~ msgstr "Dołącz do nas na $Projectname" #~ msgid "Invitation limit exceeded. Please contact your site administrator." -#~ msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem serwisu." +#~ msgstr "" +#~ "Przekroczono limit zaproszeń. Skontaktuj się z administratorem serwisu." #~ msgid "%d message sent." #~ msgid_plural "%d messages sent." @@ -16555,25 +16837,29 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr[2] "Wysłano %d wiadomości." #~ msgid "Send email invitations to join this network" -#~ msgstr "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" +#~ msgstr "" +#~ "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" #~ msgid "Please join my community on $Projectname." -#~ msgstr "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." +#~ msgstr "" +#~ "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." #~ msgid "You will need to supply this invitation code:" #~ msgstr "W formularzy rejstracji trzeba będzie podać ten kod zaproszenia:" -#~ msgid "1. Register at any $Projectname location (they are all inter-connected)" +#~ msgid "" +#~ "1. Register at any $Projectname location (they are all inter-connected)" #~ msgstr "" -#~ "1. Zarejestruj się na poniżej wskazanym węźle sieci $Projectname (choć możesz " -#~ "też na innym, bo wszystkie są ze sobą połączone) i utwórz swój domyślny profil. " -#~ "Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał osobisty\" dostępnym " -#~ "w po kliknieciu linku \"Pomoc\" lub skontaktuj się ze mną." +#~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć " +#~ "możesz też na innym, bo wszystkie są ze sobą połączone) i utwórz swój " +#~ "domyślny profil. Wcześniej zapoznaj się z Regulaminem i poradnikiem " +#~ "\"Kanał osobisty\" dostępnym w po kliknieciu linku \"Pomoc\" lub " +#~ "skontaktuj się ze mną." #~ msgid "2. Enter my $Projectname network address into the site searchbar." #~ msgstr "" -#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania serwisu mój adres " -#~ "sieciowy $Projectname." +#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania serwisu mój " +#~ "adres sieciowy $Projectname." #~ msgid "or visit" #~ msgstr "lub odwiedź adres URL" diff --git a/view/pl/hmessages.pot b/view/pl/hmessages.pot index 8f355731f..a51bab69a 100644 --- a/view/pl/hmessages.pot +++ b/view/pl/hmessages.pot @@ -1,14 +1,14 @@ -# hubzilla -# Copyright (C) 2012-2021 hubzilla -# This file is distributed under the same license as the hubzilla package. +# PLATFORM_NAME +# Copyright (C) 2012-2016 PLATFORM_NAME +# This file is distributed under the same license as the PLATFORM_NAME package. # Mike Macgirvin, 2012 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 5.7\n" +"Project-Id-Version: STD_VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-04-29 23:47+0200\n" +"POT-Creation-Date: 2021-05-23 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -213,7 +213,7 @@ msgstr "" #: ../../Zotlabs/Module/Notifications.php:11 #: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 #: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 -#: ../../Zotlabs/Module/Register.php:197 +#: ../../Zotlabs/Module/Register.php:200 #: ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -232,7 +232,7 @@ msgstr "" #: ../../include/attach.php:438 ../../include/attach.php:445 #: ../../include/attach.php:527 ../../include/attach.php:1091 #: ../../include/attach.php:1164 ../../include/attach.php:1327 -#: ../../include/items.php:4087 +#: ../../include/items.php:4088 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:53 #: ../../extend/addon/hubzilla-addons/keepout/keepout.php:36 #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:26 @@ -340,7 +340,7 @@ msgstr "" #: ../../Zotlabs/Module/Connect.php:107 #: ../../Zotlabs/Module/Filestorage.php:208 ../../Zotlabs/Module/Oauth2.php:116 #: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Locs.php:132 -#: ../../Zotlabs/Module/Connedit.php:897 ../../Zotlabs/Module/Regate.php:384 +#: ../../Zotlabs/Module/Connedit.php:897 ../../Zotlabs/Module/Regate.php:387 #: ../../Zotlabs/Module/Rate.php:168 ../../Zotlabs/Module/Xchan.php:15 #: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 #: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 @@ -543,7 +543,7 @@ msgid "Profile Visibility Editor" msgstr "" #: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:362 -#: ../../include/channel.php:1911 +#: ../../include/channel.php:1914 msgid "Profile" msgstr "" @@ -935,7 +935,7 @@ msgstr "" #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:321 #: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 #: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Register.php:536 +#: ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 @@ -1010,7 +1010,7 @@ msgstr "" #: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Photos.php:673 #: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Mitem.php:176 #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:536 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 @@ -1144,7 +1144,7 @@ msgstr "" #: ../../Zotlabs/Module/Events.php:468 ../../Zotlabs/Module/Events.php:473 #: ../../Zotlabs/Module/Profiles.php:747 ../../Zotlabs/Module/Profiles.php:751 #: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Appman.php:144 -#: ../../Zotlabs/Module/Register.php:522 ../../include/js_strings.php:123 +#: ../../Zotlabs/Module/Register.php:498 ../../include/js_strings.php:123 #: ../../include/datetime.php:211 #: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:334 #: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:358 @@ -1246,7 +1246,7 @@ msgstr "" msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Events.php:699 ../../include/channel.php:1914 +#: ../../Zotlabs/Module/Events.php:699 ../../include/channel.php:1917 msgid "Export" msgstr "" @@ -1373,8 +1373,8 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:268 #: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 ../../Zotlabs/Widget/Cdav.php:138 -#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/channel.php:1563 -#: ../../include/channel.php:1567 ../../include/menu.php:120 +#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/channel.php:1566 +#: ../../include/channel.php:1570 ../../include/menu.php:120 msgid "Edit" msgstr "" @@ -1519,7 +1519,7 @@ msgid "View this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:727 ../../Zotlabs/Module/Profiles.php:826 -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1589 msgid "Edit visibility" msgstr "" @@ -1531,7 +1531,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 ../../include/channel.php:1556 +#: ../../Zotlabs/Module/Profiles.php:730 ../../include/channel.php:1559 msgid "Change profile photo" msgstr "" @@ -1701,11 +1701,11 @@ msgstr "" msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:822 ../../include/channel.php:1582 +#: ../../Zotlabs/Module/Profiles.php:822 ../../include/channel.php:1585 msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:832 ../../include/channel.php:1563 +#: ../../Zotlabs/Module/Profiles.php:832 ../../include/channel.php:1566 #: ../../include/nav.php:118 msgid "Edit Profiles" msgstr "" @@ -1853,28 +1853,28 @@ msgstr "" #: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 #: ../../include/conversation.php:128 ../../include/text.php:2254 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2064 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 #: ../../extend/addon/hubzilla-addons/redphotos/redphotohelper.php:71 msgid "photo" msgstr "" #: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1649 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2064 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 msgid "status" msgstr "" #: ../../Zotlabs/Module/Like.php:471 ../../Zotlabs/Lib/Activity.php:3297 #: ../../include/conversation.php:174 #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1595 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2101 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2138 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" #: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #: ../../include/conversation.php:177 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2103 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -2073,7 +2073,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:62 ../../Zotlabs/Module/Group.php:214 -#: ../../include/items.php:4584 +#: ../../include/items.php:4585 msgid "Privacy group not found." msgstr "" @@ -2320,7 +2320,7 @@ msgstr "" msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Register.php:522 +#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Register.php:498 #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 msgid "Optional" msgstr "" @@ -2525,7 +2525,7 @@ msgid "Channel name" msgstr "" #: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:534 +#: ../../Zotlabs/Module/Register.php:510 msgid "Choose a short nickname" msgstr "" @@ -2610,7 +2610,7 @@ msgstr "" #: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:260 ../../Zotlabs/Module/Thing.php:96 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4010 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4011 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:284 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:285 msgid "Item not found." @@ -3354,7 +3354,7 @@ msgid "" "not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4617 +#: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 #, php-format msgid "Connection: %s" msgstr "" @@ -3463,118 +3463,122 @@ msgstr "" msgid "Email resend failed" msgstr "" -#: ../../Zotlabs/Module/Regate.php:105 -msgid "Verify successfull" +#: ../../Zotlabs/Module/Regate.php:106 +msgid "Verification successful" msgstr "" -#: ../../Zotlabs/Module/Regate.php:149 +#: ../../Zotlabs/Module/Regate.php:150 msgid "Account successfull created" msgstr "" -#: ../../Zotlabs/Module/Regate.php:190 +#: ../../Zotlabs/Module/Regate.php:191 msgid "Channel successfull created" msgstr "" -#: ../../Zotlabs/Module/Regate.php:196 +#: ../../Zotlabs/Module/Regate.php:197 msgid "Automatic channel creation failed. Please create a channel." msgstr "" -#: ../../Zotlabs/Module/Regate.php:208 +#: ../../Zotlabs/Module/Regate.php:209 msgid "Account creation error" msgstr "" -#: ../../Zotlabs/Module/Regate.php:220 +#: ../../Zotlabs/Module/Regate.php:221 msgid "Verify failed" msgstr "" -#: ../../Zotlabs/Module/Regate.php:225 +#: ../../Zotlabs/Module/Regate.php:226 msgid "Token verification failed" msgstr "" -#: ../../Zotlabs/Module/Regate.php:230 +#: ../../Zotlabs/Module/Regate.php:231 msgid "Request not inside time frame" msgstr "" -#: ../../Zotlabs/Module/Regate.php:236 ../../Zotlabs/Module/Regate.php:266 +#: ../../Zotlabs/Module/Regate.php:237 ../../Zotlabs/Module/Regate.php:267 msgid "Identity unknown" msgstr "" -#: ../../Zotlabs/Module/Regate.php:242 +#: ../../Zotlabs/Module/Regate.php:243 msgid "dId2 mistaken" msgstr "" -#: ../../Zotlabs/Module/Regate.php:270 +#: ../../Zotlabs/Module/Regate.php:271 msgid "Your Registration ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:283 ../../Zotlabs/Module/Regate.php:374 -#: ../../Zotlabs/Module/Regate.php:403 +#: ../../Zotlabs/Module/Regate.php:284 ../../Zotlabs/Module/Regate.php:376 +#: ../../Zotlabs/Module/Regate.php:408 msgid "Registration verification" msgstr "" -#: ../../Zotlabs/Module/Regate.php:290 ../../Zotlabs/Module/Regate.php:408 +#: ../../Zotlabs/Module/Regate.php:291 ../../Zotlabs/Module/Regate.php:413 msgid "Hold on, you can start verification in" msgstr "" -#: ../../Zotlabs/Module/Regate.php:291 +#: ../../Zotlabs/Module/Regate.php:292 msgid "Please remember your verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:292 +#: ../../Zotlabs/Module/Regate.php:294 msgid "Token validity" msgstr "" -#: ../../Zotlabs/Module/Regate.php:328 -msgid "Resend" +#: ../../Zotlabs/Module/Regate.php:330 +msgid "Resend email" msgstr "" -#: ../../Zotlabs/Module/Regate.php:333 +#: ../../Zotlabs/Module/Regate.php:335 msgid "Registration status" msgstr "" -#: ../../Zotlabs/Module/Regate.php:336 +#: ../../Zotlabs/Module/Regate.php:338 msgid "Verification successful!" msgstr "" -#: ../../Zotlabs/Module/Regate.php:337 +#: ../../Zotlabs/Module/Regate.php:339 msgid "Your login ID is" msgstr "" -#: ../../Zotlabs/Module/Regate.php:338 +#: ../../Zotlabs/Module/Regate.php:340 msgid "" "After your account has been approved by our administrator you will be able " "to login with your login ID and your provided password." msgstr "" -#: ../../Zotlabs/Module/Regate.php:350 +#: ../../Zotlabs/Module/Regate.php:352 msgid "Registration request revoked" msgstr "" -#: ../../Zotlabs/Module/Regate.php:351 +#: ../../Zotlabs/Module/Regate.php:353 msgid "Sorry for any inconvience. Thank you for your response." msgstr "" -#: ../../Zotlabs/Module/Regate.php:375 +#: ../../Zotlabs/Module/Regate.php:377 msgid "Please enter your verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:385 +#: ../../Zotlabs/Module/Regate.php:378 ../../Zotlabs/Module/Regate.php:405 +msgid "Please check your email!" +msgstr "" + +#: ../../Zotlabs/Module/Regate.php:388 msgid "Verification token" msgstr "" -#: ../../Zotlabs/Module/Regate.php:396 +#: ../../Zotlabs/Module/Regate.php:399 msgid "ID expired" msgstr "" -#: ../../Zotlabs/Module/Regate.php:409 +#: ../../Zotlabs/Module/Regate.php:414 msgid "You will require the verification token for ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:417 +#: ../../Zotlabs/Module/Regate.php:423 msgid "Unknown or expired ID" msgstr "" -#: ../../Zotlabs/Module/Regate.php:428 +#: ../../Zotlabs/Module/Regate.php:434 msgid "dId2 malformed" msgstr "" @@ -4520,7 +4524,7 @@ msgid "View all" msgstr "" #: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:243 -#: ../../include/conversation.php:1752 ../../include/channel.php:1806 +#: ../../include/conversation.php:1752 ../../include/channel.php:1809 #: ../../include/taxonomy.php:670 msgctxt "noun" msgid "Like" @@ -4806,7 +4810,7 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:350 ../../Zotlabs/Module/Suggest.php:71 #: ../../Zotlabs/Module/Directory.php:370 ../../Zotlabs/Widget/Follow.php:32 #: ../../Zotlabs/Widget/Suggestions.php:46 ../../include/conversation.php:1103 -#: ../../include/channel.php:1643 ../../include/connections.php:110 +#: ../../include/channel.php:1646 ../../include/connections.php:110 msgid "Connect" msgstr "" @@ -4941,16 +4945,16 @@ msgstr "" msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2622 +#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 #: ../../boot.php:1717 msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:97 ../../include/channel.php:2623 +#: ../../Zotlabs/Module/Rmagic.php:97 ../../include/channel.php:2626 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:98 ../../include/channel.php:2624 +#: ../../Zotlabs/Module/Rmagic.php:98 ../../include/channel.php:2627 msgid "Authenticate" msgstr "" @@ -5192,7 +5196,7 @@ msgstr[1] "" msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/channel.php:2782 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/channel.php:2785 #, php-format msgid "Account '%s' deleted" msgstr "" @@ -5776,7 +5780,7 @@ msgid "Site" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:413 -#: ../../Zotlabs/Module/Register.php:544 +#: ../../Zotlabs/Module/Register.php:520 msgid "Registration" msgstr "" @@ -6992,11 +6996,11 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:349 ../../include/channel.php:1831 +#: ../../Zotlabs/Module/Directory.php:349 ../../include/channel.php:1834 msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:354 ../../include/channel.php:1658 +#: ../../Zotlabs/Module/Directory.php:354 ../../include/channel.php:1661 #: ../../include/event.php:63 ../../include/event.php:134 msgid "Location:" msgstr "" @@ -7005,11 +7009,11 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:367 ../../include/channel.php:1860 +#: ../../Zotlabs/Module/Directory.php:367 ../../include/channel.php:1863 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:369 ../../include/channel.php:1866 +#: ../../Zotlabs/Module/Directory.php:369 ../../include/channel.php:1869 msgid "About:" msgstr "" @@ -7266,141 +7270,137 @@ msgstr "" msgid "Email address required" msgstr "" -#: ../../Zotlabs/Module/Register.php:153 +#: ../../Zotlabs/Module/Register.php:156 msgid "No password provided" msgstr "" -#: ../../Zotlabs/Module/Register.php:158 ../../include/js_strings.php:12 +#: ../../Zotlabs/Module/Register.php:161 ../../include/js_strings.php:12 msgid "Passwords do not match" msgstr "" -#: ../../Zotlabs/Module/Register.php:176 +#: ../../Zotlabs/Module/Register.php:179 msgid "Terms of Service not accepted" msgstr "" -#: ../../Zotlabs/Module/Register.php:238 +#: ../../Zotlabs/Module/Register.php:241 msgid "Invitation code succesfully applied" msgstr "" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:261 msgid "Invitation not in time or too late" msgstr "" -#: ../../Zotlabs/Module/Register.php:264 +#: ../../Zotlabs/Module/Register.php:267 msgid "Invitation email failed" msgstr "" -#: ../../Zotlabs/Module/Register.php:272 +#: ../../Zotlabs/Module/Register.php:275 msgid "Invitation code failed" msgstr "" -#: ../../Zotlabs/Module/Register.php:279 +#: ../../Zotlabs/Module/Register.php:282 msgid "Invitations are not available" msgstr "" -#: ../../Zotlabs/Module/Register.php:305 -msgid "Email address already in use" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:315 +#: ../../Zotlabs/Module/Register.php:292 msgid "Registration on this hub is by invitation only" msgstr "" -#: ../../Zotlabs/Module/Register.php:352 ../../include/account.php:429 -#: ../../include/account.php:497 +#: ../../Zotlabs/Module/Register.php:328 ../../include/account.php:435 +#: ../../include/account.php:503 #, php-format msgid "Registration confirmation for %s" msgstr "" -#: ../../Zotlabs/Module/Register.php:423 +#: ../../Zotlabs/Module/Register.php:399 msgid "New register request" msgstr "" -#: ../../Zotlabs/Module/Register.php:441 +#: ../../Zotlabs/Module/Register.php:417 msgid "Error creating dId A" msgstr "" -#: ../../Zotlabs/Module/Register.php:459 +#: ../../Zotlabs/Module/Register.php:435 msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Register.php:468 +#: ../../Zotlabs/Module/Register.php:444 msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Register.php:469 +#: ../../Zotlabs/Module/Register.php:445 msgid "Register at another affiliated hub in case when prefered" msgstr "" -#: ../../Zotlabs/Module/Register.php:482 +#: ../../Zotlabs/Module/Register.php:458 msgid "Registration on this hub is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Register.php:483 +#: ../../Zotlabs/Module/Register.php:459 msgid "Register at another affiliated hub" msgstr "" -#: ../../Zotlabs/Module/Register.php:497 ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Register.php:503 +#: ../../Zotlabs/Module/Register.php:479 #, php-format msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Register.php:510 +#: ../../Zotlabs/Module/Register.php:486 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Register.php:520 +#: ../../Zotlabs/Module/Register.php:496 msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Register.php:527 +#: ../../Zotlabs/Module/Register.php:503 msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Register.php:528 +#: ../../Zotlabs/Module/Register.php:504 msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Register.php:530 +#: ../../Zotlabs/Module/Register.php:506 msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Register.php:532 +#: ../../Zotlabs/Module/Register.php:508 msgid "Your name" msgstr "" -#: ../../Zotlabs/Module/Register.php:532 +#: ../../Zotlabs/Module/Register.php:508 msgid "Real name is preferred" msgstr "" -#: ../../Zotlabs/Module/Register.php:534 +#: ../../Zotlabs/Module/Register.php:510 msgid "" "Your nickname will be used to create an easy to remember channel address" msgstr "" -#: ../../Zotlabs/Module/Register.php:538 +#: ../../Zotlabs/Module/Register.php:514 msgid "Why do you want to join this hub?" msgstr "" -#: ../../Zotlabs/Module/Register.php:538 +#: ../../Zotlabs/Module/Register.php:514 msgid "This will help to review your registration" msgstr "" -#: ../../Zotlabs/Module/Register.php:552 +#: ../../Zotlabs/Module/Register.php:528 msgid "I have an invite code" msgstr "" -#: ../../Zotlabs/Module/Register.php:566 ../../include/nav.php:168 +#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 #: ../../boot.php:1696 msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Register.php:599 +#: ../../Zotlabs/Module/Register.php:575 msgid "" "This site has exceeded the number of allowed daily account registrations." msgstr "" @@ -7655,7 +7655,7 @@ msgstr "" msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:501 ../../include/channel.php:1788 +#: ../../Zotlabs/Module/Settings/Channel.php:501 ../../include/channel.php:1791 msgid "Full Name:" msgstr "" @@ -8248,30 +8248,30 @@ msgstr "" msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:297 ../../include/items.php:4965 +#: ../../Zotlabs/Module/Cover_photo.php:297 ../../include/items.php:4966 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4966 +#: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4967 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4967 +#: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4968 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:300 ../../include/items.php:4968 +#: ../../Zotlabs/Module/Cover_photo.php:300 ../../include/items.php:4969 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4970 +#: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4971 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2353 +#: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2356 msgid "cover photo" msgstr "" @@ -9285,7 +9285,7 @@ msgid "created an event" msgstr "" #: ../../Zotlabs/Lib/Enotify.php:986 -msgid "verified" +msgid "status verified" msgstr "" #: ../../Zotlabs/Lib/Libsync.php:740 ../../include/zot.php:2663 @@ -9641,8 +9641,8 @@ msgstr "" #: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 #: ../../include/network.php:1767 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1902 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2110 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1939 +#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2147 msgid "ActivityPub" msgstr "" @@ -10739,149 +10739,149 @@ msgstr "" msgid "Requested channel is not available." msgstr "" -#: ../../include/channel.php:1564 +#: ../../include/channel.php:1567 msgid "Create New Profile" msgstr "" -#: ../../include/channel.php:1567 ../../include/nav.php:120 +#: ../../include/channel.php:1570 ../../include/nav.php:120 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:58 msgid "Edit Profile" msgstr "" -#: ../../include/channel.php:1585 +#: ../../include/channel.php:1588 msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1662 ../../include/channel.php:1790 +#: ../../include/channel.php:1665 ../../include/channel.php:1793 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1663 ../../include/channel.php:1834 +#: ../../include/channel.php:1666 ../../include/channel.php:1837 msgid "Status:" msgstr "" -#: ../../include/channel.php:1664 ../../include/channel.php:1858 +#: ../../include/channel.php:1667 ../../include/channel.php:1861 msgid "Homepage:" msgstr "" -#: ../../include/channel.php:1665 +#: ../../include/channel.php:1668 msgid "Online Now" msgstr "" -#: ../../include/channel.php:1718 +#: ../../include/channel.php:1721 msgid "Change your profile photo" msgstr "" -#: ../../include/channel.php:1745 ../../include/selectors.php:60 +#: ../../include/channel.php:1748 ../../include/selectors.php:60 #: ../../include/selectors.php:77 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 msgid "Female" msgstr "" -#: ../../include/channel.php:1747 ../../include/selectors.php:60 +#: ../../include/channel.php:1750 ../../include/selectors.php:60 #: ../../include/selectors.php:77 #: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 msgid "Male" msgstr "" -#: ../../include/channel.php:1749 +#: ../../include/channel.php:1752 msgid "Trans" msgstr "" -#: ../../include/channel.php:1751 ../../include/selectors.php:60 +#: ../../include/channel.php:1754 ../../include/selectors.php:60 msgid "Neuter" msgstr "" -#: ../../include/channel.php:1753 ../../include/selectors.php:60 +#: ../../include/channel.php:1756 ../../include/selectors.php:60 msgid "Non-specific" msgstr "" -#: ../../include/channel.php:1795 +#: ../../include/channel.php:1798 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1819 +#: ../../include/channel.php:1822 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1820 +#: ../../include/channel.php:1823 msgid "j F" msgstr "" -#: ../../include/channel.php:1827 +#: ../../include/channel.php:1830 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1840 +#: ../../include/channel.php:1843 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1852 +#: ../../include/channel.php:1855 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1856 +#: ../../include/channel.php:1859 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1862 +#: ../../include/channel.php:1865 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1864 +#: ../../include/channel.php:1867 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1868 +#: ../../include/channel.php:1871 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1870 +#: ../../include/channel.php:1873 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1872 +#: ../../include/channel.php:1875 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1874 +#: ../../include/channel.php:1877 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1876 +#: ../../include/channel.php:1879 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1878 +#: ../../include/channel.php:1881 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1880 +#: ../../include/channel.php:1883 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1882 +#: ../../include/channel.php:1885 msgid "Television:" msgstr "" -#: ../../include/channel.php:1884 +#: ../../include/channel.php:1887 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1886 +#: ../../include/channel.php:1889 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1888 +#: ../../include/channel.php:1891 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1890 +#: ../../include/channel.php:1893 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1913 +#: ../../include/channel.php:1916 msgid "Like this thing" msgstr "" @@ -11792,7 +11792,7 @@ msgstr "" msgid "Select an alternate language" msgstr "" -#: ../../include/zid.php:360 +#: ../../include/zid.php:403 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" @@ -12473,83 +12473,89 @@ msgstr "" msgid "The provided email address is not valid" msgstr "" -#: ../../include/account.php:40 +#: ../../include/account.php:41 msgid "The provided email domain is not among those allowed on this site" msgstr "" -#: ../../include/account.php:51 +#: ../../include/account.php:48 msgid "The provided email address is already registered at this site" msgstr "" -#: ../../include/account.php:88 +#: ../../include/account.php:55 +msgid "" +"There is a pending registration for this address - click \"Register\" to " +"continue verification" +msgstr "" + +#: ../../include/account.php:94 msgid "An invitation is required." msgstr "" -#: ../../include/account.php:97 +#: ../../include/account.php:103 msgid "Invitation could not be verified." msgstr "" -#: ../../include/account.php:185 +#: ../../include/account.php:191 msgid "Please enter the required information." msgstr "" -#: ../../include/account.php:252 ../../include/account.php:360 +#: ../../include/account.php:258 ../../include/account.php:366 msgid "Failed to store account information." msgstr "" -#: ../../include/account.php:572 +#: ../../include/account.php:578 #, php-format msgid "Registration request at %s" msgstr "" -#: ../../include/account.php:594 +#: ../../include/account.php:600 msgid "your registration password" msgstr "" -#: ../../include/account.php:600 ../../include/account.php:689 +#: ../../include/account.php:606 ../../include/account.php:695 #, php-format msgid "Registration details for %s" msgstr "" -#: ../../include/account.php:700 +#: ../../include/account.php:706 msgid "Account approved." msgstr "" -#: ../../include/account.php:756 +#: ../../include/account.php:762 #, php-format msgid "Registration revoked for %s" msgstr "" -#: ../../include/account.php:763 +#: ../../include/account.php:769 #, php-format msgid "Could not revoke registration for %s" msgstr "" -#: ../../include/account.php:1179 ../../include/account.php:1181 +#: ../../include/account.php:1185 ../../include/account.php:1187 msgid "Click here to upgrade." msgstr "" -#: ../../include/account.php:1187 +#: ../../include/account.php:1193 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/account.php:1192 +#: ../../include/account.php:1198 msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/account.php:1252 +#: ../../include/account.php:1258 msgid "open" msgstr "" -#: ../../include/account.php:1252 +#: ../../include/account.php:1258 msgid "closed" msgstr "" -#: ../../include/account.php:1259 +#: ../../include/account.php:1265 msgid "Registration is currently" msgstr "" -#: ../../include/account.php:1268 +#: ../../include/account.php:1274 msgid "please come back" msgstr "" @@ -12820,71 +12826,71 @@ msgstr "" msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/items.php:1037 ../../include/items.php:1097 +#: ../../include/items.php:1038 ../../include/items.php:1098 msgid "(Unknown)" msgstr "" -#: ../../include/items.php:1301 +#: ../../include/items.php:1302 msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/items.php:1303 +#: ../../include/items.php:1304 msgid "Visible to you only." msgstr "" -#: ../../include/items.php:1305 +#: ../../include/items.php:1306 msgid "Visible to anybody in this network." msgstr "" -#: ../../include/items.php:1307 +#: ../../include/items.php:1308 msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/items.php:1309 +#: ../../include/items.php:1310 #, php-format msgid "Visible to anybody on %s." msgstr "" -#: ../../include/items.php:1311 +#: ../../include/items.php:1312 msgid "Visible to all connections." msgstr "" -#: ../../include/items.php:1313 +#: ../../include/items.php:1314 msgid "Visible to approved connections." msgstr "" -#: ../../include/items.php:1315 +#: ../../include/items.php:1316 msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:4600 +#: ../../include/items.php:4601 msgid "Privacy group is empty." msgstr "" -#: ../../include/items.php:4607 +#: ../../include/items.php:4608 #, php-format msgid "Privacy group: %s" msgstr "" -#: ../../include/items.php:4619 +#: ../../include/items.php:4620 msgid "Connection not found." msgstr "" -#: ../../include/items.php:4972 +#: ../../include/items.php:4973 msgid "profile photo" msgstr "" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 #, php-format msgid "[Edited %s]" msgstr "" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 msgctxt "edit_activity" msgid "Post" msgstr "" -#: ../../include/items.php:5164 +#: ../../include/items.php:5165 msgctxt "edit_activity" msgid "Comment" msgstr "" @@ -16106,4 +16112,4 @@ msgstr "" #: ../../boot.php:2729 msgid "Cron/Scheduled tasks not running." -msgstr "" \ No newline at end of file +msgstr "" diff --git a/view/pl/htconfig.tpl b/view/pl/htconfig.tpl index 562aedabb..87ffb4d9b 100644 --- a/view/pl/htconfig.tpl +++ b/view/pl/htconfig.tpl @@ -65,9 +65,9 @@ App::$config['system']['verify_email'] = 1; // Masz do wyboru ACCESS_PRIVATE, ACCESS_PAID, ACCESS_TIERED i ACCESS_FREE. // Jeśli opuścisz ustawienie REGISTER_OPEN powyżej, każdy bedzie się mógł // zarejestrować na Twoim serwisiewitryna, jednak serwis ten nie będzie nigdzie -// wyświetlany jako węzeł z otwartą resjestracją. +// wyświetlany jako portal z otwartą resjestracją. // Używamy polityki dostępu do systemu (poniżej) aby określić, czy serwis ma być -// umieszczony w katalogu jako otwarty węzeł, w którym każdy może tworzyć konta. +// umieszczony w katalogu jako portal otwarty, w którym każdy może tworzyć konta. // Twój wybór, to: paid, tiered lub free. App::$config['system']['access_policy'] = ACCESS_PRIVATE; -- cgit v1.2.3 From f73a83aa5594c014fc1d8d2c9605eccd3260c619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Mon, 24 May 2021 17:18:13 +0200 Subject: Next fixes and generating new hstrings.php file --- view/pl/hmessages.mo | Bin 304966 -> 304989 bytes view/pl/hmessages.po | 46 +- view/pl/hstrings.php | 3663 -------------------------------------------------- 3 files changed, 23 insertions(+), 3686 deletions(-) diff --git a/view/pl/hmessages.mo b/view/pl/hmessages.mo index 73af1adda..821306629 100644 Binary files a/view/pl/hmessages.mo and b/view/pl/hmessages.mo differ diff --git a/view/pl/hmessages.po b/view/pl/hmessages.po index 9c9864859..799e35680 100644 --- a/view/pl/hmessages.po +++ b/view/pl/hmessages.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 5.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-05-23 21:08+0200\n" -"PO-Revision-Date: 2021-05-23 23:32+0200\n" +"PO-Revision-Date: 2021-05-24 17:06+0200\n" "Last-Translator: Andrzej Budziński \n" "Language-Team: \n" "Language: pl\n" @@ -1476,7 +1476,7 @@ msgstr "Polubienia" #: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:775 msgid "Dislikes" -msgstr "Dezaprobaty" +msgstr "Niepolubienia" #: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:782 msgid "Work/Employment" @@ -4089,7 +4089,7 @@ msgstr "Proszę wprowadzić adres URL linku:" #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:173 #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:316 msgid "Encrypt text" -msgstr "Szyfruj tekst" +msgstr "Zaszyfruj tekst" #: ../../Zotlabs/Module/Chat.php:238 msgid "New Chatroom" @@ -4590,7 +4590,7 @@ msgstr "Polubienia" #: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:653 msgctxt "title" msgid "Dislikes" -msgstr "Dezaprobaty" +msgstr "Niepolubienia" #: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:77 #: ../../include/conversation.php:654 @@ -6752,7 +6752,7 @@ msgstr "" #: ../../Zotlabs/Module/Notifications.php:63 #: ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" -msgstr "Oznacz wszystkie jako oglądnięte" +msgstr "Oznacz wszystko jako oglądnięte" #: ../../Zotlabs/Module/Home.php:87 ../../Zotlabs/Module/Home.php:95 #: ../../Zotlabs/Module/Invite.php:225 ../../Zotlabs/Module/Invite.php:494 @@ -8937,7 +8937,7 @@ msgstr "Dodaj pliki" #: ../../Zotlabs/Storage/Browser.php:369 ../../Zotlabs/Lib/ThreadItem.php:175 msgid "Admin Delete" -msgstr "Usuń przez administratora" +msgstr "Usunięte przez administratora" #: ../../Zotlabs/Storage/Browser.php:381 msgid "parent" @@ -9325,11 +9325,11 @@ msgstr "Brak nazwy pokoju" #: ../../Zotlabs/Lib/Chatroom.php:34 msgid "Duplicate room name" -msgstr "Zduplikowana nazwa pokoju" +msgstr "Powielona nazwa pokoju" #: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 msgid "Invalid room specifier." -msgstr "Nieprawidłowy specyfikator sali." +msgstr "Nieprawidłowy specyfikator pokoju." #: ../../Zotlabs/Lib/Chatroom.php:124 msgid "Room not found." @@ -9441,7 +9441,7 @@ msgstr "polubił" #: ../../Zotlabs/Lib/Enotify.php:160 msgid "disliked" -msgstr "dezaprobował" +msgstr "nie polubił" #: ../../Zotlabs/Lib/Enotify.php:165 msgid "voted on" @@ -9842,7 +9842,7 @@ msgstr[2] "%d komentarzy" #: ../../Zotlabs/Lib/ThreadItem.php:360 #, php-format msgid "%d unseen" -msgstr "%d niezobaczone" +msgstr "%d nie zobaczone" #: ../../Zotlabs/Lib/ThreadItem.php:413 msgid "to" @@ -9884,7 +9884,7 @@ msgstr "Uczestnicz" #: ../../Zotlabs/Lib/ThreadItem.php:445 ../../Zotlabs/Widget/Pinned.php:141 msgid "Attendance Options" -msgstr "Opcje obecności" +msgstr "Opcje uczestnictwa" #: ../../Zotlabs/Lib/ThreadItem.php:446 ../../include/text.php:1924 msgid "Vote" @@ -9900,12 +9900,12 @@ msgstr "Przejdź do poprzedniego komentarza" #: ../../Zotlabs/Lib/ThreadItem.php:471 ../../Zotlabs/Widget/Pinned.php:154 msgid "Pinned post" -msgstr "Wpisy przypięte" +msgstr "Wpis przypięty" #: ../../Zotlabs/Lib/ThreadItem.php:473 ../../Zotlabs/Widget/Pinned.php:155 #: ../../include/js_strings.php:39 msgid "Unpin from the top" -msgstr "Odepnij z góry" +msgstr "Odepnij od góry" #: ../../Zotlabs/Lib/ThreadItem.php:473 ../../include/js_strings.php:38 msgid "Pin to the top" @@ -9932,17 +9932,17 @@ msgstr "%s pokaż wszystko" #: ../../Zotlabs/Lib/ThreadItem.php:828 ../../include/conversation.php:1451 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:200 msgid "Bold" -msgstr "Gruby" +msgstr "Grube" #: ../../Zotlabs/Lib/ThreadItem.php:829 ../../include/conversation.php:1452 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:201 msgid "Italic" -msgstr "Pochyły" +msgstr "Pochyłe" #: ../../Zotlabs/Lib/ThreadItem.php:830 ../../include/conversation.php:1453 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:202 msgid "Underline" -msgstr "Podkreślony" +msgstr "Podkreślone" #: ../../Zotlabs/Lib/ThreadItem.php:831 ../../include/conversation.php:1454 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:203 @@ -9961,7 +9961,7 @@ msgstr "Obraz" #: ../../Zotlabs/Lib/ThreadItem.php:834 ../../include/conversation.php:1456 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:205 msgid "Attach/Upload file" -msgstr "Załącz / prześlij plik" +msgstr "Załącz/Prześlij plik" #: ../../Zotlabs/Lib/ThreadItem.php:835 msgid "Insert Link" @@ -10131,8 +10131,8 @@ msgstr "" msgid "" "This is your default setting for who can view your file storage and photos" msgstr "" -"Jest to domyślne ustawienie określające, kto może wyświetlać miejsce na pliki " -"i zdjęcia" +"Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i " +"zdjęć" #: ../../Zotlabs/Lib/PermissionDescription.php:154 msgid "This is your default setting for the audience of your webpages" @@ -11235,7 +11235,7 @@ msgstr "Polubień:" #: ../../include/channel.php:1875 msgid "Dislikes:" -msgstr "Dezaprobat:" +msgstr "Niepolubień:" #: ../../include/channel.php:1877 msgid "Contact information and Social Networks:" @@ -11267,15 +11267,15 @@ msgstr "Miłość/Romans:" #: ../../include/channel.php:1891 msgid "Work/employment:" -msgstr "Praca/zatrudnienie:" +msgstr "Praca/Zatrudnienie:" #: ../../include/channel.php:1893 msgid "School/education:" -msgstr "Szkoła/edukacja:" +msgstr "Szkoła/Wykształcenie:" #: ../../include/channel.php:1916 msgid "Like this thing" -msgstr "Jak ta rzecz" +msgstr "Podobne do tej rzeczy" #: ../../include/features.php:86 msgid "Start calendar week on Monday" diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index ed3948961..a4abe2daf 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -1,3665 +1,2 @@ =2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); -}} -App::$rtl = 0; -App::$strings["plural_function_code"] = "(n==1 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))"; -App::$strings["Can view my channel stream and posts"] = "Może wyświetlać strumień i wpisy z mojego kanału"; -App::$strings["Can send me their channel stream and posts"] = "Może przesyłać mi strumień swojego kanału i wpisy"; -App::$strings["Can view my default channel profile"] = "Może wyświetlać mój domyślny profil kanału"; -App::$strings["Can view my connections"] = "Może wyświetlać moje połączenia"; -App::$strings["Can view my file storage and photos"] = "Może wyświetlać moje przechowywane pliki i zdjęcia"; -App::$strings["Can upload/modify my file storage and photos"] = "Może przesyłać/modyfikować moje przechowywane pliki i zdjęcia"; -App::$strings["Can view my channel webpages"] = "Może wyświetlać strony internetowe mojego kanału"; -App::$strings["Can view my wiki pages"] = "Może przeglądać moje strony wiki"; -App::$strings["Can create/edit my channel webpages"] = "Może tworzyć/edytować strony internetowe mojego kanału"; -App::$strings["Can write to my wiki pages"] = "Może pisać na moich stronach wiki"; -App::$strings["Can post on my channel (wall) page"] = "Może publikować na stronie mojego kanału (tablicy)"; -App::$strings["Can comment on or like my posts"] = "Może komentować lub polubić moje wpisy"; -App::$strings["Can send me private mail messages"] = "Może wysyłać mi prywatne wiadomości e-mail"; -App::$strings["Can like/dislike profiles and profile things"] = "Może lubić/nie lubić profile i rzeczy w profilach"; -App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !wzmianki w wpisach"; -App::$strings["Can chat with me"] = "Może ze mną rozmawiać"; -App::$strings["Can source my public posts in derived channels"] = "Może pozyskiwać moje publiczne wpisy w kanałach pochodnych"; -App::$strings["Can administer my channel"] = "Może zarządzać moim kanałem"; -App::$strings["Social Networking"] = "Sieć społecznościowa"; -App::$strings["Social - Federation"] = "Społecznościowy - federacyjny"; -App::$strings["Social - Mostly Public"] = "Społecznościowy - głównie publiczny"; -App::$strings["Social - Restricted"] = "Społecznościowy - ograniczony"; -App::$strings["Social - Private"] = "Społecznościowy - prywatny"; -App::$strings["Community Forum"] = "Forum społecznościowe"; -App::$strings["Forum - Mostly Public"] = "Forum - głównie publiczne"; -App::$strings["Forum - Restricted"] = "Forum - ograniczone"; -App::$strings["Forum - Private"] = "Forum - prywatne"; -App::$strings["Feed Republish"] = "Opublikuj ponownie kanał RSS"; -App::$strings["Feed - Mostly Public"] = "Kanał RSS - głównie publiczny"; -App::$strings["Feed - Restricted"] = "Kanał RSS - ograniczony"; -App::$strings["Special Purpose"] = "Specjalnego celu"; -App::$strings["Special - Celebrity/Soapbox"] = "Specjalne - celebryckie i mównice"; -App::$strings["Special - Group Repository"] = "Specjalne - repozytorium grupowe"; -App::$strings["Other"] = "Inny"; -App::$strings["Custom/Expert Mode"] = "Tryb niestandardowy/ekspercki"; -App::$strings["Permission denied."] = "Dostęp zabroniony."; -App::$strings["Layout updated."] = "Zaktualizowano układ."; -App::$strings["PDL Editor App"] = "Aplikacja Edytor PDL"; -App::$strings["Not Installed"] = "Nie zainstalowano"; -App::$strings["Provides the ability to edit system page layouts"] = "Zapewnia możliwość edycji układów stron systemowych"; -App::$strings["Edit System Page Description"] = "Edytuj opis strony systemowej"; -App::$strings["(modified)"] = "(zmodyfikowany)"; -App::$strings["Reset"] = "Resetuj"; -App::$strings["Layout not found."] = "Nie znaleziono układu."; -App::$strings["Module Name:"] = "Nazwa modułu:"; -App::$strings["Layout Help"] = "Pomoc dotycząca układu"; -App::$strings["Edit another layout"] = "Edytuj inny układ"; -App::$strings["System layout"] = "Układ systemowy"; -App::$strings["Submit"] = "Zatwierdź"; -App::$strings["Update to Hubzilla 5.0 step 2"] = "Zaktualizuj do Hubzilli 5.0 krok 2"; -App::$strings["To complete the update please run"] = "Uruchom, aby zakończyć aktualizację"; -App::$strings["php util/z6convert.php"] = "php util/z6convert.php"; -App::$strings["from the terminal."] = "z terminala."; -App::$strings["Permission denied"] = "Dostęp zabroniony"; -App::$strings["Invalid message"] = "Nieprawidłowa wiadomość"; -App::$strings["no results"] = "brak wyników"; -App::$strings["channel sync processed"] = "synchronizacja kanałów została przetworzona"; -App::$strings["queued"] = "w kolejce"; -App::$strings["posted"] = "opublikowane"; -App::$strings["accepted for delivery"] = "przyjęty do dostawy"; -App::$strings["updated"] = "zaktualizowany"; -App::$strings["update ignored"] = "aktualizacja zignorowana"; -App::$strings["permission denied"] = "dostęp zabroniony"; -App::$strings["recipient not found"] = "nie znaleziono odbiorcy"; -App::$strings["mail recalled"] = "mail odwołany"; -App::$strings["duplicate mail received"] = "otrzymano powieloną wiadomość"; -App::$strings["mail delivered"] = "dostarczono pocztę"; -App::$strings["Delivery report for %1\$s"] = "Raport dostarczenia dla %1\$s"; -App::$strings["Options"] = "Opcje"; -App::$strings["Redeliver"] = "Dostarcz ponownie"; -App::$strings["Invalid profile identifier."] = "Nieprawidłowy identyfikator profilu."; -App::$strings["Profile Visibility Editor"] = "Edytor widoczności profilu"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Kliknij kontakt, który chcesz dodać lub usunąć."; -App::$strings["Visible To"] = "Widoczne dla"; -App::$strings["All Connections"] = "Wszystkie połączenia"; -App::$strings["Not found"] = "Nie znaleziono"; -App::$strings["Unknown error"] = "Nieznany błąd"; -App::$strings["Unknown App"] = "Aplikacja nieznana"; -App::$strings["Authorize"] = "Autoryzuj"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Czy zezwalasz aplikacji %s na dostęp do danych Twojego kanału?"; -App::$strings["Allow"] = "Zezwól"; -App::$strings["Deny"] = "Zabroń"; -App::$strings["Calendar entries imported."] = "Zaimportowano wpisy kalendarza."; -App::$strings["No calendar entries found."] = "Nie znaleziono wpisów kalendarza."; -App::$strings["CardDAV App"] = "Aplikacja CardDAV"; -App::$strings["CalDAV capable addressbook"] = "Książka adresowa z obsługą CalDAV"; -App::$strings["Link to source"] = "Link do źródła"; -App::$strings["Event title"] = "Tytuł wydarzenia"; -App::$strings["Start date and time"] = "Data i godzina rozpoczęcia"; -App::$strings["End date and time"] = "Data i godzina zakończenia"; -App::$strings["Timezone:"] = "Strefa czasowa:"; -App::$strings["Description"] = "Opis"; -App::$strings["Location"] = "Lokalizacja"; -App::$strings["Previous"] = "Poprzedni"; -App::$strings["Next"] = "Następny"; -App::$strings["Today"] = "Dzisiaj"; -App::$strings["Month"] = "Miesiąc"; -App::$strings["Week"] = "Tydzień"; -App::$strings["Day"] = "Dzień"; -App::$strings["List month"] = "Wymień miesiąc"; -App::$strings["List week"] = "Wymień tydzień"; -App::$strings["List day"] = "Wymień dzień"; -App::$strings["More"] = "Więcej"; -App::$strings["Less"] = "Mniej"; -App::$strings["Update"] = "Zaktualizuj"; -App::$strings["Select calendar"] = "Wybierz kalendarz"; -App::$strings["Channel Calendars"] = "Kalendarze kanału"; -App::$strings["CalDAV Calendars"] = "Kalendarze CalDAV"; -App::$strings["Delete"] = "Usuń"; -App::$strings["Delete all"] = "Usuń wszystko"; -App::$strings["Cancel"] = "Anuluj"; -App::$strings["Create"] = "Utwórz"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze zaimplementowana."; -App::$strings["Categories"] = "Kategorie"; -App::$strings["Name"] = "Nazwa"; -App::$strings["Organisation"] = "Organizacja"; -App::$strings["Title"] = "Tytuł"; -App::$strings["Phone"] = "Numer telefonu"; -App::$strings["Email"] = "Adres e-mail"; -App::$strings["Instant messenger"] = "Komunikator internetowy"; -App::$strings["Website"] = "Strona internetowa"; -App::$strings["Address"] = "Adres"; -App::$strings["Note"] = "Notatka"; -App::$strings["Mobile"] = "Komórka"; -App::$strings["Home"] = "Domowy"; -App::$strings["Work"] = "Praca"; -App::$strings["Add Contact"] = "Dodaj kontakt"; -App::$strings["Add Field"] = "Dodaj pole"; -App::$strings["P.O. Box"] = "Skrytka pocztowa"; -App::$strings["Additional"] = "Dodatkowe informacje"; -App::$strings["Street"] = "Ulica"; -App::$strings["Locality"] = "Miejscowość"; -App::$strings["Region"] = "Region"; -App::$strings["ZIP Code"] = "Kod pocztowy"; -App::$strings["Country"] = "Państwo"; -App::$strings["Default Calendar"] = "Domyślny kalendarz"; -App::$strings["Default Addressbook"] = "Domyślna książka adresowa"; -App::$strings["Authorize application connection"] = "Autoryzuj połączenie aplikacji"; -App::$strings["Return to your app and insert this Security Code:"] = "Wróć do aplikacji i wprowadź ten kod bezpieczeństwa:"; -App::$strings["Please login to continue."] = "Proszę się zalogować, aby kontynuować."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do Twoich wpisów i kontaktów albo tworzenie dla Ciebie nowych wpisów ?"; -App::$strings["Yes"] = "Tak"; -App::$strings["No"] = "Nie"; -App::$strings["This site is not a directory server"] = "Ta witryna nie jest serwerem katalogów"; -App::$strings["This directory server requires an access token"] = "Ten serwer katalogowy wymaga tokenu dostępu"; -App::$strings["Enter a folder name"] = "Wprowadź nazwę folderu"; -App::$strings["or select an existing folder (doubleclick)"] = "lub wybierz istniejący folder (kliknij dwukrotnie)"; -App::$strings["Save"] = "Zapisz"; -App::$strings["Save to Folder"] = "Zapisz do folderu"; -App::$strings["Event can not end before it has started."] = "Wydarzenie nie może zakończyć się przed rozpoczęciem."; -App::$strings["Unable to generate preview."] = "Nie można wygenerować podglądu."; -App::$strings["Event title and start time are required."] = "Wymaga się wprowadzenia tytułu wydarzenia i godziny rozpoczęcia."; -App::$strings["Event not found."] = "Nie znaleziono wydarzenia."; -App::$strings["event"] = "wydarzenie"; -App::$strings["Edit event title"] = "Edytuj tytuł wydarzenia"; -App::$strings["Required"] = "Wymagane"; -App::$strings["Categories (comma-separated list)"] = "Kategorie (lista rozdzielana przecinkami)"; -App::$strings["Edit Category"] = "Edytuj kategorię"; -App::$strings["Category"] = "Kategoria"; -App::$strings["Edit start date and time"] = "Edytuj datę i godzinę rozpoczęcia"; -App::$strings["Finish date and time are not known or not relevant"] = "Data i godzina zakończenia nie są znane lub nie mają znaczenia"; -App::$strings["Edit finish date and time"] = "Edytuj datę i godzinę zakończenia"; -App::$strings["Finish date and time"] = "Data i godzina zakończenia"; -App::$strings["Adjust for viewer timezone"] = "Dostosuj do strefy czasowej widza"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na globalne święta."; -App::$strings["Edit Description"] = "Edytuj opis"; -App::$strings["Edit Location"] = "Edytuj lokalizację"; -App::$strings["Preview"] = "Podgląd"; -App::$strings["Permission settings"] = "Ustawienia dostępu"; -App::$strings["Advanced Options"] = "Zaawansowane opcje"; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Edytuj wydarzenie"; -App::$strings["Delete event"] = "Usuń wydarzenie"; -App::$strings["Link to Source"] = "Link do źródła"; -App::$strings["calendar"] = "kalendarz"; -App::$strings["Edit Event"] = "Edytuj wydarzenie"; -App::$strings["Create Event"] = "Utwórz wydarzenie"; -App::$strings["Export"] = "Eksportuj"; -App::$strings["View"] = "Widok"; -App::$strings["Event removed"] = "Wydarzenie usunięte"; -App::$strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; -App::$strings["Documentation Search"] = "Przeszukaj dokumentację"; -App::$strings["About"] = "O platformie Hubzilla"; -App::$strings["Members"] = "Dla członków"; -App::$strings["Administrators"] = "Dla administratorów"; -App::$strings["Developers"] = "Dla deweloperów"; -App::$strings["Tutorials"] = "Poradniki"; -App::$strings["\$Projectname Documentation"] = "Dokumentacja \$Projectname"; -App::$strings["Contents"] = "Spis treści"; -App::$strings["Bookmark added"] = "Dodano zakładkę"; -App::$strings["Bookmarks App"] = "Aplikacja Zakładki"; -App::$strings["Bookmark links from posts and manage them"] = "Dodaj do zakładek linki z wpisów i zarządzaj nimi"; -App::$strings["My Bookmarks"] = "Moje zakładki"; -App::$strings["My Connections Bookmarks"] = "Moje zakładki połączeń"; -App::$strings["Requested profile is not available."] = "Żądany profil nie jest dostępny."; -App::$strings["Webpages App"] = "Aplikacja Witryny Internetowe"; -App::$strings["Provide managed web pages on your channel"] = "Udostępnij zarządzane strony internetowe na swoim kanale"; -App::$strings["Import Webpage Elements"] = "Importuj elementy strony internetowej"; -App::$strings["Import selected"] = "Importuj wybrane"; -App::$strings["Export Webpage Elements"] = "Eksportuj elementy strony internetowej"; -App::$strings["Export selected"] = "Eksportuj wybrane"; -App::$strings["Webpages"] = "Strony internetowe"; -App::$strings["Edit"] = "Edytuj"; -App::$strings["Share"] = "Udostępnij"; -App::$strings["Actions"] = "Akcje"; -App::$strings["Page Link"] = "Link do strony"; -App::$strings["Page Title"] = "Tytuł strony"; -App::$strings["Created"] = "Utworzono"; -App::$strings["Edited"] = "Edytowano"; -App::$strings["Invalid file type."] = "Zły typ pliku."; -App::$strings["Error opening zip file"] = "Błąd podczas otwierania pliku zip"; -App::$strings["Invalid folder path."] = "Nieprawidłowa ścieżka folderu."; -App::$strings["No webpage elements detected."] = "Nie wykryto żadnych elementów strony internetowej."; -App::$strings["Import complete."] = "Importowanie zakończone."; -App::$strings["Profile not found."] = "Nie znaleziono profilu."; -App::$strings["Profile deleted."] = "Profil został usunięty."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Utworzono nowy profil."; -App::$strings["Profile unavailable to clone."] = "Profil niedostępny do sklonowania."; -App::$strings["Profile unavailable to export."] = "Profil niedostępny do wyeksportowania."; -App::$strings["Profile Name is required."] = "Wymaga się podania nazwy profilu."; -App::$strings["Marital Status"] = "Stan cywilny"; -App::$strings["Romantic Partner"] = "Partner romantyczny"; -App::$strings["Likes"] = "Polubienia"; -App::$strings["Dislikes"] = "Dezaprobaty"; -App::$strings["Work/Employment"] = "Praca/Zatrudnienie"; -App::$strings["Religion"] = "Religia"; -App::$strings["Political Views"] = "Poglądy polityczny"; -App::$strings["Gender"] = "Płeć"; -App::$strings["Sexual Preference"] = "Preferencje seksualne"; -App::$strings["Homepage"] = "Strona domowa"; -App::$strings["Interests"] = "Zainteresowania"; -App::$strings["Profile updated."] = "Profil został zaktualizowany."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ukryj swoją listę kontaktów przed przeglądającymi ten profil"; -App::$strings["Edit Profile Details"] = "Edytuj szczegóły profilu"; -App::$strings["View this profile"] = "Zobacz ten profil"; -App::$strings["Edit visibility"] = "Edytuj dostępność"; -App::$strings["Profile Tools"] = "Narzędzia profilowe"; -App::$strings["Change cover photo"] = "Zmień zdjęcie okładkowe"; -App::$strings["Change profile photo"] = "Zmień zdjęcie profilowe"; -App::$strings["Create a new profile using these settings"] = "Utwórz nowy profil, korzystając z tych ustawień"; -App::$strings["Clone this profile"] = "Sklonuj ten profil"; -App::$strings["Delete this profile"] = "Usuń ten profil"; -App::$strings["Add profile things"] = "Dodaj elementy profilu"; -App::$strings["Personal"] = "Osobiste"; -App::$strings["Relationship"] = "Relacje"; -App::$strings["Miscellaneous"] = "Inne"; -App::$strings["Import profile from file"] = "Importuj profil z pliku"; -App::$strings["Export profile to file"] = "Eksportuj profil do pliku"; -App::$strings["Your gender"] = "Twoja płeć"; -App::$strings["Marital status"] = "Stan cywilny"; -App::$strings["Sexual preference"] = "Preferencje seksualne"; -App::$strings["Profile name"] = "Nazwa profilu"; -App::$strings["This is your default profile."] = "To jest Twój profil domyślny."; -App::$strings["Your full name"] = "Twoje imię i nazwisko albo pełna nazwa"; -App::$strings["Short title/description"] = "Krótki tytuł/opis"; -App::$strings["Maximal 190 characters"] = "Maksymalnie 190 znaków"; -App::$strings["Street address"] = "Ulica"; -App::$strings["Locality/City"] = "Miejscowość"; -App::$strings["Region/State"] = "Region/Stan"; -App::$strings["Postal/Zip code"] = "Kod pocztowy"; -App::$strings["Who (if applicable)"] = "Kto (jeśli dotyczy)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: jan123, Jan Kowalski, jan@example.com"; -App::$strings["Since (date)"] = "Od (data)"; -App::$strings["Tell us about yourself"] = "Opowiedz nam o sobie"; -App::$strings["Homepage URL"] = "Adres URL strony domowej"; -App::$strings["Hometown"] = "Miejscowość zamieszkania"; -App::$strings["Political views"] = "Poglądy polityczne"; -App::$strings["Religious views"] = "Poglądy religijne"; -App::$strings["Keywords used in directory listings"] = "Słowa kluczowe używane w wykazach katalogów"; -App::$strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografii wędkarskiej"; -App::$strings["Musical interests"] = "Zainteresowania muzyczne"; -App::$strings["Books, literature"] = "Ksiązki, literatura"; -App::$strings["Television"] = "Telewizja"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Taniec/Kultura/Rozrywka"; -App::$strings["Hobbies/Interests"] = "Zainteresowania"; -App::$strings["Love/Romance"] = "Miłość/romans"; -App::$strings["School/Education"] = "Szkoła/Edukacja"; -App::$strings["Contact information and social networks"] = "Informacje kontaktowe i sieci społecznościowe"; -App::$strings["My other channels"] = "Moje inne kanały"; -App::$strings["Communications"] = "Komunikacja"; -App::$strings["Profile Image"] = "Obraz profilowy"; -App::$strings["Edit Profiles"] = "Edytuj profile"; -App::$strings["Create New"] = "Utwórz nowy"; -App::$strings["Nothing to import."] = "Nie ma nic do zaimportowania."; -App::$strings["Unable to download data from old server"] = "Nie można pobrać danych ze starego serwera"; -App::$strings["Imported file is empty."] = "Zaimportowany plik jest pusty."; -App::$strings["Your service plan only allows %d channels."] = "Twój plan usług zezwala tylko na %d kanał/kanałów."; -App::$strings["No channel. Import failed."] = "Brak kanału. Import nieudany."; -App::$strings["Import completed."] = "Import zakończony."; -App::$strings["You must be logged in to use this feature."] = "Trzeba się zalogować, aby korzystać z tej funkcji."; -App::$strings["Import Channel"] = "Importuj kanał"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (serwisu).Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez sieć lub dostarczyć plik eksportu."; -App::$strings["File to Upload"] = "Plik do przesłania"; -App::$strings["Or provide the old server/hub details"] = "Lub podaj szczegóły starego serwera/serwisu"; -App::$strings["Your old identity address (xyz@example.com)"] = "Twój stary adres tożsamości (xyz@example.com)"; -App::$strings["Your old login email address"] = "Twój stary adres e-mail logowania"; -App::$strings["Your old login password"] = "Twoje stare hasło logowania"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "W obu przypadkach wybierz, czy chcesz ustawić ten serwis jako nowy adres podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna lokalizacja plików, zdjęć i multimediów."; -App::$strings["Make this hub my primary location"] = "Ustaw ten serwis jako moją główną lokalizację"; -App::$strings["Move this channel (disable all previous locations)"] = "Przenieś ten kanał (wyłącz wszystkie poprzednie lokalizacje)"; -App::$strings["Use this channel nickname instead of the one provided"] = "Użyj tego pseudonimu kanału zamiast podanego"; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie."; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę otwartą do zakończenia procedury."; -App::$strings["Like/Dislike"] = "Polub/Dezaprobuj"; -App::$strings["This action is restricted to members."] = "Ta akcja jest ograniczona do członków."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Aby kontynuować, zaloguj się za pomocą ID \$Projectname lub zarejestruj się jako nowy członek \$Projectname."; -App::$strings["Invalid request."] = "Nieprawidłowe żądanie."; -App::$strings["channel"] = "kanał"; -App::$strings["thing"] = "rzecz"; -App::$strings["Channel unavailable."] = "Kanał niedostępny."; -App::$strings["Previous action reversed."] = "Poprzednia czynność została cofnięta."; -App::$strings["photo"] = "zdjecie"; -App::$strings["status"] = "stan"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s polubił %3\$s %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s dezaprobował %3\$s %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s zgadza się z %3\$s dla %2\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s nie zgadza się z %3\$s dla %2\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s wstrzymuje się od decyzji w sprawie %3\$s dla %2\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s jest uczestnikiem %3\$s %2\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nie jest uczestnikiem %3\$s %2\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s może być uczestnikiem %3\$s %2\$s"; -App::$strings["Action completed."] = "Akcja zakończona."; -App::$strings["Thank you."] = "Dziękujemy."; -App::$strings["Could not access contact record."] = "Brak dostępu do rekordu kontaktu."; -App::$strings["Settings updated."] = "Zaktualizowano ustawienia."; -App::$strings["Default Permissions App"] = "Aplikacja Domyślne uprawnienia"; -App::$strings["Set custom default permissions for new connections"] = "Ustaw niestandardowe uprawnienia domyślne dla nowych połączeń"; -App::$strings["Connection Default Permissions"] = "Domyślne uprawnienia połączenia"; -App::$strings["Apply these permissions automatically"] = "Zastosuj te uprawnienia automatycznie"; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji"; -App::$strings["Permission role"] = "Rola uprawnień"; -App::$strings["Loading"] = "Ładowanie"; -App::$strings["Add permission role"] = "Dodaj rolę uprawnień"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych połączeń."; -App::$strings["Automatic approval settings"] = "Ustawienia automatycznego zatwierdzania"; -App::$strings["inherited"] = "dziedziczone"; -App::$strings["My Settings"] = "Moje ustawienia"; -App::$strings["Individual Permissions"] = "Uprawnienia indywidualne"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub zablokowane w zależności od typu kanału i ustawień prywatności."; -App::$strings["Layout Name"] = "Nazwa układu"; -App::$strings["Layout Description (Optional)"] = "Opis układu (opcjonalnie)"; -App::$strings["Layouts"] = "Układy"; -App::$strings["Help"] = "Pomoc"; -App::$strings["Comanche page description language help"] = "Pomoc w zakresie języka opisu strony Comanche"; -App::$strings["Layout Description"] = "Opis układu"; -App::$strings["Download PDL file"] = "Pobierz plik PDL"; -App::$strings["Public Stream App"] = "Aplikacja Strumień Publiczny"; -App::$strings["The unmoderated public stream of this hub"] = "Niemoderowany strumień publiczny tego serwisu"; -App::$strings["Reset form"] = "Resetuj formularz"; -App::$strings["Public Stream"] = "Strumień publiczny"; -App::$strings["Private forum"] = "Prywatne forum"; -App::$strings["Public forum"] = "Publiczne forum"; -App::$strings["Privacy group created."] = "Utworzono grupę prywatności."; -App::$strings["Could not create privacy group."] = "Nie udało się utworzyć grupy prywatności."; -App::$strings["Privacy group not found."] = "Nie znaleziono grupy prywatności."; -App::$strings["Privacy group updated."] = "Grupa prywatności została zaktualizowana."; -App::$strings["Privacy Groups App"] = "Aplikacja Grupy Prywatności"; -App::$strings["Management of privacy groups"] = "Zarządzanie grupami prywatności"; -App::$strings["Privacy Groups"] = "Grupy Prywatności"; -App::$strings["Add Group"] = "Dodaj grupę"; -App::$strings["Privacy group name"] = "Nazwa grupy prywatności"; -App::$strings["Members are visible to other channels"] = "Członkowie są widoczni dla innych kanałów"; -App::$strings["Privacy group removed."] = "Grupa prywatności została usunięta."; -App::$strings["Unable to remove privacy group."] = "Nie można usunąć grupy prywatności."; -App::$strings["Privacy Group: %s"] = "Grupa prywatności: %s"; -App::$strings["Privacy group name: "] = "Nazwa grupy prywatności: "; -App::$strings["Delete Group"] = "Usuń grupę"; -App::$strings["Group members"] = "Członkowie grupy"; -App::$strings["Not in this group"] = "Nie w tej grupie"; -App::$strings["Click a channel to toggle membership"] = "Kliknij kanał, aby przełączyć członkostwo"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta."; -App::$strings["Remove This Channel"] = "Usuń ten kanał"; -App::$strings["WARNING: "] = "UWAGA: "; -App::$strings["This channel will be completely removed from the network. "] = "Ten kanał zostanie całkowicie usunięty z sieci. "; -App::$strings["This action is permanent and can not be undone!"] = "Ta akcja jest bezpowrotna i nie można jej cofnąć!"; -App::$strings["Please enter your password for verification:"] = "Wprowadź hasło do weryfikacji:"; -App::$strings["Remove Channel"] = "Usuń kanał"; -App::$strings["App installed."] = "Aplikacja została zainstalowana."; -App::$strings["Malformed app."] = "Nieprawidłowa aplikacja."; -App::$strings["Embed code"] = "Osadzony kod"; -App::$strings["Edit App"] = "Edutuj aplikację"; -App::$strings["Create App"] = "Utwórz aplikację"; -App::$strings["Name of app"] = "Nazwa aplikacji"; -App::$strings["Location (URL) of app"] = "Lokalizacja (URL) aplikacji"; -App::$strings["Photo icon URL"] = "Adres URL ikony zdjęcia"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pikseli - opcjonalnie"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorie (opcjonalne, lista rozdzielana przecinkami)"; -App::$strings["Version ID"] = "ID wesji"; -App::$strings["Price of app"] = "Cena aplikacji"; -App::$strings["Location (URL) to purchase app"] = "Lokalizacja (URL) do zakupu aplikacji"; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta."; -App::$strings["Reserved nickname. Please choose another."] = "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie."; -App::$strings["Change channel nickname/address"] = "Zmień krótką nazwę/adres kanału"; -App::$strings["Any/all connections on other networks will be lost!"] = "Wszystkie połączenia w innych sieciach zostaną utracone!"; -App::$strings["New channel address"] = "Nowy adres kanału"; -App::$strings["Rename Channel"] = "Zmień nazwę kanału"; -App::$strings["Name is required"] = "Wymaga się podania nazwy"; -App::$strings["Key and Secret are required"] = "Wymaga się wprowadzenia klucza i sekretu"; -App::$strings["OAuth Apps Manager App"] = "Aplikacja OAuth Apps Manager"; -App::$strings["OAuth authentication tokens for mobile and remote apps"] = "Tokeny uwierzytelniania OAuth dla aplikacji mobilnych i zdalnych"; -App::$strings["Add application"] = "Dodaj aplikację"; -App::$strings["Name of application"] = "Nazwa aplikacji"; -App::$strings["Consumer Key"] = "Klucz konsumenta"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20"; -App::$strings["Consumer Secret"] = "Hasło konsumenta"; -App::$strings["Redirect"] = "Przekierowanie"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego wymaga"; -App::$strings["Icon url"] = "URL ikony"; -App::$strings["Optional"] = "Opcjonalne"; -App::$strings["Application not found."] = "Aplikacji nie znaleziono."; -App::$strings["Connected OAuth Apps"] = "Połączone aplikacje OAuth"; -App::$strings["Client key starts with"] = "Klucz klienta zaczyna się od"; -App::$strings["No name"] = "Brak nazwy"; -App::$strings["Remove authorization"] = "Usuń autoryzację"; -App::$strings["Token verification failed."] = "Weryfikacja tokena nie powiodła się."; -App::$strings["Email verification resent"] = "Weryfikacja adresu e-mail została wysłana ponownie"; -App::$strings["Unable to resend email verification message."] = "Nie można ponownie wysłać weryfikacyjną wiadomość e-mail."; -App::$strings["Public access denied."] = "Odmowa dostępu publicznego."; -App::$strings["Search"] = "Szukaj"; -App::$strings["Items tagged with: %s"] = "Elementy oznaczone jako: %s"; -App::$strings["Search results for: %s"] = "Wyniki wyszukiwania dla: %s"; -App::$strings["Comment approved"] = "Komentarz został zatwierdzony"; -App::$strings["Comment deleted"] = "Komentarz został usunięty"; -App::$strings["Edit post"] = "Edytuj wpis"; -App::$strings["Unable to find your hub."] = "Nie można znaleźć Twojego serwisu."; -App::$strings["Post successful."] = "Opublikowanie powiodło się."; -App::$strings["Channel not found."] = "Nie znaleziono kanału."; -App::$strings["toggle full screen mode"] = "przełącz na tryb pełnego ekranu"; -App::$strings["Post not found."] = "Nie znaleziono wpisu."; -App::$strings["post"] = "wpis"; -App::$strings["comment"] = "komentarz"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s oznaczono jako %3\$s %2\$s w %4\$s"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Ostrzeżenie: wersje baz danych różnią się o %1\$d aktualizacji."; -App::$strings["Import completed"] = "Zakończono importowanie"; -App::$strings["Import Items"] = "Importuj elementy"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku eksportu."; -App::$strings["Continue"] = "Kontynuj"; -App::$strings["Premium Channel Setup"] = "Konfiguracja kanału Premium"; -App::$strings["Enable premium channel connection restrictions"] = "Włącz ograniczenia połączeń z kanałem premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Podaj swoje ograniczenia lub warunki, takie jak pokwitowanie PayPal, wytyczne dotyczące użytkowania itp."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub potwierdzenia następujących warunków:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potencjalne połączenia zobaczą następujący tekst przed kontynuowaniem:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej stronie."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Właściciel kanału nie przekazał żadnych szczegółowych instrukcji.)"; -App::$strings["Restricted or Premium Channel"] = "Kanał z ograniczeniami lub premium"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Utworzono %1$.0f z %2$.0f dozwolonych kanałów."; -App::$strings["Your real name is recommended."] = "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa lotnicza\""; -App::$strings["This will be used to create a unique network address (like an email address)."] = "Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego do adresu e-mail)."; -App::$strings["Allowed characters are a-z 0-9, - and _"] = "Dozwolone znaki, to a-z 0-9, - oraz _"; -App::$strings["Channel name"] = "Nazwa kanału"; -App::$strings["Choose a short nickname"] = "Wybierz krótki pseudonim"; -App::$strings["Channel role and privacy"] = "Rola kanału i prywatność"; -App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i wymaganiami dotyczącymi prywatności."; -App::$strings["Read more about channel permission roles"] = "Przeczytaj więcej o rolach uprawnień do kanału"; -App::$strings["Create a Channel"] = "Utwórz kanał"; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Kanał to unikalna tożsamość sieciowa. Może reprezentować osobę (profil sieci społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał informacyjny i wiele innych rzeczy."; -App::$strings["or import an existing channel from another location."] = "lub zaimportuj istniejący kanał z innej lokalizacji."; -App::$strings["Validate"] = "Zalegalizuj"; -App::$strings["Available Apps"] = "Dostępne aplikacje"; -App::$strings["Installed Apps"] = "Zainstalowane aplikacje"; -App::$strings["Manage Apps"] = "Zarządzaj aplikacjami"; -App::$strings["Create Custom App"] = "Utwórz własną aplikację"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta."; -App::$strings["Remove This Account"] = "Usuń to konto"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. "; -App::$strings["Remove Account"] = "Usuń konto"; -App::$strings["Deprecated!"] = "Przestarzałe!"; -App::$strings["Item not found."] = "Nie znaleziono elementu."; -App::$strings["File not found."] = "Nie znaleziono pliku."; -App::$strings["Permission Denied."] = "Odmowa dostępu."; -App::$strings["Edit file permissions"] = "Edytuj uprawnienia do pliku"; -App::$strings["Permissions"] = "Uprawnienia"; -App::$strings["Set/edit permissions"] = "Ustaw/edytuj uprawnienia"; -App::$strings["Include all files and sub folders"] = "Uwzględnij wszystkie pliki i podfoldery"; -App::$strings["Return to file list"] = "Wróć do listy plików"; -App::$strings["Copy/paste this code to attach file to a post"] = "Skopiuj/wklej ten kod, aby dołączyć plik do wpisu"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Skopiuj/wklej ten adres URL, aby połączyć plik ze strony internetowej"; -App::$strings["Share this file"] = "Udostępnij ten plik"; -App::$strings["Show URL to this file"] = "Pokaż adres URL do tego pliku"; -App::$strings["Show in your contacts shared folder"] = "Pokaż w folderze udostępnionym kontaktów"; -App::$strings["Item not found"] = "Nie znaleziono elementu"; -App::$strings["Insert web link"] = "Wstaw link internetowy"; -App::$strings["Title (optional)"] = "Tytuł (opcjonalnie)"; -App::$strings["Edit Card"] = "Edytuj kartę"; -App::$strings["No connections."] = "Brak połączeń."; -App::$strings["Accepts"] = "Akceptacje"; -App::$strings["Comments"] = "Komentarze"; -App::$strings["Stream items"] = "Elementy strumienia"; -App::$strings["Wall posts"] = "Tablica wpisów"; -App::$strings["Nothing"] = "Nic"; -App::$strings["Visit %s's profile [%s]"] = "Odwiedź profil %s [%s]"; -App::$strings["View Connections"] = "Pokaż połączenia"; -App::$strings["Name and Secret are required"] = "Wymagane jest ustawienie imienia i sekretu"; -App::$strings["OAuth2 Apps Manager App"] = "Aplikacja Menadżer Aplikacji OAuth2"; -App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "Tokeny uwierzytelniające OAuth2 dla aplikacji mobilnych i zdalnych"; -App::$strings["Add OAuth2 application"] = "Dodaj aplikację OAuth2"; -App::$strings["Grant Types"] = "Rodzaje dofinansowań"; -App::$strings["leave blank unless your application sepcifically requires this"] = "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga"; -App::$strings["Authorization scope"] = "Zakres uprawnień"; -App::$strings["OAuth2 Application not found."] = "Nie znaleziono aplikacji OAuth2."; -App::$strings["leave blank unless your application specifically requires this"] = "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga"; -App::$strings["Connected OAuth2 Apps"] = "Aplikacje połączeń OAuth2"; -App::$strings["Profile Unavailable."] = "Profil niedostępny."; -App::$strings["Wiki App"] = "Aplikacja Wiki"; -App::$strings["Provide a wiki for your channel"] = "Udostępnij wiki dla swojego kanału"; -App::$strings["Invalid channel"] = "Zły kanał"; -App::$strings["Error retrieving wiki"] = "Błąd podczas pobierania wiki"; -App::$strings["Error creating zip file export folder"] = "Błąd podczas tworzenia folderu eksportu pliku ZIP"; -App::$strings["Error downloading wiki: "] = "Błąd podczas pobierania wiki: "; -App::$strings["Wikis"] = "Wiki"; -App::$strings["Download"] = "Pobierz"; -App::$strings["Wiki name"] = "Nazwa wiki"; -App::$strings["Content type"] = "Rodzaj treści"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBcode"; -App::$strings["Text"] = "Text"; -App::$strings["Type"] = "Rodzaj"; -App::$strings["Any type"] = "Dowolny rodzaj"; -App::$strings["Lock content type"] = "Zablokuj rodzaj treści"; -App::$strings["Create a status post for this wiki"] = "Utwórz wpis statusu dla tego wiki"; -App::$strings["Edit Wiki Name"] = "Edytuj nazwę wiki"; -App::$strings["Wiki not found"] = "Nie znaleziono wiki"; -App::$strings["Rename page"] = "Zień nazwę strony"; -App::$strings["Error retrieving page content"] = "Błąd podczas pobierania treści strony"; -App::$strings["New page"] = "Nowa strona"; -App::$strings["Revision Comparison"] = "Porównanie wersji"; -App::$strings["Revert"] = "Odwróć"; -App::$strings["Short description of your changes (optional)"] = "Krótki opis zmian (opcjonalnie)"; -App::$strings["Source"] = "Źródło"; -App::$strings["New page name"] = "Nowa nazwa strony"; -App::$strings["Embed image from photo albums"] = "Osadź obraz z albumów fotograficznych"; -App::$strings["Embed an image from your albums"] = "Osadź obraz ze swoich albumów"; -App::$strings["OK"] = "Dobrze"; -App::$strings["Choose images to embed"] = "Wybierz zdjęcie do osadzenia"; -App::$strings["Choose an album"] = "Wybierz album"; -App::$strings["Choose a different album"] = "Wybierz inny album"; -App::$strings["Error getting album list"] = "Błąd podczas pobierania listy albumów"; -App::$strings["Error getting photo link"] = "Błąd podczas pobierania linku do zdjęcia"; -App::$strings["Error getting album"] = "Błąd podczas pobierania albumu"; -App::$strings["History"] = "Historia"; -App::$strings["Error creating wiki. Invalid name."] = "Błąd podczas tworzenia wiki. nieprawidłowa nazwa."; -App::$strings["A wiki with this name already exists."] = "Wiki o tej nazwie już istnieje."; -App::$strings["Wiki created, but error creating Home page."] = "Utworzono wiki, ale podczas tworzenia strony głównej wystąpił błąd."; -App::$strings["Error creating wiki"] = "Błąd podczas tworzenia wiki"; -App::$strings["Error updating wiki. Invalid name."] = "Błąd podczas aktualizowania wiki. Błędna nazwa."; -App::$strings["Error updating wiki"] = "Błąd podczas aktualizowania wiki"; -App::$strings["Wiki delete permission denied."] = "Odmowa pozwolenia na usunięcie Wiki."; -App::$strings["Error deleting wiki"] = "Błąd podczas usuwania wiki"; -App::$strings["New page created"] = "Utworzono nową stronę"; -App::$strings["Cannot delete Home"] = "Nie można usunąć strony głównej"; -App::$strings["Current Revision"] = "Bieżąca wersja"; -App::$strings["Selected Revision"] = "Wybrana wersja"; -App::$strings["You must be authenticated."] = "Trzeba być uwierzytelnionym."; -App::$strings["Block Name"] = "Nazwa bloku"; -App::$strings["Blocks"] = "Bloki"; -App::$strings["Block Title"] = "Tytuł bloku"; -App::$strings["Entry censored"] = "Wpis ocenzurowany"; -App::$strings["Entry uncensored"] = "Wpis nieocenzurowany"; -App::$strings["Location not found."] = "Nie znaleziono lokalizacji."; -App::$strings["Location lookup failed."] = "Wyszukiwanie lokalizacji nie powiodło się."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną."; -App::$strings["Syncing locations"] = "Synchronizuję lokalizacje"; -App::$strings["No locations found."] = "Nie znaleziono żadnych lokalizacji."; -App::$strings["Manage Channel Locations"] = "Zarządzaj lokalizacjami kanałów"; -App::$strings["Primary"] = "Podstawowy"; -App::$strings["Drop"] = "Upuść"; -App::$strings["Sync Now"] = "Synchronizuj teraz"; -App::$strings["Please wait several minutes between consecutive operations."] = "Poczekaj kilka minut między kolejnymi operacjami."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając swój kanał."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa."; -App::$strings["Away"] = "Z dala"; -App::$strings["Online"] = "On-line"; -App::$strings["Photos"] = "Zdjęcia"; -App::$strings["Files"] = "Pliki"; -App::$strings["Could not locate selected profile."] = "Nie udało się znaleźć wybranego profilu."; -App::$strings["Connection updated."] = "Zaktualizowano połączenie."; -App::$strings["Failed to update connection record."] = "Nie udało się zaktualizować zapisu połączenia."; -App::$strings["is now connected to"] = "jest teraz połączony z"; -App::$strings["Could not access address book record."] = "Nie można uzyskać dostępu do rekordu książki adresowej."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Odświeżenie nie powiodło się - kanał jest obecnie niedostępny."; -App::$strings["Unable to set address book parameters."] = "Nie można ustawić parametrów książki adresowej."; -App::$strings["Connection has been removed."] = "Połączenie zostało usunięte."; -App::$strings["View Profile"] = "Wyświetl profil"; -App::$strings["View %s's profile"] = "Wyświetl profil %s"; -App::$strings["Refresh Permissions"] = "Odśwież uprawnienia"; -App::$strings["Fetch updated permissions"] = "Pobierz zaktualizowane uprawnienia"; -App::$strings["Refresh Photo"] = "Odśwież zdjęcie"; -App::$strings["Fetch updated photo"] = "Pobierz zaktualizowane zdjęcie"; -App::$strings["Recent Activity"] = "Ostatnia aktywność"; -App::$strings["View recent posts and comments"] = "Wyświetl najnowsze wpisy i komentarze"; -App::$strings["Unblock"] = "Odblokuj"; -App::$strings["Block"] = "Zablokuj"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Zablokuj (lub odblokuj) całą komunikację z tym połączeniem"; -App::$strings["This connection is blocked!"] = "To połączenie jest zablokowane!"; -App::$strings["Unignore"] = "Przestań ignorować"; -App::$strings["Ignore"] = "Ignoruj"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignoruj (lub przywróć) całą komunikację przychodzącą z tego połączenia"; -App::$strings["This connection is ignored!"] = "To połączenie jest ignorowane!"; -App::$strings["Unarchive"] = "Przywróć z archiwum"; -App::$strings["Archive"] = "Archiwizuj"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale zachowaj zawartość"; -App::$strings["This connection is archived!"] = "To połączenie zostało zarchiwizowane!"; -App::$strings["Unhide"] = "Odkryj"; -App::$strings["Hide"] = "Ukryj"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ukryj lub odkryj to połączenie przed innymi kontaktami"; -App::$strings["This connection is hidden!"] = "To połączenie jest ukryte!"; -App::$strings["Delete this connection"] = "Usuń to połączenie"; -App::$strings["Fetch Vcard"] = "Pobierz Vcard"; -App::$strings["Fetch electronic calling card for this connection"] = "Pobierz elektroniczną kartę telefoniczną dla tego połączenia"; -App::$strings["Open Individual Permissions section by default"] = "Otwórz domyślnie sekcję Uprawnienia indywidualne"; -App::$strings["Affinity"] = "Zaprzyjaźnienie"; -App::$strings["Open Set Affinity section by default"] = "Otwieraj domyślnie sekcję Ustaw zaprzyjażnienie"; -App::$strings["Me"] = "Ja"; -App::$strings["Family"] = "Rodzina"; -App::$strings["Friends"] = "Przyjaciele"; -App::$strings["Acquaintances"] = "Znajomi"; -App::$strings["All"] = "Wszyscy"; -App::$strings["Filter"] = "Filtr"; -App::$strings["Open Custom Filter section by default"] = "Otwieraj domyślnie sekcję Filtr niestandardowy"; -App::$strings["Approve this connection"] = "Zatwierdź to połączenie"; -App::$strings["Accept connection to allow communication"] = "Zaakceptuj połączenie, aby umożliwić komunikację"; -App::$strings["Set Affinity"] = "Ustaw zaprzyjaźnienie"; -App::$strings["Set Profile"] = "Ustaw profil"; -App::$strings["Set Affinity & Profile"] = "Ustaw zaprzyjaźnienie i profil"; -App::$strings["This connection is unreachable from this location."] = "To połączenie jest nieosiągalne z tej lokalizacji."; -App::$strings["This connection may be unreachable from other channel locations."] = "To połączenie może być nieosiągalne z innych lokalizacji kanału."; -App::$strings["Location independence is not supported by their network."] = "Niezależność lokalizacji nie jest obsługiwana przez ich sieć."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie jest obsługiwana przez ich sieć."; -App::$strings["Connection: %s"] = "Połączenie: %s"; -App::$strings["Connection requests will be approved without your interaction"] = "Prośby o połączenie zostaną zatwierdzone bez Twojej interakcji"; -App::$strings["This connection's primary address is"] = "Podstawowy adres tego połączenia to"; -App::$strings["Available locations:"] = "Dostępne lokalizacje:"; -App::$strings["Connection Tools"] = "Narzędzia połączeń"; -App::$strings["Slide to adjust your degree of friendship"] = "Przesuń, aby dostosować stopień przyjaźni"; -App::$strings["Rating"] = "Ocena"; -App::$strings["Slide to adjust your rating"] = "Przesuń, aby dostosować swoją ocenę"; -App::$strings["Optionally explain your rating"] = "Ewentualnie wyjaśnij swoją ocenę"; -App::$strings["Custom Filter"] = "Własny filtr"; -App::$strings["Only import posts with this text"] = "Importuj tylko wpisy z tym tekstem"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, aby zaimportować wszystkie wpisy"; -App::$strings["Do not import posts with this text"] = "Nie importuj wpisów z tym tekstem"; -App::$strings["This information is public!"] = "Ta informacja jest publiczna!"; -App::$strings["Connection Pending Approval"] = "Połączenie oczekujące na zatwierdzenie"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego przeglądania swojego profilu."; -App::$strings["Their Settings"] = "Ich ustawienia"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają wyższy priorytet niż indywidualne ustawienia. Nie możesz tutaj zmienić tych ustawień."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone ustawienie ulegnie zmianie."; -App::$strings["Last update:"] = "Ostatnia aktualizacja:"; -App::$strings["Details"] = "Szczegóły"; -App::$strings["Email resent"] = "Wiadomość wysłana"; -App::$strings["Email resend failed"] = "Ponowne wysłanie wiadomości nie powiodło się"; -App::$strings["Verify successfull"] = "Weryfikacja powiodła się"; -App::$strings["Account successfull created"] = "Konto zostało pomyślnie utworzone"; -App::$strings["Channel successfull created"] = "Kanał został pomyślnie utworzony"; -App::$strings["Automatic channel creation failed. Please create a channel."] = "Automatyczne tworzenie kanału nie powiodło się. Utwórz kanał ręcznie."; -App::$strings["Account creation error"] = "Błąd tworzenia konta"; -App::$strings["Verify failed"] = "Weryfikacja nie powiodła się"; -App::$strings["Token verification failed"] = "Weryfikacja tokena nie powiodła się"; -App::$strings["Request not inside time frame"] = "Żądanie nie mieści się się w ramach czasowych"; -App::$strings["Identity unknown"] = "Tożsamość nieznana"; -App::$strings["dId2 mistaken"] = "nieprawidłowy dId2"; -App::$strings["Your Registration ID"] = "Twój identyfikator rejestracji"; -App::$strings["Registration verification"] = "Weryfikacja rejestracji"; -App::$strings["Hold on, you can start verification in"] = "Poczekaj. Możesz rozpocząć weryfikację za"; -App::$strings["Please remember your verification token for ID"] = "Zapamiętaj swój token weryfikacyjny dla identyfikatora"; -App::$strings["Token validity"] = "Ważność tokena"; -App::$strings["Resend"] = "Wyślij ponownie"; -App::$strings["Registration status"] = "Status rejestracji"; -App::$strings["Verification successful!"] = "Weryfikacja powiodła się!"; -App::$strings["Your login ID is"] = "Twój identyfikator logowania to"; -App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się za pomocą swojego identyfikatora logowania i podanego hasła."; -App::$strings["Registration request revoked"] = "Wniosek o rejestrację został odwołany"; -App::$strings["Sorry for any inconvience. Thank you for your response."] = "Przepraszamy za jakiekolwiek niedogodności. Dziękujemy za odpowiedź."; -App::$strings["Please enter your verification token for ID"] = "Wprowadź token weryfikacyjny dla identyfikatora"; -App::$strings["Verification token"] = "Token weryfikacyjny"; -App::$strings["ID expired"] = "Ważność identyfikatora wygasła"; -App::$strings["You will require the verification token for ID"] = "Będziesz potrzebować tokena weryfikacyjnego do identyfikatora"; -App::$strings["Unknown or expired ID"] = "Nieznany lub wygasły identyfikator"; -App::$strings["dId2 malformed"] = "źle sformułowany dId2"; -App::$strings["Image uploaded but image cropping failed."] = "Obraz został przesłany, ale przycinanie obrazu nie powiodło się."; -App::$strings["Profile Photos"] = "Zdjęcia profilowe"; -App::$strings["Image resize failed."] = "Zmiana rozmiaru obrazu nie powiodła się."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie zostanie wyświetlone od razu."; -App::$strings["Unable to process image"] = "Nie można przetworzyć obrazu"; -App::$strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się."; -App::$strings["Unable to process image."] = "Nie można przetworzyć obrazu."; -App::$strings["Photo not available."] = "Zdjęcie nie jest dostępne."; -App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. Zdjęcia profilowe dla profili alternatywnych odziedziczą uprawnienia profilu"; -App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być rozpowszechniane na innych stronach internetowych."; -App::$strings["Upload File:"] = "Przesłanie pliku:"; -App::$strings["Select a profile:"] = "Wybierz profil:"; -App::$strings["Use Photo for Profile"] = "Użyj zdjęcia do profilu"; -App::$strings["Change Profile Photo"] = "Zmień zdjęcie profilowe"; -App::$strings["Use"] = "Użyj"; -App::$strings["Upload"] = "Prześlij"; -App::$strings["Remove"] = "Usuń"; -App::$strings["Use a photo from your albums"] = "Użyj zdjęcia ze swoich albumów"; -App::$strings["Select existing photo"] = "Wybierz istniejące zdjęcie"; -App::$strings["Crop Image"] = "Przytnij zdjęcie"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalne wyświetlanie."; -App::$strings["Done Editing"] = "Zakończono edycję"; -App::$strings["Files: shared with me"] = "Pliki: udostępnione mi"; -App::$strings["NEW"] = "NOWY"; -App::$strings["Size"] = "Rozmiar"; -App::$strings["Last Modified"] = "Ostatnio zmodyfikowane"; -App::$strings["Remove all files"] = "Usuń wszystkie pliki"; -App::$strings["Remove this file"] = "Usuń ten plik"; -App::$strings["Edit Layout"] = "Edytuj układ"; -App::$strings["Create a new channel"] = "Utwórz nowy kanał"; -App::$strings["Channel Manager"] = "Menadżer kanałów"; -App::$strings["Current Channel"] = "Bieżący kanał"; -App::$strings["Switch to one of your channels by selecting it."] = "Przełącz się na jeden ze swoich kanałów, wybierając go."; -App::$strings["Default Channel"] = "Domyślny kanał"; -App::$strings["Make Default"] = "Ustaw jako domyślny"; -App::$strings["%d new messages"] = "%d nowych wiadomości"; -App::$strings["%d new introductions"] = "%d nowych wprowadzeń"; -App::$strings["Delegated Channel"] = "Deleguj kanał"; -App::$strings["Connection added."] = "Dodano połączenie."; -App::$strings["Unable to locate original post."] = "Nie można znaleźć oryginalnego wpisu."; -App::$strings["Empty post discarded."] = "Pusty wpis został odrzucony."; -App::$strings["Duplicate post suppressed."] = "Powielony wpis został wyłączony."; -App::$strings["System error. Post not saved."] = "Błąd systemu. Wpis nie został zapisany."; -App::$strings["Your comment is awaiting approval."] = "Twój komentarz oczekuje na zatwierdzenie."; -App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym poście."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Osiągnięty został limit %1$.0f wpisów najwyższego poziomu."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Osiągnięty został limit %1$.0f stron internetowych."; -App::$strings["Website:"] = "Serwis internetowy:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanał zdalny [% s] (jeszcze nieznany w tym serwisie)"; -App::$strings["Rating (this information is public)"] = "Ocena (ta informacja jest publiczna)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Ewentualnie wyjaśnij swoją ocenę (ta informacja jest publiczna)"; -App::$strings["Invalid item."] = "Nieprawidłowy element."; -App::$strings["Page not found."] = "Nie znaleziono strony."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Xchan Lookup"] = "Wyszukiwanie xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Wyszukaj xchan (lub webbie) zaczynając od: "; -App::$strings["Not found."] = "Nie znaleziono."; -App::$strings["Some blurb about what to do when you're new here"] = "Kilka uwag o tym, co robisz, gdy jesteś tu nowy"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s obserwuje %3\$s %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s przestał obserwować %3\$s %2\$s"; -App::$strings["Please login."] = "Proszę się zalogować."; -App::$strings["Edit Block"] = "Edytuj blok"; -App::$strings["webpage"] = "strona internetowa"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "układ"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "Element %s zainstalowany"; -App::$strings["%s element installation failed"] = "Instalacja elementu %s nie powiodła się"; -App::$strings["Public Hubs"] = "Węzły publiczne"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Wymienione węzły umożliwiają publiczną rejestrację w sieci \$Projectname. Wszystkie węzły w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre węzły mogą wymagać subskrypcji lub oferować warstwowe plany usług. Sam serwis może podać dodatkowe szczegóły."; -App::$strings["Hub URL"] = "Adres URL serwisu"; -App::$strings["Access Type"] = "Typ dostępu"; -App::$strings["Registration Policy"] = "Zasady rejestracji"; -App::$strings["Stats"] = "Statystyki"; -App::$strings["Software"] = "Oprogramowanie"; -App::$strings["Ratings"] = "Oceny"; -App::$strings["Rate"] = "Ocena"; -App::$strings["You must be logged in to see this page."] = "Musisz być zalogowany, aby zobaczyć tę stronę."; -App::$strings["Chatrooms App"] = "Aplikacja Czaty"; -App::$strings["Access Controlled Chatrooms"] = "Dostęp do kontrolowanych czatów"; -App::$strings["Room not found"] = "Nie znaleziono pokoju"; -App::$strings["Leave Room"] = "Opuść pokój"; -App::$strings["Delete Room"] = "Usuń pokój"; -App::$strings["I am away right now"] = "Nie ma mnie teraz"; -App::$strings["I am online"] = "Jestem dostępny"; -App::$strings["Bookmark this room"] = "Zaznacz ten pokój"; -App::$strings["Please enter a link URL:"] = "Proszę wprowadzić adres URL linku:"; -App::$strings["Encrypt text"] = "Szyfruj tekst"; -App::$strings["New Chatroom"] = "Nowy czat"; -App::$strings["Chatroom name"] = "Nazwa czatu"; -App::$strings["Expiration of chats (minutes)"] = "Wygaśnięcie czatów (minuty)"; -App::$strings["%1\$s's Chatrooms"] = "Czaty %1\$s"; -App::$strings["No chatrooms available"] = "Brak dostępnych czatów"; -App::$strings["Expiration"] = "Wygaśnięcie"; -App::$strings["min"] = "min"; -App::$strings["Channel Export App"] = "Aplikacja Eksport Kanału"; -App::$strings["Export your channel"] = "Wyeksportuj swój kanał"; -App::$strings["Export Channel"] = "Eksport Kanału"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć do zaimportowania danych do nowego serwisu, ale nie zawiera treści."; -App::$strings["Export Content"] = "Eksport Treści"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka minut."; -App::$strings["Export your posts from a given year."] = "Eksportuj swoje wpisy z danego roku."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera serwisu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2\$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)."; -App::$strings["No valid account found."] = "Nie znaleziono prawidłowego konta."; -App::$strings["Password reset request issued. Check your email."] = "Wysłano prośbę o zresetowanie hasła. Sprawdź swoją skrzynkę e-mail."; -App::$strings["Site Member (%s)"] = "Członek serwisu (%s)"; -App::$strings["Password reset requested at %s"] = "Zresetowano hasło na %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie hasła nie powiodło się."; -App::$strings["Password Reset"] = "Resetowanie hasła"; -App::$strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; -App::$strings["Your new password is"] = "Twoje nowe hasło to"; -App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; -App::$strings["click here to login"] = "kliknij tutaj aby się zalogować"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym zalogowaniu."; -App::$strings["Your password has changed at %s"] = "Twoje hasło zostało zmienione na %s"; -App::$strings["Forgot your Password?"] = "Zapomniałeś hasła?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź swoja skrzynkę e-mail, aby uzyskać dalsze instrukcje."; -App::$strings["Email Address"] = "Adres e-mail"; -App::$strings["Poll not found."] = "Nie znaleziono ankiety."; -App::$strings["Invalid response."] = "Nieprawidłowa odpowiedź."; -App::$strings["Response submitted. Updates may not appear instantly."] = "Odpowiedź przesłana. Aktualizacje mogą nie pojawiać się natychmiast."; -App::$strings["sent you a private message"] = "wysłał Ci prywatną wiadomość"; -App::$strings["added your channel"] = "dodał Twój kanał"; -App::$strings["requires approval"] = "wymaga zatwierdzenia"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[dzisiaj]"; -App::$strings["posted an event"] = "opublikował wydarzenie"; -App::$strings["shared a file with you"] = "udostępnił Ci plik"; -App::$strings["You must enable javascript for your browser to be able to view this content."] = "Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej przeglądarce."; -App::$strings["Article"] = "Artykuł"; -App::$strings["Item has been removed."] = "Element został usunięty."; -App::$strings["Accounts"] = "Konta"; -App::$strings["Blocked accounts"] = "Zablokowane konta"; -App::$strings["Expired accounts"] = "Wygasłe konta"; -App::$strings["Expiring accounts"] = "Wygasające konta"; -App::$strings["Channels"] = "Kanały"; -App::$strings["Message queues"] = "Kolejki wiadomości"; -App::$strings["Your software should be updated"] = "Twoje oprogramowanie powinno zostać zaktualizowane"; -App::$strings["Administration"] = "Administracja"; -App::$strings["Summary"] = "Podsumowanie"; -App::$strings["Registered accounts"] = "Zarejestrowane konta"; -App::$strings["Pending registrations"] = "Rejestracja oczekująca"; -App::$strings["Registered channels"] = "Zarejestrowane kanały"; -App::$strings["Active addons"] = "Aktywne dodatki"; -App::$strings["Version"] = "Wersja"; -App::$strings["Repository version (master)"] = "Wersja repozytorium (master)"; -App::$strings["Repository version (dev)"] = "Wersja repozytorium (dev)"; -App::$strings["Page owner information could not be retrieved."] = "Nie można pobrać informacji o właścicielu strony."; -App::$strings["Album not found."] = "Nie znaleziono albumu."; -App::$strings["Delete Album"] = "Usuń album"; -App::$strings["Delete Photo"] = "Usuń zdjęcie"; -App::$strings["No photos selected"] = "Nie wybrano zdjęć"; -App::$strings["Access to this item is restricted."] = "Dostęp do tego elementu jest ograniczony."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Wykorzystane miejsce na zdjęcia: %1$.2f MB z %2$.2f MB."; -App::$strings["%1$.2f MB photo storage used."] = "Wykorzystane miejsce na zdjęcia: %1$.2f MB."; -App::$strings["Upload Photos"] = "Prześlij zdjęcia"; -App::$strings["Enter an album name"] = "Wpisz nazwę albumu"; -App::$strings["or select an existing album (doubleclick)"] = "lub wybierz istniejący album (podwójne kliknięcie)"; -App::$strings["Create a status post for this upload"] = "Utwórz wpis o stanie tego przesyłania"; -App::$strings["Description (optional)"] = "Opis (opcjonalnie)"; -App::$strings["Show Newest First"] = "Pokaż najpierw najnowsze"; -App::$strings["Show Oldest First"] = "Pokaż najpierw najstarsze"; -App::$strings["View Photo"] = "Zobacz zdjęcie"; -App::$strings["Unknown"] = "Nieznane"; -App::$strings["Edit Album"] = "Edytuj album"; -App::$strings["Add Photos"] = "Dodaj zdjęcia"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tej pozycji może być ograniczony."; -App::$strings["Photo not available"] = "Zdjęcie niedostępne"; -App::$strings["Use as profile photo"] = "Użyj jako zdjęcie profilowe"; -App::$strings["Use as cover photo"] = "Użyj jako zdjęcia okładkowe"; -App::$strings["Private Photo"] = "Zdjęcie prywatne"; -App::$strings["View Full Size"] = "Zobacz pełny rozmiar"; -App::$strings["Edit photo"] = "Edytuj zdjęcie"; -App::$strings["Rotate CW (right)"] = "Obróć w prawo"; -App::$strings["Rotate CCW (left)"] = "Obróć w lewo"; -App::$strings["Move photo to album"] = "Przenieś zdjęcie do albumu"; -App::$strings["Enter a new album name"] = "Wpisz nową nazwę albumu"; -App::$strings["or select an existing one (doubleclick)"] = "lub wybierz istniejący (podwójne kliknięcie)"; -App::$strings["Add a Tag"] = "Dodaj tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Przykład: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Oznacz jako \"dla dorosłych\" w widoku albumu"; -App::$strings["I like this (toggle)"] = "Lubię to (przełącz)"; -App::$strings["I don't like this (toggle)"] = "Nie podoba mi się to (przełącz)"; -App::$strings["Please wait"] = "Proszę czekać"; -App::$strings["This is you"] = "To jesteś ty"; -App::$strings["Comment"] = "Komentarz"; -App::$strings["__ctx:title__ Likes"] = "Polubienia"; -App::$strings["__ctx:title__ Dislikes"] = "Dezaprobaty"; -App::$strings["__ctx:title__ Agree"] = "Zgoda"; -App::$strings["__ctx:title__ Disagree"] = "Sprzeciw"; -App::$strings["__ctx:title__ Abstain"] = "Wstrzymuję się"; -App::$strings["__ctx:title__ Attending"] = "Uczestniczę"; -App::$strings["__ctx:title__ Not attending"] = "Nie uczestniczę"; -App::$strings["__ctx:title__ Might attend"] = "Mogę uczestniczyć"; -App::$strings["View all"] = "Pokaż wszystkie"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Polubienie", - 1 => "Polubienia", - 2 => "Polubień", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Niepolubienie", - 1 => "Niepolubienia", - 2 => "Niepolubień", -); -App::$strings["Photo Tools"] = "Narzędzia fotograficzne"; -App::$strings["In This Photo:"] = "Na tym zdjęciu:"; -App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Polubienia"; -App::$strings["__ctx:noun__ Dislikes"] = "Niepolubienia"; -App::$strings["Close"] = "Zamknij"; -App::$strings["Recent Photos"] = "Najnowsze zdjęcia"; -App::$strings["Posts and comments"] = "Wpisy i komentarze"; -App::$strings["Only posts"] = "Tylko wpisy"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu."; -App::$strings["Search Results For:"] = "Wyniki wyszukiwania dla:"; -App::$strings["Cards App"] = "Aplikacja Karty"; -App::$strings["Create personal planning cards"] = "Twórz osobiste karty zadań"; -App::$strings["Add Card"] = "Dodaj kartę"; -App::$strings["Cards"] = "Karty"; -App::$strings["This page is available only to site members"] = "Ta strona jest dostępna tylko dla członków serwisu"; -App::$strings["Welcome"] = "Witamy"; -App::$strings["What would you like to do?"] = "Co chciałbyś zrobić?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Dodaj tę stronę do zakładek, jeśli chcesz wrócić do niej w przyszłości"; -App::$strings["Upload a profile photo"] = "Prześlij zdjęcie profilowe"; -App::$strings["Upload a cover photo"] = "Prześlij zdjęcie na okładkę"; -App::$strings["Edit your default profile"] = "Edytuj swój domyślny profil"; -App::$strings["View friend suggestions"] = "Zobacz propozycje znajomości"; -App::$strings["View the channel directory"] = "Wyświetl katalog kanałów"; -App::$strings["View/edit your channel settings"] = "Wyświetl/edytuj ustawienia swojego kanału"; -App::$strings["View the site or project documentation"] = "Wyświetl witrynę lub dokumentację projektu"; -App::$strings["Visit your channel homepage"] = "Odwiedź stronę główną swojego kanału"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana"; -App::$strings["Active"] = "Aktywny"; -App::$strings["Blocked"] = "Zablokowany"; -App::$strings["Ignored"] = "Ignorowany"; -App::$strings["Hidden"] = "Ukryty"; -App::$strings["Archived/Unreachable"] = "Zarchiwizowane/Nieosiągalne"; -App::$strings["New"] = "Nowy"; -App::$strings["Active Connections"] = "Aktywne połączenia"; -App::$strings["Show active connections"] = "Pokaż aktywne połączenia"; -App::$strings["New Connections"] = "Nowe połączenia"; -App::$strings["Show pending (new) connections"] = "Pokaż oczekujące (nowe) połączenia"; -App::$strings["Only show blocked connections"] = "Pokaż tylko zablokowane połączenia"; -App::$strings["Only show ignored connections"] = "Pokaż tylko ignorowane połączenia"; -App::$strings["Only show archived/unreachable connections"] = "Pokaż tylko zarchiwizowane/nieosiągalne połączenia"; -App::$strings["Only show hidden connections"] = "Pokaż tylko ukryte połączenia"; -App::$strings["Show all connections"] = "Pokaż wszystkie połączenia"; -App::$strings["Pending approval"] = "W oczekiwaniu na zatwierdzenie"; -App::$strings["Archived"] = "Zarchiwizowane"; -App::$strings["Not connected at this location"] = "Brak połączenia w tej lokalizacji"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Edytuj połączenie"; -App::$strings["Delete connection"] = "Usuń połączenie"; -App::$strings["Channel address"] = "Adres kanału"; -App::$strings["Network"] = "Sieć"; -App::$strings["Call"] = "Połączenie"; -App::$strings["Status"] = "Stan"; -App::$strings["Connected"] = "Połączene"; -App::$strings["Approve connection"] = "Zatwierdź połączenie"; -App::$strings["Approve"] = "Zatwierdź"; -App::$strings["Ignore connection"] = "Ignoruj połączenie"; -App::$strings["Recent activity"] = "Ostatnia aktywność"; -App::$strings["Connect"] = "Połączenie"; -App::$strings["Connect at this location"] = "Połącz w tej lokalizacji"; -App::$strings["Connections"] = "Połączenia"; -App::$strings["Search your connections"] = "Wyszukaj swoje połączenia"; -App::$strings["Connections search"] = "Wyszukiwanie połączeń"; -App::$strings["Find"] = "Znajdź"; -App::$strings["Item is not editable"] = "Elementu nie można edytować"; -App::$strings["Tag removed"] = "Tag został usunięty"; -App::$strings["Remove Item Tag"] = "Usuń znacznik elementu"; -App::$strings["Select a tag to remove: "] = "Wybierz znacznik do usunięcia: "; -App::$strings["Affinity Tool settings updated."] = "Zaktualizowano ustawienia narzędzia koligacji."; -App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = "Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym połączeniem. Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów tylko od najbliższych znajomych lub wszystkich w strumieniu."; -App::$strings["Affinity Tool App"] = "Aplikacja Narzędzie koligacji"; -App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków na stronie sieci/strumienia w procentach."; -App::$strings["Default maximum affinity level"] = "Domyślny maksymalny poziom więzi"; -App::$strings["0-99 default 99"] = "0-99, domyślnie 99"; -App::$strings["Default minimum affinity level"] = "Domyślny minimalny poziom więzi"; -App::$strings["0-99 - default 0"] = "0-99, domyślnie 0"; -App::$strings["Persistent affinity levels"] = "Trwałe poziomy więzi"; -App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości domyślnych po ponownym załadowaniu strony"; -App::$strings["Affinity Tool Settings"] = "Ustawienia Narzędzia Zaprzyjaźnienia"; -App::$strings["No channel."] = "Brak kanału."; -App::$strings["No connections in common."] = "Brak wspólnych połączeń."; -App::$strings["View Common Connections"] = "Wyświetl typowe połączenia"; -App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Powtórzony %2\$s %1\$s"; -App::$strings["Post repeated"] = "Wpis powtórzony"; -App::$strings["Page link"] = "Link do strony"; -App::$strings["Edit Webpage"] = "Edytuj stronę internetową"; -App::$strings["vcard"] = "vcard"; -App::$strings["Edit Article"] = "Edytuj artykuł"; -App::$strings["Authentication failed."] = "Uwierzytelnianie nie powiodło się."; -App::$strings["Remote Authentication"] = "Zdalne uwierzytelnianie"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Wpisz adres swojego kanału (np. kanał@example.com)"; -App::$strings["Authenticate"] = "Uwierzytelnianie"; -App::$strings["Item not available."] = "Element nie jest dostępny."; -App::$strings["This setting requires special processing and editing has been blocked."] = "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana."; -App::$strings["Configuration Editor"] = "Edytor konfiguracji"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie wiesz, jak prawidłowo korzystać z tej funkcji."; -App::$strings["Random Channel App"] = "Aplikacja Losowy kanał"; -App::$strings["Visit a random channel in the \$Projectname network"] = "Odwiedź losowy kanał w sieci \$Projectname"; -App::$strings["Theme settings updated."] = "Zaktualizowano ustawienia motywu."; -App::$strings["No themes found."] = "Nie znaleziono motywów."; -App::$strings["Disable"] = "Wyłącz"; -App::$strings["Enable"] = "Włącz"; -App::$strings["Screenshot"] = "Zrzut ekranu"; -App::$strings["Themes"] = "Motywy"; -App::$strings["Toggle"] = "Przełącz"; -App::$strings["Settings"] = "Ustawienia"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Opiekun: "; -App::$strings["[Experimental]"] = "[Eksperymentalne]"; -App::$strings["[Unsupported]"] = "[Nieobsługiwane]"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z natury niebezpieczne."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących serwisów:"; -App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone treści z tego serwisu są jawnie zablokowane."; -App::$strings["Security"] = "Bezpieczeństwo"; -App::$strings["Block public"] = "Zablokuj publiczny dostęp"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony."; -App::$strings["Provide a cloud root directory"] = "Podaj katalog główny w chmurze"; -App::$strings["The cloud root directory lists all channel names which provide public files"] = "Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają pliki publiczne"; -App::$strings["Show total disk space available to cloud uploads"] = "Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury"; -App::$strings["Set \"Transport Security\" HTTP header"] = "Ustaw nagłówek HTTP \"Transport Security\""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Ustaw nagłówek HTTP \"Content Security Policy\""; -App::$strings["Allowed email domains"] = "Dozwolone domeny e-mail"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na dowolne domeny"; -App::$strings["Not allowed email domains"] = "Niedozwolone domeny e-mail"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś dozwolone domeny."; -App::$strings["Allow communications only from these sites"] = "Zezwalaj na komunikację tylko z tych serwisów"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Jeden serwis w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z każdym serwisem"; -App::$strings["Block communications from these sites"] = "Blokuj komunikację z tych serwisów"; -App::$strings["Allow communications only from these channels"] = "Zezwalaj na komunikację tylko z tych kanałów"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał"; -App::$strings["Block communications from these channels"] = "Blokuj komunikację z tych kanałów"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków ."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Zezwalaj na niefiltrowaną osadzony kod HTML tylko z tych domen"; -App::$strings["One site per line. By default embedded content is filtered."] = "Jedna witryna w wierszu. Domyślnie, treść osadzona jest filtrowana."; -App::$strings["Block embedded HTML from these domains"] = "Zablokuj osadzony kod HTML z tych domen"; -App::$strings["Allow SVG thumbnails in file browser"] = "Zezwalaj na miniatury SVG w przeglądarce plików"; -App::$strings["WARNING: SVG images may contain malicious code."] = "OSTRZEŻENIE: obrazy SVG mogą zawierać złośliwy kod."; -App::$strings["Allow embedded (inline) PDF files"] = "Zezwalaj na osadzone (w tekście) pliki PDF"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s konto jest zablokowane/odblokowane", - 1 => "%s konta są zablokowane/odblokowane", - 2 => "%s kont jest zablokowanych/odblokowanych", -); -App::$strings["%s account deleted"] = array( - 0 => "%s konto jest usunięte", - 1 => "%s konta są usunięte", - 2 => "%s kont jest usuniętych", -); -App::$strings["Account not found"] = "Konto nie znalezione"; -App::$strings["Account '%s' deleted"] = "Usunięto konto '%s'"; -App::$strings["Account '%s' blocked"] = "Konto '%s' zostało zablokowane"; -App::$strings["Account '%s' unblocked"] = "Konto '%s' zostało odblokowane"; -App::$strings["Unverified"] = "Niesprawdzony"; -App::$strings["Expired"] = "Przedawniony"; -App::$strings["Show verified registrations"] = "Pokaż zweryfikowane rejestracje"; -App::$strings["Show all registrations"] = "Pokaż wszystkie rejestracje"; -App::$strings["Select toggle"] = "Wybierz przełącznik"; -App::$strings["Deny selected"] = "Odrzuć wybrane"; -App::$strings["Approve selected"] = "Zatwierdź wybrane"; -App::$strings["All registrations"] = "Wszystkie rejestracje"; -App::$strings["Verified registrations waiting for approval"] = "Zweryfikowane rejestracje czekają na zatwierdzenie"; -App::$strings["Request date"] = "Data wniosku"; -App::$strings["Requests"] = "Wnioski"; -App::$strings["No registrations available"] = "Brak dostępnych wniosków"; -App::$strings["No verified registrations available"] = "Brak dostępnych zweryfikowanych wniosków"; -App::$strings["Verified"] = "Zweryfikowane"; -App::$strings["Not yet verified"] = "Jeszcze nie zweryfikowane"; -App::$strings["ID"] = "ID"; -App::$strings["All channels"] = "Wszystkie kanały"; -App::$strings["Register date"] = "Data rejestracji"; -App::$strings["Last login"] = "Ostatnie logowanie"; -App::$strings["Expires"] = "Wygasa"; -App::$strings["Service class"] = "Klasa usługi"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; -App::$strings["Message"] = "Wiadowmość"; -App::$strings["Off"] = "Wył."; -App::$strings["On"] = "Wł."; -App::$strings["Lock feature %s"] = "Blokuj możliwość %s"; -App::$strings["Manage Additional Features"] = "Zarządzaj dodatkowymi możliwościami"; -App::$strings["Queue Statistics"] = "Statystyki kolejki"; -App::$strings["Total Entries"] = "Ogółem wpisów"; -App::$strings["Priority"] = "Priorytet"; -App::$strings["Destination URL"] = "Docelowy URL"; -App::$strings["Mark hub permanently offline"] = "Oznacz serwis na stałe w trybie offline"; -App::$strings["Empty queue for this hub"] = "Pusta kolejka dla tego serwisu"; -App::$strings["Last known contact"] = "Ostatni znany kontakt"; -App::$strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako pomyślna"; -App::$strings["Verification of update %s failed. Check system logs."] = "Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki systemowe."; -App::$strings["Update %s was successfully applied."] = "Aktualizacja %s została pomyślnie zastosowana."; -App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = "Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało."; -App::$strings["Update %s does not contain a verification function."] = "Aktualizacja %s nie zawiera funkcji weryfikacji."; -App::$strings["Update function %s could not be found."] = "Nie można znaleźć funkcji aktualizacji %s."; -App::$strings["Executing update procedure %s failed. Check system logs."] = "Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki systemowe."; -App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało."; -App::$strings["Failed Updates"] = "Nieudane aktualizacje"; -App::$strings["Mark success (if update was manually applied)"] = "Oznacz sukces (jeśli aktualizacja została wykonana ręcznie)"; -App::$strings["Attempt to verify this update if a verification procedure exists"] = "Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji"; -App::$strings["Attempt to execute this update step automatically"] = "Spróbuj automatycznie wykonać ten krok aktualizacji"; -App::$strings["No failed updates."] = "Nie ma nieudanych aktualizacji."; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanał jest ocenzurowany/nieocenzurowany", - 1 => "%s kanały są ocenzurowane/nieocenzurowane", - 2 => "%s kanałów jest ocenzurowanych/nieocenzurowanych", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Kod %s kanału jest dozwolony /niedozwolony", - 1 => "Kod %s kanałów jest dozwolony/niedozwolony", - 2 => "Kod %s kanałów jest dozwolony/niedozwolony", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanał został usunięty", - 1 => "%s kanały zostały usunięte", - 2 => "%s kanałów został usuniętych", -); -App::$strings["Channel not found"] = "Kanał nie został znaleziony"; -App::$strings["Channel '%s' deleted"] = "Kanał '%s' został usunięty"; -App::$strings["Channel '%s' censored"] = "Kanał '%s' został ocenzurowany"; -App::$strings["Channel '%s' uncensored"] = "Kanał '%s' jest nieocenzurowany"; -App::$strings["Channel '%s' code allowed"] = "Dozwolony kod kanału '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Niedozwolony kod kanału '%s'"; -App::$strings["select all"] = "wybierz wszystkie"; -App::$strings["Censor"] = "Cezoruj"; -App::$strings["Uncensor"] = "Usuń cenzurę"; -App::$strings["Allow Code"] = "Zezwalaj na kod"; -App::$strings["Disallow Code"] = "Nie zezwalaj na kod"; -App::$strings["Channel"] = "Kanał"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; -App::$strings["Log settings updated."] = "Zaktualizowano ustawienia dziennika."; -App::$strings["Logs"] = "Logi"; -App::$strings["Clear"] = "Wyczyść"; -App::$strings["Debugging"] = "Debugowanie"; -App::$strings["Log file"] = "Plik dziennika"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego serwera WWW."; -App::$strings["Log level"] = "Poziom rejestrowania zdarzeń"; -App::$strings["Password changed for account %d."] = "Hasło zostało zmienione do konta%d."; -App::$strings["Account settings updated."] = "Zaktualizowano ustawienia konta."; -App::$strings["Account not found."] = "Konto nie zostało znalezione."; -App::$strings["Account Edit"] = "Edycja konta"; -App::$strings["New Password"] = "Nowe hasło"; -App::$strings["New Password again"] = "Powtórz nowe hasło"; -App::$strings["Account language (for emails)"] = "Język konta (dla wiadomości e-mail)"; -App::$strings["Plugin %s disabled."] = "Wtyczka %s jest wyłączona."; -App::$strings["Plugin %s enabled."] = "Wtyczka %s jest włączona."; -App::$strings["Addons"] = "Dodatki"; -App::$strings["Minimum project version: "] = "Minimalna wersja projektu: "; -App::$strings["Maximum project version: "] = "Maksymalna wersja projektu: "; -App::$strings["Minimum PHP version: "] = "Minimalna wersja PHP: "; -App::$strings["Compatible Server Roles: "] = "Zgodne role serwera: "; -App::$strings["Requires: "] = "Wymaga: "; -App::$strings["Disabled - version incompatibility"] = "Wyłączone - niezgodność wersji"; -App::$strings["Enter the public git repository URL of the addon repo."] = "Wprowadź adres URL publicznego repozytorium Git dodatków."; -App::$strings["Addon repo git URL"] = "Adres URL repozytorium Git dodatków"; -App::$strings["Custom repo name"] = "Własna nazwa repozytorium"; -App::$strings["(optional)"] = "(opcjonalnie)"; -App::$strings["Download Addon Repo"] = "Pobierz repozytorium dodatków"; -App::$strings["Install new repo"] = "Zainstaluj nowe repozytorium"; -App::$strings["Install"] = "Zainstaluj"; -App::$strings["Manage Repos"] = "Zarządzaj repozytoriami"; -App::$strings["Installed Addon Repositories"] = "Zainstalowane repozytoria dodatków"; -App::$strings["Install a New Addon Repository"] = "Zainstaluj nowe repozytorium dodatków"; -App::$strings["Switch branch"] = "Przełącz gałąź"; -App::$strings["Invalid input"] = "Nieprawidłowe dane"; -App::$strings["Errors"] = "Błędy"; -App::$strings["Site settings updated."] = "Zaktualizowano ustawienia serwisu."; -App::$strings["Default"] = "Domyślnie"; -App::$strings["%s - (Incompatible)"] = "%s - (niekompatybilne)"; -App::$strings["mobile"] = "urządzenie przenośne"; -App::$strings["experimental"] = "eksperymentalne"; -App::$strings["unsupported"] = "nieobsługiwane"; -App::$strings["Yes - with approval"] = "Tak - za zgodą"; -App::$strings["My site is not a public server"] = "Mój serwis nie jest serwerem publicznym"; -App::$strings["My site has paid access only"] = "Mój serwis ma tylko płatny dostęp"; -App::$strings["My site has free access only"] = "Mój serwis ma tylko bezpłatny dostęp"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mój serwis oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami"; -App::$strings["Default permission role for new accounts"] = "Domyślna rola uprawnień dla nowych kont"; -App::$strings["This role will be used for the first channel created after registration."] = "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji."; -App::$strings["Minute(s)"] = "Minuta/Minuty"; -App::$strings["Hour(s)"] = "Godzin/Godziny"; -App::$strings["Day(s)"] = "Dzień.Dni"; -App::$strings["Week(s)"] = "Tydzień/Tygodnie"; -App::$strings["Month(s)"] = "Miesiąc/Miesiące"; -App::$strings["Year(s)"] = "Rok/Lata"; -App::$strings["Register verification delay"] = "Zarejestruj opóźnioną weryfikację"; -App::$strings["Time to wait before a registration can be verified"] = "Czas oczekiwania na weryfikację rejestracji"; -App::$strings["duration up from now"] = "czas oczekiwania od teraz"; -App::$strings["Register verification expiration time"] = "Zarejestruj wygasłą weryfikację"; -App::$strings["Time before an unverified registration will expire"] = "Czas do wygaśnięcia niezweryfikowanej rejestracji"; -App::$strings["Site"] = "Witryna"; -App::$strings["Registration"] = "Rejestracja"; -App::$strings["File upload"] = "Udostępnianie pliku"; -App::$strings["Policies"] = "Zasady"; -App::$strings["Advanced"] = "Zaawansowane"; -App::$strings["Site name"] = "Nazwa witryny internetowej"; -App::$strings["Banner/Logo"] = "Baner/Logo"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Dozwolony jest niefiltrowany kod HTML/CSS /JS"; -App::$strings["Administrator Information"] = "Informacje o administratorze"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informacje kontaktowe dla administratorów serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; -App::$strings["Site Information"] = "Informacje o serwisie"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Publicznie widoczny opis tego serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; -App::$strings["System language"] = "Język systemu"; -App::$strings["System theme"] = "Motyw systemu"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - zmień ustawienia motywu"; -App::$strings["Allow Feeds as Connections"] = "Zezwalaj na kanały jako połączenia"; -App::$strings["(Heavy system resource usage)"] = "(Duże zużycie zasobów systemowych)"; -App::$strings["Maximum image size"] = "Maksymalny rozmiar obrazu"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza brak ograniczeń."; -App::$strings["Minimum age"] = "Minimalny wiek"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten serwis?"; -App::$strings["This is displayed on the public server site list."] = "Jest to wyświetlane na liście witryn publicznych serwerów."; -App::$strings["Register text"] = "Tekst rejestracyjny"; -App::$strings["This text will be displayed prominently at the registration page"] = "Ten tekst będzie widoczny w widocznym miejscu na stronie rejestracji"; -App::$strings["Does this site allow new member registration?"] = "Czy ta witryna umożliwia rejestrację nowych członków?"; -App::$strings["Configure the registration open days/hours"] = "Skonfiguruj dni i godziny otwarte rejestracji"; -App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na dobę i 7 dni w tygodniu (domyślne ustawienie)"; -App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do myślnikiem '-'. Przykład: 1:800-1200"; -App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: 1:900-1700 2:900-1700"; -App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: 1:800-1200,1300-1700 lub 1-2,4-5:900-1700"; -App::$strings["Advanced examples:"] = "Zaawansowane przykłady:"; -App::$strings["or"] = "lub"; -App::$strings["Check your configuration"] = "Sprawdź swoją konfigurację"; -App::$strings["Max account registrations per day"] = "Maksymalna liczba rejestracji kont dziennie"; -App::$strings["Unlimited if zero or no value - default 50"] = "Nieograniczony, jeśli zero lub brak wartości - domyślnie 50"; -App::$strings["Max account registrations from same IP"] = "Maksymalna liczba rejestracji kont z tego samego adresu IP"; -App::$strings["Unlimited if zero or no value - default 3"] = "Nieograniczona, jeśli zero lub brak wartości - domyślnie 3"; -App::$strings["Auto channel create"] = "Automatyczne tworzenie kanałów"; -App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas procesu rejestracji"; -App::$strings["Require invite code"] = "Wymagany jest kodu zaproszenia"; -App::$strings["Allow invite code"] = "Zezwól na kod zaproszenia"; -App::$strings["Require email address"] = "Wymagany jest adres e-mail"; -App::$strings["The provided email address will be verified (recommended)"] = "Podany adres e-mail zostanie zweryfikowany (zalecane)"; -App::$strings["Abandon account after x days"] = "Konto porzucone po x dniach"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz logowania)"; -App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home.html', aby dołączyć plik."; -App::$strings["Preserve site homepage URL"] = "Zachowaj adres URL strony głównej serwisu"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Przedstaw stronę główną serwisu w ramce w oryginalnej lokalizacji zamiast przekierowywania"; -App::$strings["Allowed friend domains"] = "Dozwolone domeny znajomych"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny"; -App::$strings["Force publish"] = "Wymuś publikację"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili założonych w tym serwisie."; -App::$strings["Import Public Streams"] = "Importuj strumienie publiczne"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych serwisów. Ostrzeżenie: ta zawartość jest niemoderowana."; -App::$strings["Site only Public Streams"] = "W serwisie tylko strumienie publiczne"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, jeśli importowane strumienie publiczne są wyłączone."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Zezwól każdemu w internecie na dostęp do strumieni publicznych"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość jest niemoderowana."; -App::$strings["Only import Public stream posts with this text"] = "Importuj tylko wpisy ze strumienia publicznego z tym tekstem"; -App::$strings["Do not import Public stream posts with this text"] = "Nie importuj wpisów ze strumienia publicznego z tym tekstem"; -App::$strings["Login on Homepage"] = "Zaloguj się na stronie głównej"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Przedstaw formularz logowania odwiedzającym na stronie głównej, jeśli nie skonfigurowano żadnych innych treści."; -App::$strings["Enable context help"] = "Włącz pomoc kontekstową"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku pomocy."; -App::$strings["Reply-to email address for system generated email."] = "Zwrotny adres e-mail dla wiadomości wygenerowanych przez system."; -App::$strings["Sender (From) email address for system generated email."] = "Adres e-mail nadawcy (Od) wiadomości e-mail wygenerowanej przez system."; -App::$strings["Name of email sender for system generated email."] = "Nazwa nadawcy wiadomości e-mail wygenerowanej przez system."; -App::$strings["Directory Server URL"] = "Adres URL serwera katalogowego"; -App::$strings["Default directory server"] = "Domyślny serwer katalogowy"; -App::$strings["Enable SSE Notifications"] = "Włącz powiadomienia SSE"; -App::$strings["If disabled, traditional polling will be used. Warning: this setting might not be suited for shared hosting"] = "Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to ustawienie może nie być odpowiednie dla hostingu współdzielonego"; -App::$strings["Proxy user"] = "Użytkownik proxy"; -App::$strings["Proxy URL"] = "URL proxy"; -App::$strings["Network timeout"] = "Limit czasu sieci"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)."; -App::$strings["Delivery interval"] = "Interwał dostaw"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów prywatnych. 0-1 dla dużych serwerów dedykowanych."; -App::$strings["Deliveries per process"] = "Liczba dostaw na proces"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5."; -App::$strings["Queue Threshold"] = "Próg kolejki"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej pozycji niż ta liczba."; -App::$strings["Poll interval"] = "Okres odpytywania"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. Jeśli 0, użyty będzie interwał dostawy."; -App::$strings["Path to ImageMagick convert program"] = "Ścieżka do programu konwertującego ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może wystąpić wyczerpanie pamięci. Przykład: /usr/bin/convert"; -App::$strings["Maximum Load Average"] = "Maksymalne średnie obciążenie"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i odpytywania - domyślnie 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Okres ważności w dniach dla zaimportowanej treści (sieci)"; -App::$strings["0 for no expiration of imported content"] = "0 dla braku wygaśnięcia zaimportowanej treści"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta wartość dni od teraz"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych rejestrujących"; -App::$strings["Create this page first. Default is %s/register"] = "Utwórz najpierw tą stronę. Domyślnie %s/ register"; -App::$strings["Page to display after creating a new channel"] = "Strona do wyświetlenia po utworzeniu nowego kanału"; -App::$strings["Default: profiles"] = "Domyślnie: profile"; -App::$strings["Optional: site location"] = "Opcjonalnie: lokalizacja serwisu"; -App::$strings["Region or country"] = "Region lub kraj"; -App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)"; -App::$strings["New Profile Field"] = "Nowe pole profilu"; -App::$strings["Field nickname"] = "Krótka nazwa pola"; -App::$strings["System name of field"] = "Systemowa nazwa pola"; -App::$strings["Input type"] = "Typ wejścia"; -App::$strings["Field Name"] = "Nazwa Pola"; -App::$strings["Label on profile pages"] = "Etykieta na stronach profilu"; -App::$strings["Help text"] = "Tekst pomocy"; -App::$strings["Additional info (optional)"] = "Dodatkowe informacje (opcjonalnie)"; -App::$strings["Field definition not found"] = "Nie znaleziono definicji pola"; -App::$strings["Edit Profile Field"] = "Edytuj pole profilu"; -App::$strings["Profile Fields"] = "Pola profilu"; -App::$strings["Basic Profile Fields"] = "Podstawowe pola profilu"; -App::$strings["Advanced Profile Fields"] = "Zaawansowane pola profilu"; -App::$strings["(In addition to basic fields)"] = "(Oprócz podstawowych pól)"; -App::$strings["All available fields"] = "Wszystkie dostępne pola"; -App::$strings["Custom Fields"] = "Pola niestandardowe"; -App::$strings["Create Custom Field"] = "Utwórz własne pole"; -App::$strings["No more system notifications."] = "Nigdy więcej powiadomień systemowych."; -App::$strings["System Notifications"] = "Powiadomienia systemowe"; -App::$strings["Permissions denied."] = "Odmowa dostępu."; -App::$strings["Thing updated"] = "Rzecz zaktualizowana"; -App::$strings["Object store: failed"] = "Magazyn obiektów: błąd"; -App::$strings["Thing added"] = "Rzecz dodana"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Wyświetl rzecz"; -App::$strings["item not found."] = "pozycja nie została znaleziona."; -App::$strings["Edit Thing"] = "Edytuj rzecz"; -App::$strings["Select a profile"] = "Wybierz profile"; -App::$strings["Post an activity"] = "Opublikuj aktywność"; -App::$strings["Only sends to viewers of the applicable profile"] = "Wysyłane tylko do osób przeglądających odpowiedni profil"; -App::$strings["Name of thing e.g. something"] = "Nazwa rzeczy, np. coś"; -App::$strings["URL of thing (optional)"] = "URL rzeczy (opcjonalnie)"; -App::$strings["URL for photo of thing (optional)"] = "URL do zdjęcia rzeczy (opcjonalnie)"; -App::$strings["Add Thing to your Profile"] = "Dodaj rzecz do swojego profilu"; -App::$strings["Suggest Channels App"] = "Aplikacja Sugerowane Kanały"; -App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "Propozycje dotyczące kanałów w sieci \$Projectname, które mogą Cię zainteresować"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych propozycji. Jeśli to jest nowy serwis, spróbuj ponownie za 24 godziny."; -App::$strings["Ignore/Hide"] = "Ignoruj/Ukryj"; -App::$strings["Channel Suggestions"] = "Sugerowane Kanały"; -App::$strings["Email Verification Required"] = "Wymagana jest weryfikacja adresu e-mail"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na dostarczenie i jeśli nie widzisz wiadomości, sprawdź folder ze spamem."; -App::$strings["Resend Email"] = "Wyślij ponownie wiadomość e-mail"; -App::$strings["Validation token"] = "Token walidacyjny"; -App::$strings["Notes App"] = "Aplikacja Notatki"; -App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)"; -App::$strings["This channel is limited to %d tokens"] = "Ten kanał jest ograniczony do %d tokenów"; -App::$strings["Name and Password are required."] = "Wymagane są Imię i hasło."; -App::$strings["Token saved."] = "Token został zapisany."; -App::$strings["Guest Access App"] = "Aplikacja Dostęp Gościnny"; -App::$strings["Create access tokens so that non-members can access private content"] = "Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do Twoich treści prywatnych"; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane na listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych poświadczeń, aby uzyskać dostęp do treści prywatnych."; -App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak pokazano na ilustracji. Przykłady:"; -App::$strings["Guest Access Tokens"] = "Token dostępu gościa"; -App::$strings["Login Name"] = "Nazwa logowania"; -App::$strings["Login Password"] = "Hasło logowania"; -App::$strings["Expires (yyyy-mm-dd)"] = "Wygasa (rrrr-mm-dd)"; -App::$strings["Change Order of Pinned Navbar Apps"] = "Zmień kolejność aplikacji przypiętych do paska nawigacyjnego"; -App::$strings["Change Order of App Tray Apps"] = "Zmień kolejność aplikacji na pasku aplikacji"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo (u dołu) na pasku nawigacyjnym"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w zasobniku aplikacji"; -App::$strings["Mark all seen"] = "Oznacz wszystkie jako oglądnięte"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Witamy w %s"; -App::$strings["Articles App"] = "Aplikacja Artykuły"; -App::$strings["Create interactive articles"] = "Twórz interaktywne artykuły"; -App::$strings["Add Article"] = "Dodaj artykuł"; -App::$strings["Articles"] = "Artykuły"; -App::$strings["\$Projectname Server - Setup"] = "Serwer \$Projectname - Konfiguracja"; -App::$strings["Could not connect to database."] = "Nie można połączyć się z bazą danych."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Nie można połączyć się z określonym adresem URL serwisu. Możliwy problem z certyfikatem SSL lub DNS."; -App::$strings["Could not create table."] = "Nie udało się utworzyć tabeli."; -App::$strings["Your site database has been installed."] = "Baza danych serwisu została zainstalowana."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą klienta bazy danych."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Zobacz plik \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Sprawdzanie systemu"; -App::$strings["Check again"] = "Sprawdź ponownie"; -App::$strings["Database connection"] = "Połączenie z bazą danych"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Aby zainstalować \$Projectname, musimy wiedzieć, jak połączyć się z twoją bazą danych."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług hostingowych lub administratorem serwisu."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, utwórz ją przed kontynuowaniem."; -App::$strings["Database Server Name"] = "Nazwa serwera bazy danych"; -App::$strings["Default is 127.0.0.1"] = "Domyślnie, 127.0.0.1"; -App::$strings["Database Port"] = "Port bazy danych"; -App::$strings["Communication port number - use 0 for default"] = "Numer portu komunikacyjnego - dla wartości domyślnej użyj 0"; -App::$strings["Database Login Name"] = "Nazwa logowania do bazy danych"; -App::$strings["Database Login Password"] = "Hasło logowania do bazy danych"; -App::$strings["Database Name"] = "Nazwa bazy danych"; -App::$strings["Database Type"] = "Typ bazy danych"; -App::$strings["Site administrator email address"] = "Adres e-mail administratora serwisu"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać z panelu administratora sieci."; -App::$strings["Website URL"] = "Adres URL serwisu"; -App::$strings["Please use SSL (https) URL if available."] = "Użyj adresu URL z SSL (https), jeśli jest dostępny."; -App::$strings["Please select a default timezone for your website"] = "Wybierz domyślną strefę czasową dla swojego serwisu"; -App::$strings["Site settings"] = "Ustawienia serwisu"; -App::$strings["PHP version 7.1 or greater is required."] = "Wymagany jest PHP w wersji 7.1 lub wyższej."; -App::$strings["PHP version"] = "Wersja PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można uruchomić odpytywania w tle przez cron."; -App::$strings["PHP executable path"] = "Ścieżka do pliku wykonywalnego PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."; -App::$strings["Command line PHP"] = "PHP CLI"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To jest wymagane."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "PHP CLI w Twoim systemie nie ma włączonego \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Jest to konieczne,, aby dostarczanie wiadomości działało."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc przesłać co najmniej 4 MB na raz."; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. Maksymalny rozmiar jednego pliku do przesłania to %s. Możesz przesłać jednocześnie do %d plików."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Możesz dostosować te ustawienia w pliku php.ini na serwerze."; -App::$strings["PHP upload limits"] = "Limity wysyłania PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Wygeneruj klucze szyfrowania"; -App::$strings["libCurl PHP module"] = "moduł PHP libCurl"; -App::$strings["GD graphics PHP module"] = "Moduł PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL"; -App::$strings["PDO database PHP module"] = "Moduł PHP PDO"; -App::$strings["mb_string PHP module"] = "moduł PHP mb_string PHP"; -App::$strings["xml PHP module"] = "moduł PHP xml"; -App::$strings["zip PHP module"] = "moduł PHP zip"; -App::$strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest zainstalowany."; -App::$strings["exec"] = "exec"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został wyłączony w php.ini"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony w php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany."; -App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką graficzną ImageMagick, ale nie jest on zainstalowany."; -App::$strings["Error: openssl PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP openssl, ale niezainstalowany."; -App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "Błąd: w module PHP PDO brakuje sterownika dla mysql lub pgsql."; -App::$strings["Error: PDO database PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP PDO, ale nie jest zainstalowany."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Błąd: wymagany, ale niezainstalowany moduł mb_string PHP."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Błąd: moduł XML PHP wymagany dla DAV, ale nie jest zainstalowany."; -App::$strings["Error: zip PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP zip, ale nie jest on zainstalowany."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php jest możliwy do zapisu"; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \".htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w stanie zapisywać plików w Twoim folderze - nawet jeśli możesz."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Dodatkowe informacje można znaleźć w pliku install/INSTALL.txt."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania widoków internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do zapisu w tym folderze."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu tylko do %s - nie do plików szablonów (.tpl), które on zawiera."; -App::$strings["%s is writable"] = "%s jest możliwy do zapisu"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w folderze serwera WWW najwyższego poziomu"; -App::$strings["store is writable"] = "katalog store jest możliwy do zapisu"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https do tej witryny."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Jeśli masz dostęp https do swojego serwisu internetowego lub zezwalasz na połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na przykład zawierać odniesienia do obrazów na Twoim węźle."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej witrynie, ostrzegający o problemie z bezpieczeństwem."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Może to powodować problemy z użytecznością w innym serwisie (nie tylko na Twoim), więc musimy nalegać na to wymaganie."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez przeglądarki."; -App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one wymagane przez przeglądarki, ale są wymagane do komunikacji między serwerami."; -App::$strings["SSL certificate validation"] = "Walidacja certyfikatu SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. Test: "; -App::$strings["Url rewrite is working"] = "Przepisywanie adresu URL działa"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera WWW."; -App::$strings["Errors encountered creating database tables."] = "Napotkano błędy podczas tworzenia tabel bazy danych."; -App::$strings["

What next?

"] = "

Co następnie?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowanie zadania Cron."; -App::$strings["No default suggestions were found."] = "Nie znaleziono domyślnych propozycji."; -App::$strings["%d rating"] = array( - 0 => "%d ocen", - 1 => "%d oceny", - 2 => "%d ocen", -); -App::$strings["Gender: "] = "Płeć: "; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Strona główna: "; -App::$strings["Age:"] = "Wiek:"; -App::$strings["Location:"] = "Lokalizacja:"; -App::$strings["Description:"] = "Opis:"; -App::$strings["Hometown:"] = "Miasto pobytu:"; -App::$strings["About:"] = "O mnie:"; -App::$strings["Public Forum:"] = "Forum publiczne:"; -App::$strings["Keywords: "] = "Słowa kluczowe: "; -App::$strings["Don't suggest"] = "Nie sugeruj"; -App::$strings["Common connections (estimated):"] = "Popularne połączenia (oszacowanie):"; -App::$strings["Global Directory"] = "Katalog globalny"; -App::$strings["Local Directory"] = "Katalog lokalny"; -App::$strings["Finding:"] = "Odnaleziono:"; -App::$strings["next page"] = "następna strona"; -App::$strings["previous page"] = "poprzednia strona"; -App::$strings["Sort options"] = "Opcje sortowania"; -App::$strings["Alphabetic"] = "Alfabetycznie"; -App::$strings["Reverse Alphabetic"] = "Odwróć alfabetycznie"; -App::$strings["Newest to Oldest"] = "Od najnowszych do najstarszych"; -App::$strings["Oldest to Newest"] = "Od najstarszych do najnowszych"; -App::$strings["No entries (some entries may be hidden)."] = "Brak wpisów (niektóre wpisy mogą być ukryte)."; -App::$strings["Menu not found."] = "Nie znaleziono menu."; -App::$strings["Unable to create element."] = "Nie można utworzyć elementu."; -App::$strings["Unable to update menu element."] = "Nie można zaktualizować elementu menu."; -App::$strings["Unable to add menu element."] = "Nie można dodać elementu menu."; -App::$strings["Menu Item Permissions"] = "Uprawnienia do pozycji menu"; -App::$strings["(click to open/close)"] = "(kliknij, aby otworzyć/zamknąć)"; -App::$strings["Link Name"] = "Nazwa linku"; -App::$strings["Link or Submenu Target"] = "Link lub element docelowy podmenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Wprowadź adres URL linku lub wybierz nazwę menu, aby utworzyć podmenu"; -App::$strings["Use magic-auth if available"] = "Użyj magicznego uwierzytelniania, jeśli jest dostępne"; -App::$strings["Open link in new window"] = "Otwórz link w nowym oknie"; -App::$strings["Order in list"] = "Porządek listy"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Wyższe liczby spadną na koniec listy"; -App::$strings["Submit and finish"] = "Prześlij i zakończ"; -App::$strings["Submit and continue"] = "Prześlij i kontynuuj"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Cel linku"; -App::$strings["Edit menu"] = "Edytuj menu"; -App::$strings["Edit element"] = "Edytuj element"; -App::$strings["Drop element"] = "Upuść element"; -App::$strings["New element"] = "Nowy element"; -App::$strings["Edit this menu container"] = "Edytuj ten kontener menu"; -App::$strings["Add menu element"] = "Dodaj element menu"; -App::$strings["Delete this menu item"] = "Usuń tę pozycję menu"; -App::$strings["Edit this menu item"] = "Edytuj tę pozycję menu"; -App::$strings["Menu item not found."] = "Nie znaleziono elementu menu."; -App::$strings["Menu item deleted."] = "Usunięto element menu."; -App::$strings["Menu item could not be deleted."] = "Nie można usunąć elementu menu."; -App::$strings["Edit Menu Element"] = "Edytuj element menu"; -App::$strings["Link text"] = "Tekst linku"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s jest %2\$s"; -App::$strings["Mood App"] = "Aplikacja Nastrój"; -App::$strings["Set your current mood and tell your friends"] = "Ustaw swój aktualny nastrój i podziel się tym ze znajomymi"; -App::$strings["Mood"] = "Nastrój"; -App::$strings["Permission category name is required."] = "Wymaga się podania nazwy kategorii uprawnień."; -App::$strings["Permission category saved."] = "Kategoria uprawnień została zapisana."; -App::$strings["Permission Categories App"] = "Aplikacja Kategorie dostępu"; -App::$strings["Create custom connection permission limits"] = "Utwórz własne limity uprawnień do połączeń"; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub połączeń."; -App::$strings["Permission Categories"] = "Kategorie uprawnień"; -App::$strings["Permission category name"] = "Nazwa kategorii uprawnień"; -App::$strings["No ratings"] = "Brak ocen"; -App::$strings["Rating: "] = "Ocena: "; -App::$strings["Website: "] = "Serwis: "; -App::$strings["Description: "] = "Opis: "; -App::$strings["Nickname is required."] = "Pseudonim jest wymagany."; -App::$strings["Email address required"] = "Wymagany jest adres e-mail"; -App::$strings["No password provided"] = "Nie podano hasła"; -App::$strings["Passwords do not match"] = "Hasła nie pasują do siebie"; -App::$strings["Terms of Service not accepted"] = "Regulamin serwisu nie został zaakceptowany"; -App::$strings["Invitation code succesfully applied"] = "Kod zaproszenia został pomyślnie zastosowany"; -App::$strings["Invitation not in time or too late"] = "Zaproszenie nie na czas lub za późno"; -App::$strings["Invitation email failed"] = "Wygenerowanie wiadomość e-mail z zaproszeniem nie powiodło się"; -App::$strings["Invitation code failed"] = "Kod zaproszenia nie został wygenerowany"; -App::$strings["Invitations are not available"] = "Zaproszenia nie są dostępne"; -App::$strings["Email address already in use"] = "Ten adres e-mail jest już używany"; -App::$strings["Registration on this hub is by invitation only"] = "Rejestracja w tym serwisie odbywa się wyłącznie za zaproszeniem"; -App::$strings["Registration confirmation for %s"] = "Potwierdzenie rejestracji dla %s"; -App::$strings["New register request"] = "Nowa prośba o rejestrację"; -App::$strings["Error creating dId A"] = "Błąd podczas tworzenia dId A"; -App::$strings["Registration on this hub is disabled."] = "Rejestracja na tym węźle jest wyłączona."; -App::$strings["Registration on this hub is by approval only."] = "Rejestracja na tym węźle wymaga zatwierdzenia przez administratora."; -App::$strings["Register at another affiliated hub in case when prefered"] = "Zarejestruj się w innym stowarzyszonym serwisie w przypadku, gdy potrzebujesz takiego rozwiązania"; -App::$strings["Registration on this hub is by invitation only."] = "Rejestracja na tym węźle wymaga uprzedniego zaproszenia."; -App::$strings["Register at another affiliated hub"] = "Zarejestruj się w innym stowarzyszonym serwisie"; -App::$strings["Terms of Service"] = "Regulamin"; -App::$strings["I accept the %s for this website"] = "Akceptuję % s dla tego serwisu"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Mam ponad % s lat i akceptuję % s dla tego serwisu"; -App::$strings["Your email address"] = "Twój adres e-mail"; -App::$strings["Choose a password"] = "Wybierz hasło"; -App::$strings["Please re-enter your password"] = "Wprowadź ponownie swoje hasło"; -App::$strings["Please enter your invitation code"] = "Wprowadź kod zaproszenia"; -App::$strings["Your name"] = "Twoja nazwa"; -App::$strings["Real name is preferred"] = "Preferowane jest prawdziwe imię i nazwisko"; -App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału"; -App::$strings["Why do you want to join this hub?"] = "Dlaczego chcesz dołączyć do tego serwisu?"; -App::$strings["This will help to review your registration"] = "Pomoże to przejrzeć Twoją rejestrację"; -App::$strings["I have an invite code"] = "Mam kod zaproszenia"; -App::$strings["Register"] = "Zarejestruj się"; -App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont."; -App::$strings["__ctx:acl__ Profile"] = "Profil"; -App::$strings["network"] = "sieć"; -App::$strings["No feature settings configured"] = "Brak skonfigurowanych ustawień funkcji"; -App::$strings["Addon Settings"] = "Ustawienia dodatków"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Zapisz/prześlij zmiany do dowolnego panelu przed otwarciem kolejnego."; -App::$strings["Not valid email."] = "Nieprawidłowy adres e-mail."; -App::$strings["Protected email address. Cannot change to that email."] = "Chroniony adres e-mail. Nie można zmienić tego adresu e-mail."; -App::$strings["System failure storing new email. Please try again."] = "Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj ponownie."; -App::$strings["Password verification failed."] = "Weryfikacja hasła nie powiodła się."; -App::$strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Nie zmieniono hasła."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Nie zmieniono hasła."; -App::$strings["Password changed."] = "Hasło zostało zmienione."; -App::$strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbuj ponownie."; -App::$strings["Account Settings"] = "Ustawienia konta"; -App::$strings["Current Password"] = "Bieżące hasło"; -App::$strings["Enter New Password"] = "Wprowadź nowe hasło"; -App::$strings["Confirm New Password"] = "Potwierdź nowe hasło"; -App::$strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że je zmieniasz"; -App::$strings["DId2 or Email Address:"] = "DId2 lub adres e-mail:"; -App::$strings["Remove this account including all its channels"] = "Usuń to konto wraz ze wszystkimi jego kanałami"; -App::$strings["Events Settings"] = "Ustawienia wydarzeń"; -App::$strings["Profiles Settings"] = "Ustawienia profili"; -App::$strings["Editor Settings"] = "Edytor ustawień"; -App::$strings["Additional Features"] = "Dodatkowe funkcjonalności"; -App::$strings["Channel Manager Settings"] = "Ustawienia menadżera kanałów"; -App::$strings["%s - (Experimental)"] = "%s - (eksperymentalne)"; -App::$strings["Display Settings"] = "Ustawienia wyświetlania"; -App::$strings["Theme Settings"] = "Ustawienia motywu"; -App::$strings["Custom Theme Settings"] = "Ustawienia własnego motywu"; -App::$strings["Content Settings"] = "Ustawienia treści"; -App::$strings["Display Theme:"] = "Wyświetl motyw:"; -App::$strings["Select scheme"] = "Wybierz schemat"; -App::$strings["Preload images before rendering the page"] = "Przeładuj obrazy przed renderowaniem strony"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Subiektywny czas ładowania strony będzie dłuższy, ale strona będzie gotowa po wyświetleniu"; -App::$strings["Enable user zoom on mobile devices"] = "Włącz zoom użytkownika na urządzeniach mobilnych"; -App::$strings["Update browser every xx seconds"] = "Aktualizuj przeglądarkę co xx sekund"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Co najmniej 10 sekund, nie maksimum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maksymalna liczba rozmów do załadowania w dowolnym momencie:"; -App::$strings["Maximum of 30 items"] = "Maksymalnie 30 pozycji"; -App::$strings["Show emoticons (smilies) as images"] = "Pokaż emotikony (uśmieszki) jako obrazy"; -App::$strings["Provide channel menu in navigation bar"] = "Podaj menu kanału na pasku nawigacji"; -App::$strings["Default: channel menu located in app menu"] = "Domyślnie: menu kanału znajduje się w menu aplikacji"; -App::$strings["Link post titles to source"] = "Połącz tytuły wpisów ze źródłem"; -App::$strings["New Member Links"] = "Linki dla nowych członków"; -App::$strings["Display new member quick links menu"] = "Wyświetl menu szybkich łączy dla nowych członków"; -App::$strings["Photos Settings"] = "Ustawienia zdjęć"; -App::$strings["Nobody except yourself"] = "Nikt oprócz ciebie"; -App::$strings["Only those you specifically allow"] = "Tylko te, na które jawnie zezwalasz"; -App::$strings["Approved connections"] = "Zatwierdzone połączenia"; -App::$strings["Any connections"] = "Wszelkie połączenia"; -App::$strings["Anybody on this website"] = "Każdy w tym serwisie"; -App::$strings["Anybody in this network"] = "Każdy w tej sieci"; -App::$strings["Anybody authenticated"] = "Każda uwierzytelniona osoba"; -App::$strings["Anybody on the internet"] = "Każdy w internecie"; -App::$strings["Publish your default profile in the network directory"] = "Opublikuj swój domyślny profil w katalogu sieciowym"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego przyjaciela?"; -App::$strings["Your channel address is"] = "Twój adres kanału to"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Twoje pliki/zdjęcia są dostępne przez WebDAV pod adresem"; -App::$strings["Automatic membership approval"] = "Automatyczne zatwierdzanie członkostwa"; -App::$strings["Channel Settings"] = "Ustawienia kanału"; -App::$strings["Basic Settings"] = "Podstawowe ustawienia"; -App::$strings["Full Name:"] = "Pełna nazwa:"; -App::$strings["Email Address:"] = "Adres e-mail:"; -App::$strings["Your Timezone:"] = "Twoja strefa czasowa:"; -App::$strings["Default Post Location:"] = "Domyślna lokalizacja wpisu:"; -App::$strings["Geographical location to display on your posts"] = "Lokalizacja geograficzna do wyświetlania w Twoich wpisach"; -App::$strings["Use Browser Location:"] = "Użyj lokalizacji przeglądarki:"; -App::$strings["Adult Content"] = "Treść dla dorosłych"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz wszelkie materiały dla dorosłych albo nagość tagiem #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować"; -App::$strings["Hide my online presence"] = "Ukryj moją obecność w Internecie"; -App::$strings["Prevents displaying in your profile that you are online"] = "Zapobiega wyświetlaniu w Twoim profilu, że jesteś online"; -App::$strings["Simple Privacy Settings:"] = "Proste ustawienia prywatności:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do uprawnień w popularnych sieciach społecznościowych, ale z podwyższoną prywatnością)"; -App::$strings["Private - default private, never open or public"] = "Prywatne - domyślnie prywatne, nigdy otwarte ani publiczne"; -App::$strings["Blocked - default blocked to/from everybody"] = "Zablokowane - domyślnie zablokowane dla/od wszystkich"; -App::$strings["Allow others to tag your posts"] = "Pozwól innym oznaczać Twoje wpisy"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą wsteczną"; -App::$strings["Channel Permission Limits"] = "Limity uprawnień kanału"; -App::$strings["Expire other channel content after this many days"] = "Po tej ilości dni wygasają inne treści w kanale"; -App::$strings["0 or blank to use the website limit."] = "0 lub puste, aby użyć limitu serwisu."; -App::$strings["This website expires after %d days."] = "Ta strona wygasa po %d dniach."; -App::$strings["This website does not expire imported content."] = "Na tym serwis internetowym importowanej zawartości nie jest wygaszana."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Limit serwisu ma pierwszeństwo, jeśli jest niższy niż Twój limit."; -App::$strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do znajomych, dziennie:"; -App::$strings["May reduce spam activity"] = "Może zmniejszyć aktywność spamu"; -App::$strings["Default Privacy Group"] = "Domyślna grupa prywatności"; -App::$strings["Use my default audience setting for the type of object published"] = "Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu"; -App::$strings["Default permissions category"] = "Domyślna kategoria uprawnień"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"; -App::$strings["Useful to reduce spamming"] = "Przydatne do ograniczenia spamowania"; -App::$strings["Notification Settings"] = "Ustawienia powiadomień"; -App::$strings["By default post a status message when:"] = "Domyślnie publikuj komunikat o stanie, gdy:"; -App::$strings["accepting a friend request"] = "zaakceptowano zaproszenia do znajomych"; -App::$strings["joining a forum/community"] = "dołączono do forum/społeczności"; -App::$strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu"; -App::$strings["Send a notification email when:"] = "Wyślij e-mail z powiadomieniem, gdy:"; -App::$strings["You receive a connection request"] = "Otrzymujesz żądanie połączenia"; -App::$strings["Your connections are confirmed"] = "Twoje połączenia są potwierdzone"; -App::$strings["Someone writes on your profile wall"] = "Ktoś pisze na Twojej tablicy profilu"; -App::$strings["Someone writes a followup comment"] = "Ktoś pisze komentarz uzupełniający"; -App::$strings["You receive a private message"] = "Otrzymujesz prywatną wiadomość"; -App::$strings["You receive a friend suggestion"] = "Otrzymasz propozycję znajomości"; -App::$strings["You are tagged in a post"] = "Oznaczono Ciebie tagiem w poście"; -App::$strings["You are poked/prodded/etc. in a post"] = "Szturchnięto Ciebie w poście"; -App::$strings["Someone likes your post/comment"] = "Ktoś polubił Twój wpis/komentarz"; -App::$strings["Show visual notifications including:"] = "Pokaż powiadomienia wizualne, w tym:"; -App::$strings["Unseen stream activity"] = "Niewidoczną aktywność na strumieniu"; -App::$strings["Unseen channel activity"] = "Niewidoczną aktywność w kanale"; -App::$strings["Unseen private messages"] = "Niewidoczną wiadomości prywatne"; -App::$strings["Recommended"] = "Zalecane"; -App::$strings["Upcoming events"] = "Nadchodzące wydarzenia"; -App::$strings["Events today"] = "Wydarzenia dzisiejsze"; -App::$strings["Upcoming birthdays"] = "Nadchodzące urodziny"; -App::$strings["Not available in all themes"] = "Niedostępne we wszystkich motywach"; -App::$strings["System (personal) notifications"] = "Powiadomienia systemowe (osobiste)"; -App::$strings["System info messages"] = "Systemowe komunikaty informacyjne"; -App::$strings["System critical alerts"] = "Systemowe alerty krytyczne"; -App::$strings["New connections"] = "Nowe połączenia"; -App::$strings["System Registrations"] = "Rejestracje systemowe"; -App::$strings["Unseen shared files"] = "Niewidoczne udostępnione pliki"; -App::$strings["Unseen public stream activity"] = "Niewidoczna aktywność na publicznym strumieniu"; -App::$strings["Unseen likes and dislikes"] = "Niewidoczne polubienia i dezaprobaty"; -App::$strings["Unseen forum posts"] = "Niewidoczne wpisy na forum"; -App::$strings["Email notification hub (hostname)"] = "Serwer powiadomień e-mail (nazwa hosta)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Jeśli twój kanał jest powielany na wielu serwisach, ustaw to na preferowaną lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Pokaż w powiadomieniach nowe wpisy na tablicy oraz prywatne wiadomości i połączenia"; -App::$strings["Notify me of events this many days in advance"] = "Informuj mnie o wydarzeniach z wyprzedzeniem (w dniach)"; -App::$strings["Must be greater than 0"] = "Musi być większa od 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/typu strony"; -App::$strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w szczególnych sytuacjach"; -App::$strings["Miscellaneous Settings"] = "Różne ustawienia"; -App::$strings["Default photo upload folder"] = "Domyślny folder na przesyłane zdjęcia"; -App::$strings["%Y - current year, %m - current month"] = "%Y - bieżący rok, %m - bieżący miesiąc"; -App::$strings["Default file upload folder"] = "Domyślny folder przesyłania plików"; -App::$strings["Remove this channel."] = "Usuń ten kanał."; -App::$strings["Connections Settings"] = "Ustawienia połączeń"; -App::$strings["Calendar Settings"] = "Ustawienia kalendarza"; -App::$strings["Directory Settings"] = "Ustawienia katalogu"; -App::$strings["Max height of content (in pixels)"] = "Maksymalna wysokość pola treści (w pikselach)"; -App::$strings["Click to expand content exceeding this height"] = "Kliknij, aby rozwinąć treść przekraczającą tę wysokość"; -App::$strings["Personal menu to display in your channel pages"] = "Menu osobiste do wyświetlania na stronach Twojego kanał"; -App::$strings["Channel Home Settings"] = "Ustawienia strony głównej kanału"; -App::$strings["Stream Settings"] = "Ustawienia strumienia"; -App::$strings["Settings saved."] = "Ustawienia zapisane."; -App::$strings["Settings saved. Reload page please."] = "Ustawienia zapisane. Proszę ponownie załadować stronę."; -App::$strings["Conversation Settings"] = "Ustawienia rozmów"; -App::$strings["Remote Diagnostics App"] = "Aplikacja Zdalna Diagnostyka"; -App::$strings["Perform diagnostics on remote channels"] = "Przeprowadź diagnostykę zdalnych kanałów"; -App::$strings["Invite App"] = "Aplikacja Zaproszenie"; -App::$strings["Register is closed"] = "Rejestracja zamknięta"; -App::$strings["Note, the invitation code is valid up to"] = "Uwaga: kod zaproszenia jest ważny do"; -App::$strings["Too many recipients for one invitation (max %d)"] = "Zbyt wielu adresatów na jedno zaproszenie (maks.%d)"; -App::$strings["No recipients for this invitation"] = "Brak adresatów tego zaproszenia"; -App::$strings["(%s) : Not a valid email address"] = "(% s): Nieprawidłowy adres e-mail"; -App::$strings["(%s) : Not a real email address"] = "(%s) : To nie jest prawdziwy adres e-mail"; -App::$strings["(%s) : Not allowed email address"] = "(%s) : Niedozwolony adres e-mail"; -App::$strings["(%s) : email address already in use"] = "(%s) : Ten adres e-mail jest już używany"; -App::$strings["(%s) : Accepted email address"] = "(%s) : Zaakceptowany adres e-mail"; -App::$strings["%s : Message delivery failed."] = "%s: dostarczenie wiadomości nie powiodło się."; -App::$strings["To %s : Message delivery success."] = "To %s : Dostarczenie wiadomości powiodło się."; -App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "Wysłano %1\$d wiadomości, %2\$d błędy poczty"; -App::$strings["Invites not proposed by configuration"] = "Zaproszenia nie zostały skonfigurowane"; -App::$strings["Contact the site admin"] = "Skontaktuj się z administratorem witryny"; -App::$strings["Invites by users not enabled"] = "Zaproszenia od użytkowników nie są włączone"; -App::$strings["You have no more invitations available"] = "Nie masz więcej dostępnych zaproszeń"; -App::$strings["Not on xchan"] = "Nie na xchan"; -App::$strings["All users invitation limit exceeded."] = "Przekroczono limit zaproszeń wszystkich użytkowników."; -App::$strings["Invitation expires after"] = "Zaproszenie wygasa po"; -App::$strings["Invitation"] = "Zaproszenie"; -App::$strings["Send invitations"] = "Wyślij zaproszenia"; -App::$strings["Invitations I am using"] = "Zaproszenia, których używam"; -App::$strings["Invitations we are using"] = "Zaproszenia, z których korzystamy"; -App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych"; -App::$strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w każdym wierszu:"; -App::$strings["Your message:"] = "Twoja wiadomość:"; -App::$strings["Invite template"] = "Szablon zaproszenia"; -App::$strings["Subject:"] = "Temat:"; -App::$strings["Here you may enter personal notes to the recipient(s)"] = "Tutaj możesz wprowadzić osobiste notatki do odbiorcy/odbiorców"; -App::$strings["About this site"] = "O tym serwisie"; -App::$strings["Site Name"] = "Nazwa witryny"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["Software and Project information"] = "Informacje o oprogramowaniu i projekcie"; -App::$strings["This site is powered by \$Projectname"] = "Ta witryna jest oparta na \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące protokół Zot"; -App::$strings["Additional federated transport protocols:"] = "Dodatkowe protokoły transportu federacyjnego:"; -App::$strings["Version %s"] = "Wersja %s"; -App::$strings["Project homepage"] = "Strona główna projektu"; -App::$strings["Developer homepage"] = "Strona główna developerów"; -App::$strings["No service class restrictions found."] = "Nie znaleziono ograniczeń klasy usług."; -App::$strings["Select a bookmark folder"] = "Wybierz folder zakładek"; -App::$strings["Save Bookmark"] = "Zapisz zakładkę"; -App::$strings["URL of bookmark"] = "URL zakładki"; -App::$strings["Or enter new bookmark folder name"] = "Lub wprowadź nową nazwę folderu zakładek"; -App::$strings["Language App"] = "Aplikacja Język"; -App::$strings["Change UI language"] = "Zmień język interfejsu użytkownika"; -App::$strings["Welcome to Hubzilla!"] = "Witamy w Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "Nie masz żadnych nieoglądniętych wpisów..."; -App::$strings["Cover Photos"] = "Zdjęcia na okładkę"; -App::$strings["female"] = "kobieta"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s zaktualizował ją %2\$s"; -App::$strings["male"] = "mężczyzna"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s zaktualizował jego %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s zaktualizował swoje %2\$s"; -App::$strings["cover photo"] = "zdjęcie okładkowe"; -App::$strings["Your cover photo may be visible to anybody on the internet"] = "Twoje zdjęcie okładkowe może być widoczne dla każdego w internecie"; -App::$strings["Change Cover Photo"] = "Zmień zdjęcie na okładkę"; -App::$strings["Unable to update menu."] = "Nie można zaktualizować menu."; -App::$strings["Unable to create menu."] = "Nie można utworzyć menu."; -App::$strings["Menu Name"] = "Nazwa menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unikalna nazwa (niewidoczna na stronie) - wymagana"; -App::$strings["Menu Title"] = "Tytuł menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Widoczne na stronie - pozostaw puste bez tytułu"; -App::$strings["Allow Bookmarks"] = "Zezwalaj na zakładki"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu może służyć do przechowywania zapisanych zakładek"; -App::$strings["Submit and proceed"] = "Prześlij i kontynuuj"; -App::$strings["Menus"] = "Menu"; -App::$strings["Bookmarks allowed"] = "Zakładki są dozwolone"; -App::$strings["Delete this menu"] = "Usuń to menu"; -App::$strings["Edit menu contents"] = "Edytuj zawartość menu"; -App::$strings["Edit this menu"] = "Edytuj to menu"; -App::$strings["Menu could not be deleted."] = "Nie udało się usunąć menu."; -App::$strings["Edit Menu"] = "Edytuj menu"; -App::$strings["Add or remove entries to this menu"] = "Dodaj lub usuń wpisy w tym menu"; -App::$strings["Menu name"] = "Nazwa menu"; -App::$strings["Must be unique, only seen by you"] = "Musi być wyjątkowy, widoczny tylko dla Ciebie"; -App::$strings["Menu title"] = "Tytuł menu"; -App::$strings["Menu title as seen by others"] = "Tytuł menu widziany przez innych"; -App::$strings["Allow bookmarks"] = "Zezwalaj na zakładki"; -App::$strings["Failed to create source. No channel selected."] = "Nie udało się utworzyć źródła. Nie wybrano kanału."; -App::$strings["Source created."] = "Utworzono źródło."; -App::$strings["Source updated."] = "Źródło zaktualizowane."; -App::$strings["Sources App"] = "Aplikacja Źródła"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatycznie importuj zawartość kanału z innych kanałów lub źródeł"; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Źródła"; -App::$strings["Manage remote sources of content for your channel."] = "Zarządzaj zdalnymi źródłami treści na swoim kanale."; -App::$strings["New Source"] = "Nowe źródło"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału i rozpowszechniaj je zgodnie z ustawieniami kanału."; -App::$strings["Only import content with these words (one per line)"] = "Importuj tylko zawartość z tymi słowami (po jednym w każdym wierszu)"; -App::$strings["Leave blank to import all public content"] = "Pozostaw puste, aby zaimportować całą zawartość publiczną"; -App::$strings["Channel Name"] = "Nazwa kanału"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone przecinkami)"; -App::$strings["Resend posts with this channel as author"] = "Wyślij ponownie wpisy z tym kanałem jako autorem"; -App::$strings["Copyrights may apply"] = "Mogą obowiązywać prawa autorskie"; -App::$strings["Source not found."] = "Nie znaleziono źródła."; -App::$strings["Edit Source"] = "Edytuj źródło"; -App::$strings["Delete Source"] = "Usuń źródło"; -App::$strings["Source removed"] = "Źródło zostało usunięte"; -App::$strings["Unable to remove source."] = "Nie można usunąć źródła."; -App::$strings["Poke App"] = "Aplikacja kuksaniec"; -App::$strings["Poke somebody in your addressbook"] = "Szturchnij kogoś w swojej książce adresowej"; -App::$strings["Poke"] = "Szturchnij"; -App::$strings["Poke somebody"] = "Szturchnij kogoś"; -App::$strings["Poke/Prod"] = "Szturchnij"; -App::$strings["Poke, prod or do other things to somebody"] = "Szturchać, badać, testować lub robić z kimś podobne rzeczy"; -App::$strings["Recipient"] = "Odbiorca"; -App::$strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić odbiorcy"; -App::$strings["Make this post private"] = "Ustaw ten wpis jako prywatny"; -App::$strings["No such group"] = "Nie ma takiej grupy"; -App::$strings["No such channel"] = "Nie ma takiego kanału"; -App::$strings["Privacy group is empty"] = "Grupa prywatności jest pusta"; -App::$strings["Privacy group: "] = "Grupa prywatności: "; -App::$strings["Invalid channel."] = "Zły kanał."; -App::$strings["Can not copy folder into itself."] = "Nie można skopiować folderu do siebie."; -App::$strings["Can not move folder \"%s\" into itself."] = "Nie można przenieść folderu \"%s\" do samego siebie."; -App::$strings["item"] = "element"; -App::$strings["Remote privacy information not available."] = "Zdalne informacje o prywatności nie są dostępne."; -App::$strings["Visible to:"] = "Widoczne dla:"; -App::$strings["Change filename to"] = "Zmień nazwę pliku na"; -App::$strings["Select a target location"] = "Wybierz lokalizację docelową"; -App::$strings["Copy to target location"] = "Skopiuj do lokalizacji docelowej"; -App::$strings["Set permissions for all files and sub folders"] = "Ustaw uprawnienia dla wszystkich plików i podfolderów"; -App::$strings["Notify your contacts about this file"] = "Powiadom swoje kontakty o tym pliku"; -App::$strings["File category"] = "Kategoria plików"; -App::$strings["Total"] = "Ogólnie"; -App::$strings["Shared"] = "Udostępnione"; -App::$strings["Add Files"] = "Dodaj pliki"; -App::$strings["Admin Delete"] = "Usuń przez administratora"; -App::$strings["parent"] = "rodzic"; -App::$strings["Select All"] = "Zaznacz wszystko"; -App::$strings["Bulk Actions"] = "Działania masowe"; -App::$strings["Adjust Permissions"] = "Dostosuj uprawnienia"; -App::$strings["Move or Copy"] = "Przenieś lub skopiuj"; -App::$strings["Info"] = "Informacje"; -App::$strings["Rename"] = "Zień nazwę"; -App::$strings["Post"] = "Wpis"; -App::$strings["Attachment BBcode"] = "Załącz tekst BBcode"; -App::$strings["Embed BBcode"] = "Osadź tekst BBcode"; -App::$strings["Link BBcode"] = "Połącz do tekstu BBcode"; -App::$strings["You are using %1\$s of your available file storage."] = "Używasz %1\$s dostępnego miejsca na pliki."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Używasz %1\$s z %2\$s dostępnego miejsca na pliki. (%3\$s %)"; -App::$strings["WARNING:"] = "OSTRZEŻENIE:"; -App::$strings["Create new folder"] = "Stwórz nowy folder"; -App::$strings["Upload file"] = "Przesyłanie pliku"; -App::$strings["Drop files here to immediately upload"] = "Upuść pliki tutaj, aby natychmiast przesłać"; -App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = "Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do istniejącego folderu."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. Wyloguj się i spróbuj ponownie."; -App::$strings["Welcome %s. Remote authentication successful."] = "Witaj %s. Zdalne uwierzytelnianie powiodło się."; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące elementów mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie tego chciałeś, utwórz kolejną grupę o innej nazwie."; -App::$strings["Add new connections to this privacy group"] = "Dodaj nowe połączenia do tej grupy prywatności"; -App::$strings["edit"] = "edutuj"; -App::$strings["Edit group"] = "Edytuj grupę"; -App::$strings["Add privacy group"] = "Dodaj grupę prywatności"; -App::$strings["Channels not in any privacy group"] = "Kanały spoza jakiejkolwiek grupy prywatności"; -App::$strings["add"] = "dodaj"; -App::$strings["Channel is blocked on this site."] = "Kanał jest zablokowany na tej stronie."; -App::$strings["Channel location missing."] = "Brak lokalizacji kanału."; -App::$strings["Remote channel or protocol unavailable."] = "Zdalny kanał lub protokół jest niedostępny."; -App::$strings["Channel discovery failed."] = "Wyszukanie kanału nie powiodło się."; -App::$strings["Protocol disabled."] = "Protokół wyłączony."; -App::$strings["Cannot connect to yourself."] = "Nie można połączyć się ze sobą."; -App::$strings["error saving data"] = "błąd podczas zapisywania danych"; -App::$strings["Apps"] = "Aplikacje"; -App::$strings["Affinity Tool"] = "Narzędzie Zaprzyjaźnienia"; -App::$strings["Site Admin"] = "Administrator serwisu"; -App::$strings["Report Bug"] = "Raport błędów"; -App::$strings["Bookmarks"] = "Zakładki"; -App::$strings["Chatrooms"] = "Czaty"; -App::$strings["Content Filter"] = "Filtr treści"; -App::$strings["Content Import"] = "Import treści"; -App::$strings["Remote Diagnostics"] = "Zdalna diagnostyka"; -App::$strings["Suggest Channels"] = "Zaproponuj kanały"; -App::$strings["Login"] = "Zaloguj się"; -App::$strings["Stream"] = "Strumień"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Channel Home"] = "Strona główna kanału"; -App::$strings["Calendar"] = "Kalendarz"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Mail"] = "Poczta"; -App::$strings["Chat"] = "Czat"; -App::$strings["Probe"] = "Sonda"; -App::$strings["Suggest"] = "Prpozycja"; -App::$strings["Random Channel"] = "Losowy kanał"; -App::$strings["Invite"] = "Zaproszenie"; -App::$strings["Features"] = "Możliwości"; -App::$strings["Language"] = "Język"; -App::$strings["Profile Photo"] = "Zdjęcie profilowe"; -App::$strings["Profiles"] = "Profile"; -App::$strings["Notifications"] = "Powiadomienie"; -App::$strings["Order Apps"] = "Kolejność aplikacji"; -App::$strings["CardDAV"] = "CardDAV"; -App::$strings["Guest Access"] = "Dostęp gościa"; -App::$strings["Notes"] = "Notatki"; -App::$strings["OAuth Apps Manager"] = "Menadżer aplikacji OAuth"; -App::$strings["OAuth2 Apps Manager"] = "Menadżer aplikacji OAuth2"; -App::$strings["PDL Editor"] = "Edytor PDL"; -App::$strings["My Chatrooms"] = "Moje czaty"; -App::$strings["Channel Export"] = "Eksport kanału"; -App::$strings["Purchase"] = "Zakup"; -App::$strings["Undelete"] = "Cofnij usunięcie"; -App::$strings["Add to app-tray"] = "Dodaj do zasobnika aplikacji"; -App::$strings["Remove from app-tray"] = "Usuń z zasobnika aplikacji"; -App::$strings["Pin to navbar"] = "Przypnij do paska nawigacyjnego"; -App::$strings["Unpin from navbar"] = "Odepnij od paska nawigacyjnego"; -App::$strings["Source code of failed update: "] = "Kod źródłowy nieudanej aktualizacji: "; -App::$strings["Update Error at %s"] = "Błąd aktualizacji na %s"; -App::$strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów."; -App::$strings["A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you intended, please create another list with a different name."] = "Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące elementów mogą dotyczyć tej listy i wszystkich przyszłych członków. Jeśli nie tego chciałeś, utwórz kolejną listę z inną nazwą."; -App::$strings["Add new connections to this access list"] = "Dodaj nowe połączenia do tej listy dostępu"; -App::$strings["Lists"] = "Listy"; -App::$strings["Edit list"] = "Edytuj listę"; -App::$strings["Create new list"] = "Utwórz nową listę"; -App::$strings["Channels not in any access list"] = "Kanały, których nie ma na żadnej liście dostępu"; -App::$strings["Missing room name"] = "Brak nazwy pokoju"; -App::$strings["Duplicate room name"] = "Zduplikowana nazwa pokoju"; -App::$strings["Invalid room specifier."] = "Nieprawidłowy specyfikator sali."; -App::$strings["Room not found."] = "Nie znaleziono pokoju."; -App::$strings["Room is full"] = "Pokój jest pełny"; -App::$strings["0. Beginner/Basic"] = "0. Początkujący/Podstawowy"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Nowicjusz - nie ma umiejętności, ale chętnie się uczy"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Średnio zaawansowany - dość wygodne"; -App::$strings["3. Advanced - very comfortable"] = "3. Zaawansowany - bardzo wygodne"; -App::$strings["4. Expert - I can write computer code"] = "4. Ekspert - umiem pisać kod komputerowy"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Czarodziej - prawdopodobnie wiem więcej niż Ty"; -App::$strings["\$Projectname Notification"] = "Powiadomienie \$Projectname"; -App::$strings["\$projectname"] = "\$Projectname"; -App::$strings["Thank You,"] = "Dziękujemy,"; -App::$strings["%s Administrator"] = "Administrator %s"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Ta wiadomość e-mail została wysłana przez %1\$s z %2\$s."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Aby nie otrzymywać tych wiadomości, zmień %s."; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Otrzymano nową pocztę na %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s wysłał Ci nową prywatną wiadomość na %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s wysłał Ci %2\$s."; -App::$strings["a private message"] = "prywatna wiadomość"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości."; -App::$strings["commented on"] = "skomentował"; -App::$strings["liked"] = "polubił"; -App::$strings["disliked"] = "dezaprobował"; -App::$strings["voted on"] = "głosował"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]Twój %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Moderowany komentarz do rozmowy #%1\$d przez %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Komentarz do rozmowy #%1\$d przez %2\$s"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s skomentował obserwowany element/rozmowa."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s, aby wyświetlić albo włączyć się do rozmowy."; -App::$strings["Please visit %s to approve or reject this comment."] = "Odwiedź %s, aby zaakceptować lub odrzucić ten komentarz."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s polubił [zrl=%2\$s]Twój %3\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Polubienie wysłane dla rozmowy #%1\$d przez %2\$s"; -App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s polubił utworzony przez Ciebie element/rozmowę."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify]%s opublikowany na Twojej tablicy profilu"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s opublikowano na tablicy Twojego profilu pod adresem %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s opublikował na [zrl=%2\$s]Twojej tablicy[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify]%s oznaczył Cię tagiem"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczył Cię tagiem %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]oznaczył Cię tagiem[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s szturchnął Cię"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$s szturchnął Cię %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]szturchnął Cię[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s oznaczył tagiem Twój wpis"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s oznaczył tagiem Twój wpis na %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s tagged [zrl=%2\$s]Twój wpis[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Otrzymano prośbę o połączenie"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) nowe żądanie połączenia od „%1\$s” na %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s]nowe żądanie połączenia [/zrl] od %2\$s."; -App::$strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Odwiedź %s, aby zatwierdzić lub odrzucić prośbę o połączenie."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Otrzymano propozycję znajomości"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) propozycję znajomości od „%1\$s” na %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s] propozycję znajomości[/ zrl] dla %2\$s od %3\$s."; -App::$strings["Name:"] = "Nazwa:"; -App::$strings["Photo:"] = "Zdjęcie:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź %s, aby zaakceptować lub odrzucić popozycję."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notify]"; -App::$strings["created a new poll"] = "utworzył nową ankietę"; -App::$strings["created a new post"] = "utworzył nowy wpis"; -App::$strings["voted on %s's poll"] = "głosował w ankiecie %s"; -App::$strings["commented on %s's post"] = "skomentował wpis %s"; -App::$strings["repeated %s's post"] = "powtórzony wpis %s"; -App::$strings["edited a post dated %s"] = "edytował wpis z dnia %s"; -App::$strings["edited a comment dated %s"] = "edytował komentarz z dnia %s"; -App::$strings["created an event"] = "utworzono wydarzenie"; -App::$strings["verified"] = "sprawdzono"; -App::$strings["Unable to verify site signature for %s"] = "Nie można zweryfikować podpisu witryny dla %s"; -App::$strings["(No Title)"] = "(Brak tytułu)"; -App::$strings["Wiki page create failed."] = "Tworzenie strony Wiki nie powiodło się."; -App::$strings["Wiki not found."] = "Nie znaleziono wiki."; -App::$strings["Destination name already exists"] = "Nazwa celu już istnieje"; -App::$strings["Page not found"] = "Strona nie znaleziona"; -App::$strings["Error reading page content"] = "Błąd podczas odczytu zawartości strony"; -App::$strings["Error reading wiki"] = "Błąd podczas odczytu wiki"; -App::$strings["Page update failed."] = "Aktualizacja strony nie powiodła się."; -App::$strings["Nothing deleted"] = "Nic nie zostało usunięte"; -App::$strings["Compare: object not found."] = "Porównaj: nie znaleziono obiektu."; -App::$strings["Page updated"] = "Strona została zaktualizowana"; -App::$strings["Untitled"] = "Bez tytułu"; -App::$strings["Wiki resource_id required for git commit"] = "Identyfikator zasobu Wiki wymagany do zatwierdzenia przez Git"; -App::$strings["__ctx:wiki_history__ Message"] = "Wiadomość"; -App::$strings["Date"] = "Data"; -App::$strings["Compare"] = "Porównaj"; -App::$strings["Different viewers will see this text differently"] = "Różni widzowie będą inaczej widzieć ten tekst"; -App::$strings["Private Message"] = "Wiadomość prywatna"; -App::$strings["Privacy conflict. Discretion advised."] = "Konflikt prywatności. Zalecana dyskrecja."; -App::$strings["Select"] = "Wybierz"; -App::$strings["I will attend"] = "Będę uczestniczył"; -App::$strings["I will not attend"] = "Nie będę uczestniczył"; -App::$strings["I might attend"] = "Mogę wziąć udział"; -App::$strings["I agree"] = "Zgadzam się"; -App::$strings["I disagree"] = "Nie zgadzam się"; -App::$strings["I abstain"] = "Wstrzymuję się"; -App::$strings["Toggle Star Status"] = "Przełącz stan gwiazdki"; -App::$strings["Message signature validated"] = "Podpis wiadomości został zatwierdzony"; -App::$strings["Message signature incorrect"] = "Niepoprawny podpis wiadomości"; -App::$strings["Conversation Tools"] = "Narzędzia do konwersacji"; -App::$strings["like"] = "lubi"; -App::$strings["dislike"] = "nie lubi"; -App::$strings["Reply on this comment"] = "Odpowiedz na ten komentarz"; -App::$strings["reply"] = "odpowiedz"; -App::$strings["Reply to"] = "Odpowiedź dla"; -App::$strings["Share This"] = "Udostępnij to"; -App::$strings["share"] = "udostępnij"; -App::$strings["Delivery Report"] = "Raport dostawy"; -App::$strings["%d comment"] = array( - 0 => "%d komentarz", - 1 => "%d komentarze", - 2 => "%d komentarzy", -); -App::$strings["%d unseen"] = "%d niezobaczone"; -App::$strings["to"] = "do"; -App::$strings["via"] = "poprzez"; -App::$strings["Wall-to-Wall"] = "Rozwinięcie"; -App::$strings["via Wall-To-Wall:"] = "poprzez rozwinięcie:"; -App::$strings["from %s"] = "od %s"; -App::$strings["last edited: %s"] = "ostatnio edytowane: %s"; -App::$strings["Expires: %s"] = "Wygasa: %s"; -App::$strings["Attend"] = "Uczestnicz"; -App::$strings["Attendance Options"] = "Opcje obecności"; -App::$strings["Vote"] = "Głosuj"; -App::$strings["Voting Options"] = "Opcje głosowania"; -App::$strings["Go to previous comment"] = "Przejdź do poprzedniego komentarza"; -App::$strings["Pinned post"] = "Wpisy przypięte"; -App::$strings["Unpin from the top"] = "Odepnij z góry"; -App::$strings["Pin to the top"] = "Przypnij u góry"; -App::$strings["Save Bookmarks"] = "Zapisz zakładki"; -App::$strings["Add to Calendar"] = "Dodaj do kalendarza"; -App::$strings["This is an unsaved preview"] = "Ten podgląd nie został zapisany"; -App::$strings["%s show all"] = "%s pokaż wszystko"; -App::$strings["Bold"] = "Gruby"; -App::$strings["Italic"] = "Pochyły"; -App::$strings["Underline"] = "Podkreślony"; -App::$strings["Quote"] = "Cytat"; -App::$strings["Code"] = "Kod"; -App::$strings["Image"] = "Obraz"; -App::$strings["Attach/Upload file"] = "Załącz / prześlij plik"; -App::$strings["Insert Link"] = "Wstaw link"; -App::$strings["Video"] = "Wideo"; -App::$strings["Your full name (required)"] = "Twoja imię i nazwisko lub pełna nazwa (wymagane)"; -App::$strings["Your email address (required)"] = "Twój adres e-mail (wymagane)"; -App::$strings["Your website URL (optional)"] = "Adres URL Twojej witryny (opcjonalnie)"; -App::$strings["Likes %1\$s's %2\$s"] = "Lubi %2\$s %1\$s"; -App::$strings["Doesn't like %1\$s's %2\$s"] = "Nie lubi %2\$s %1\$s"; -App::$strings["Will attend %s's event"] = "Weźmie udział w wydarzeniu %s"; -App::$strings["Will not attend %s's event"] = "Nie weźmie udziału w wydarzeniu %s"; -App::$strings["May attend %s's event"] = "Może uczestniczyć w wydarzeniu %s"; -App::$strings["May not attend %s's event"] = "Nie może uczestniczyć w wydarzeniu %s"; -App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["Wiki updated successfully"] = "Wiki zaktualizowane pomyślnie"; -App::$strings["Wiki files deleted successfully"] = "Pliki Wiki zostały pomyślnie usunięte"; -App::$strings["Directory Options"] = "Opcje katalogu"; -App::$strings["Safe Mode"] = "Tryb bezpieczny"; -App::$strings["Public Forums Only"] = "Tylko fora publiczne"; -App::$strings["This Website Only"] = "Tylko ten serwis"; -App::$strings["__ctx:permcat__ default"] = "domyślnie"; -App::$strings["__ctx:permcat__ follower"] = "obserwujący"; -App::$strings["__ctx:permcat__ contributor"] = "współpracownik"; -App::$strings["__ctx:permcat__ publisher"] = "wydawca"; -App::$strings["Unable to verify channel signature"] = "Nie można zweryfikować podpisu kanału"; -App::$strings["Visible to your default audience"] = "Widoczne dla domyślnych odbiorców"; -App::$strings["Only me"] = "Tylko ja"; -App::$strings["Public"] = "Publiczny"; -App::$strings["Anybody in the \$Projectname network"] = "Każdy w sieci \$Projectname"; -App::$strings["Any account on %s"] = "Dowolne konto na %s"; -App::$strings["Any of my connections"] = "Wszystkie moje połączenia"; -App::$strings["Only connections I specifically allow"] = "Tylko połączenia, na które wyraźnie zezwalam"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Każdy uwierzytelniony (może obejmować odwiedzających z innych sieci)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzone"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów."; -App::$strings["This is your default setting for who can view your default channel profile"] = "To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny profil kanału"; -App::$strings["This is your default setting for who can view your connections"] = "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Jest to domyślne ustawienie określające, kto może wyświetlać miejsce na pliki i zdjęcia"; -App::$strings["This is your default setting for the audience of your webpages"] = "To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych"; -App::$strings["Everything"] = "Wszystko"; -App::$strings["Select Channel"] = "Wybierz kanał"; -App::$strings["Read-write"] = "Czytanie i zapis"; -App::$strings["Read-only"] = "Tylko odczyt"; -App::$strings["Channel Calendar"] = "Kalendarz kanału"; -App::$strings["Shared CalDAV Calendars"] = "Udostępnione kalendarze CalDAV"; -App::$strings["Share this calendar"] = "Udostępnij ten kalendarz"; -App::$strings["Calendar name and color"] = "Nazwa kalendarza i kolor"; -App::$strings["Create new CalDAV calendar"] = "Utwórz nowy kalendarz CalDAV"; -App::$strings["Calendar Name"] = "Nazwa kalendarza"; -App::$strings["Calendar Tools"] = "Narzędzia kalendarza"; -App::$strings["Import calendar"] = "Importuj kalendarz"; -App::$strings["Select a calendar to import to"] = "Wybierz kalendarz do zaimportowania"; -App::$strings["Addressbooks"] = "Książki adresowe"; -App::$strings["Addressbook name"] = "Nazwa książki adresowej"; -App::$strings["Create new addressbook"] = "Utwórz nową książkę adresową"; -App::$strings["Addressbook Name"] = "Nazwa książki adresowej"; -App::$strings["Addressbook Tools"] = "Narzędzia książki adresowej"; -App::$strings["Import addressbook"] = "Importuj książkę adresową"; -App::$strings["Select an addressbook to import to"] = "Wybierz książkę adresową do zaimportowania"; -App::$strings["Saved Folders"] = "Zapisywane foldery"; -App::$strings["Tags"] = "Tagi"; -App::$strings["Archives"] = "Archiwa"; -App::$strings["Chat Members"] = "Członkowie czatu"; -App::$strings["Rating Tools"] = "Narzędzia"; -App::$strings["Rate Me"] = "Oceń mnie"; -App::$strings["View Ratings"] = "Pokaż oceny"; -App::$strings["Add new page"] = "Dodaj nową stronę"; -App::$strings["Wiki Pages"] = "Strony wiki"; -App::$strings["Page name"] = "Nazwa strony"; -App::$strings["Bookmarked Chatrooms"] = "Czaty dodane do zakładek"; -App::$strings["photo/image"] = "zdjęcie/obraz"; -App::$strings["Forums"] = "Fora"; -App::$strings["Remove term"] = "Usuń termin"; -App::$strings["Saved Searches"] = "Zapisywane wyszukiwanie"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Masz %1$.0f z %2$.0f dozwolonych połączeń."; -App::$strings["Add New Connection"] = "Dodaj nowe połączenie"; -App::$strings["Enter channel address"] = "Wprowadź adres kanału"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Przykłady: bob@example.com, https://example.com/barbara"; -App::$strings["Suggestions"] = "Propozycje"; -App::$strings["See more..."] = "Zobacz więcej..."; -App::$strings["Tasks"] = "Zadania"; -App::$strings["Member registrations waiting for confirmation"] = "Rejestracja członków czeka na potwierdzenie"; -App::$strings["Inspect queue"] = "Sprawdź kolejkę"; -App::$strings["DB updates"] = "Aktualizacje bazy danych"; -App::$strings["Admin"] = "Admin"; -App::$strings["Addon Features"] = "Dodatkowe możliwości"; -App::$strings["Overview"] = "Przegląd"; -App::$strings["App Collections"] = "Kolekcja aplikacji"; -App::$strings["Installed apps"] = "Zainstalowane aplikacje"; -App::$strings["Commented Date"] = "Data skomentowania"; -App::$strings["Order by last commented date"] = "Sortuj według najnowszej daty skomentowania"; -App::$strings["Posted Date"] = "Data opublikowania"; -App::$strings["Order by last posted date"] = "Sortuj według najnowszej daty publikacji"; -App::$strings["Date Unthreaded"] = "Data zakończenia wątku"; -App::$strings["Order unthreaded by date"] = "Sortuj według daty zakończenia wątku"; -App::$strings["Stream Order"] = "Kolejność strumienia"; -App::$strings["Private Mail Menu"] = "Menu prywatnej poczty"; -App::$strings["Combined View"] = "Widok łączony"; -App::$strings["Inbox"] = "Skrzynka odbiorcza"; -App::$strings["Outbox"] = "Skrzynka nadawcza"; -App::$strings["New Message"] = "Nowy komunikat"; -App::$strings["Refresh"] = "Odśwież"; -App::$strings["HQ Control Panel"] = "Panel kontrolny HQ"; -App::$strings["Create a new post"] = "Utwórz nowy wpis"; -App::$strings["Events Tools"] = "Narzędzia wydarzeń"; -App::$strings["Export Calendar"] = "Eksport kalendarza"; -App::$strings["Import Calendar"] = "Import kalendarza"; -App::$strings["Direct Messages"] = "Bezpośrednie wiadomości"; -App::$strings["Show direct (private) messages"] = "Pokaż bezpośrednie (prywatne) wiadomości"; -App::$strings["Events"] = "Wydarzenia"; -App::$strings["Show posts that include events"] = "Pokaż wpisy zawierające wydarzenia"; -App::$strings["Polls"] = "Ankiety"; -App::$strings["Show posts that include polls"] = "Pokaż wpisy zawierające ankiety"; -App::$strings["Show posts related to the %s privacy group"] = "Pokaż wpisy związane z grupą prywatności %s"; -App::$strings["Show my privacy groups"] = "Pokaż moje grupy prywatności"; -App::$strings["Show posts to this forum"] = "Pokaż wpisy na tym forum"; -App::$strings["Show forums"] = "Pokaż fora"; -App::$strings["Starred Posts"] = "Wyróżnione wpisy"; -App::$strings["Show posts that I have starred"] = "Pokaż wpisy, które oznaczyłem gwiazdką"; -App::$strings["Personal Posts"] = "Osobiste wpisy"; -App::$strings["Show posts that mention or involve me"] = "Pokaż wpisy, które wspominają o mnie lub mnie dotyczą"; -App::$strings["Show posts that I have filed to %s"] = "Pokaż wpisy przesłane przeze mnie do %s"; -App::$strings["Show filed post categories"] = "Pokaż wprowadzone kategorie wpisów"; -App::$strings["Panel search"] = "Przeszukiwanie panelu"; -App::$strings["Filter by name"] = "Filtruj wg nazwy"; -App::$strings["Remove active filter"] = "Usuń aktywny filtr"; -App::$strings["Stream Filters"] = "Filtry strumienia"; -App::$strings["__ctx:widget__ Activity"] = "Aktywność"; -App::$strings["New Network Activity"] = "Nowa aktywność sieciowa"; -App::$strings["New Network Activity Notifications"] = "Powiadomienia o nowej aktywności sieciowej"; -App::$strings["View your network activity"] = "Wyświetl swoją aktywność w sieci"; -App::$strings["Mark all notifications read"] = "Oznacz wszystkie powiadomienia jako przeczytane"; -App::$strings["Show new posts only"] = "Pokaż tylko nowe wpisy"; -App::$strings["Filter by name or address"] = "Filtruj według nazwy lub adresu"; -App::$strings["New Home Activity"] = "Nowa aktywność domowa"; -App::$strings["New Home Activity Notifications"] = "Powiadomienia o nowej aktywności domowej"; -App::$strings["View your home activity"] = "Wyświetl swoją aktywność domową"; -App::$strings["Mark all notifications seen"] = "Oznacz wszystkie powiadomienia jako oglądnięte"; -App::$strings["New Direct Messages"] = "Nowe bezpośrednie wiadomości"; -App::$strings["New Direct Messages Notifications"] = "Powiadomienia o nowych wiadomościach bezpośrednich"; -App::$strings["View your direct messages"] = "Wyświetl swoje bezpośrednie wiadomości"; -App::$strings["New Mails"] = "Nowe wiadomości e-mail"; -App::$strings["New Mails Notifications"] = "Powiadomienia o nowych wiadomościach e-mail"; -App::$strings["View your private mails"] = "Zobacz swoje prywatne wiadomości"; -App::$strings["Mark all messages seen"] = "Oznacz wszystkie wiadomości jako oglądnięte"; -App::$strings["New Events"] = "Nowe wydarzenia"; -App::$strings["New Events Notifications"] = "Powiadomienia o nowych wydarzeniach"; -App::$strings["View events"] = "Pokaż wydarzenia"; -App::$strings["Mark all events seen"] = "Oznacza wydarzenia jako oglądnięte"; -App::$strings["New Connections Notifications"] = "Powiadomienia o nowych połączeniach"; -App::$strings["View all connections"] = "Pokaż wszystkie połączenia"; -App::$strings["New Files"] = "Nowe pliki"; -App::$strings["New Files Notifications"] = "Powiadomienia o nowych plikach"; -App::$strings["Notices"] = "Powiadomienia"; -App::$strings["View all notices"] = "Pokaż wszystkie powiadomienia"; -App::$strings["Mark all notices seen"] = "Oznacz wszystkie powiadomienia jako oglądnięte"; -App::$strings["New Registrations"] = "Nowe rejestracje"; -App::$strings["New Registrations Notifications"] = "Powiadomienia o nowych rejestracjach"; -App::$strings["Public Stream Notifications"] = "Powiadomienia o strumieniu publicznym"; -App::$strings["View the public stream"] = "Pokaż strumień publiczny"; -App::$strings["Sorry, you have got no notifications at the moment"] = "W tej chwili nie masz żadnych powiadomień"; -App::$strings["View %s's profile - %s"] = "Pokaż profile %s - %s"; -App::$strings["Don't show"] = "Nie pokazuj"; -App::$strings["Account settings"] = "Ustawienia konta"; -App::$strings["Channel settings"] = "Ustawienia kanału"; -App::$strings["Display settings"] = "Ustawienia wyświetlania"; -App::$strings["Manage locations"] = "Zarządzaj lokalizacjami"; -App::$strings["Suggested Chatrooms"] = "Sugerowane czaty"; -App::$strings["Received Messages"] = "Otrzymane wiadomości"; -App::$strings["Sent Messages"] = "Wysłane wiadomości"; -App::$strings["Conversations"] = "Rozmowy"; -App::$strings["No messages."] = "Brak wiadomości."; -App::$strings["Delete conversation"] = "Usuń rozmowę"; -App::$strings["Profile Creation"] = "Tworzenie profilu"; -App::$strings["Upload profile photo"] = "Prześlij zdjęcie profilowe"; -App::$strings["Upload cover photo"] = "Prześlij zdjęcie okładkowe"; -App::$strings["Edit your profile"] = "Edytuj swój profil"; -App::$strings["Find and Connect with others"] = "Znajdź i połącz się z innymi"; -App::$strings["View the directory"] = "Pokaż katalog"; -App::$strings["Manage your connections"] = "Zarządzaj swoimi połączeniami"; -App::$strings["Communicate"] = "Komunikuj się"; -App::$strings["View your channel homepage"] = "Wyświetl stronę główną swojego kanału"; -App::$strings["View your network stream"] = "Wyświetl swój strumień sieciowy"; -App::$strings["Documentation"] = "Dokumentacja"; -App::$strings["Missing Features?"] = "Brakuje funkcji?"; -App::$strings["Pin apps to navigation bar"] = "Przypinaj aplikacje do paska nawigacji"; -App::$strings["Install more apps"] = "Zainstaluj więcej aplikacji"; -App::$strings["View public stream"] = "Pokaż publiczny strumień"; -App::$strings["Click to show more"] = "Kliknij, aby pokazać więcej"; -App::$strings["Source channel not found."] = "Nie znaleziono kanału źródłowego."; -App::$strings["%d invitation available"] = array( - 0 => "%d dostępne zaproszenie", - 1 => "%d dostępne zaproszenia", - 2 => "%d dostępnych zaproszeń", -); -App::$strings["Find Channels"] = "Znajdź kanały"; -App::$strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; -App::$strings["Connect/Follow"] = "Połącz/Obserwuj"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Przykłady: Robert Morgenstein, łowienie ryb"; -App::$strings["Random Profile"] = "Losowy profil"; -App::$strings["Invite Friends"] = "Zaproś przyjaciół"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Zaawansowany przykład: name=fredeki country=poland"; -App::$strings["Common Connections"] = "Popularne połączenia"; -App::$strings["View all %d common connections"] = "Wyświetl wszystkie %d popularne połączenia"; -App::$strings["likes %1\$s's %2\$s"] = "polubił %2\$s %1\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "nie polubił %1\$s %2\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s jest teraz połączony z %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s szturchnął %2\$s"; -App::$strings["poked"] = "szturchnięty"; -App::$strings["View %s's profile @ %s"] = "Pokaż profil @ %s %s"; -App::$strings["Categories:"] = "Kategorie:"; -App::$strings["Filed under:"] = "Złożone pod:"; -App::$strings["View in context"] = "Zobacz w kontekście"; -App::$strings["remove"] = "usuń"; -App::$strings["Loading..."] = "Ładowanie ..."; -App::$strings["Delete Selected Items"] = "Usuń wybrane elementy"; -App::$strings["View Source"] = "Pokaż źródło"; -App::$strings["Follow Thread"] = "Obserwuj wątek"; -App::$strings["Unfollow Thread"] = "Przestań obserwować wątek"; -App::$strings["Edit Connection"] = "Edytuj połączenie"; -App::$strings["%s likes this."] = "%s lubi to."; -App::$strings["%s doesn't like this."] = "%s nie lubi tego."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d osoba lubi to.", - 1 => "%2\$d osoby lubią tego.", - 2 => "%2\$d osób lubi tego.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d osoba nie lubi to.", - 1 => "%2\$d osoby nie lubią tego.", - 2 => "%2\$d osób nie lubią tego.", -); -App::$strings["and"] = "i"; -App::$strings[", and %d other people"] = array( - 0 => " oraz %d inna osoba", - 1 => " oraz %d inne osoby", - 2 => " oraz %d innych osób", -); -App::$strings["%s like this."] = "%s lubi to."; -App::$strings["%s don't like this."] = "%s nie lubi tego."; -App::$strings["Set your location"] = "Ustaw swoją lokalizację"; -App::$strings["Clear browser location"] = "Wyczyść lokalizację przeglądarki"; -App::$strings["Embed (existing) photo from your photo albums"] = "Osadź (istniejące) zdjęcie z albumów ze zdjęciami"; -App::$strings["Tag term:"] = "Termin tagu:"; -App::$strings["Where are you right now?"] = "Gdzie teraz jesteś?"; -App::$strings["Choose a different album..."] = "Wybierz inny album..."; -App::$strings["Comments enabled"] = "Włączone komentowanie"; -App::$strings["Comments disabled"] = "Wyłączone komentowanie"; -App::$strings["Page link name"] = "Nazwa linku do strony"; -App::$strings["Post as"] = "Opublikuj jako"; -App::$strings["Toggle voting"] = "Przełącz głosowanie"; -App::$strings["Toggle poll"] = "Przełącz ankietę"; -App::$strings["Option"] = "Opcja"; -App::$strings["Add option"] = "Dodaj opcję"; -App::$strings["Minutes"] = "Minuty"; -App::$strings["Hours"] = "Godziny"; -App::$strings["Days"] = "Dni"; -App::$strings["Allow multiple answers"] = "Zezwalaj na wiele odpowiedzi"; -App::$strings["Disable comments"] = "Wyłącz komentarze"; -App::$strings["Toggle comments"] = "Przełącz komentarze"; -App::$strings["Summary (optional)"] = "Streszczenie (opcjonalnie)"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorie (opcjonalnie, lista rozdzielana przecinkami)"; -App::$strings["Other networks and post services"] = "Inne sieci i usługi społecznościowe"; -App::$strings["Set expiration date"] = "Ustaw datę wygaśnięcia"; -App::$strings["Set publish date"] = "Ustaw datę publikacji"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Uczestniczy", - 1 => "Uczestniczy", - 2 => "Uczestniczy", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Nie uczestniczy", - 1 => "Nie uczestniczy", - 2 => "Nie uczestniczy", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Niezdecydowany", - 1 => "Niezdecydowane", - 2 => "Niezdecydowanych", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Zgadza się", - 1 => "Zgadają się", - 2 => "Zgadza się", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Nie zgadza się", - 1 => "Nie zgadzają się", - 2 => "Nie zgadza się", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Wstrzymuje się", - 1 => "Wstrzymują się", - 2 => "Wstrzymuje się", -); -App::$strings["Unable to obtain identity information from database"] = "Nie można uzyskać informacji z bazy danych o tożsamości"; -App::$strings["Empty name"] = "Pusta nazwa"; -App::$strings["Name too long"] = "Nazwa jest za długa"; -App::$strings["No account identifier"] = "Brak identyfikatora konta"; -App::$strings["Unable to retrieve created identity"] = "Nie można pobrać utworzonej tożsamości"; -App::$strings["Default Profile"] = "Domyślny profil"; -App::$strings["Unable to retrieve modified identity"] = "Nie można pobrać zmodyfikowanej tożsamości"; -App::$strings["Requested channel is not available."] = "Żądany kanał nie jest dostępny."; -App::$strings["Create New Profile"] = "Utwórz nowy profil"; -App::$strings["Edit Profile"] = "Edytuj profil"; -App::$strings["Visible to everybody"] = "Widoczne dla każdego"; -App::$strings["Gender:"] = "Płeć:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Strona domowa:"; -App::$strings["Online Now"] = "Teraz online"; -App::$strings["Change your profile photo"] = "Zmień swoje zdjęcie profilowe"; -App::$strings["Female"] = "Kobieta"; -App::$strings["Male"] = "Mężczyzna"; -App::$strings["Trans"] = "Trans"; -App::$strings["Neuter"] = "Osoba aseksualna"; -App::$strings["Non-specific"] = "Nie określono"; -App::$strings["Like this channel"] = "Polub ten kanał"; -App::$strings["j F, Y"] = "d M, R"; -App::$strings["j F"] = "d M"; -App::$strings["Birthday:"] = "Urodziny:"; -App::$strings["for %1\$d %2\$s"] = "dla %1\$d %2\$s"; -App::$strings["Tags:"] = "Tagi:"; -App::$strings["Sexual Preference:"] = "Preferencje seksualne:"; -App::$strings["Political Views:"] = "Poglądy polityczne:"; -App::$strings["Religion:"] = "Religia:"; -App::$strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; -App::$strings["Likes:"] = "Polubień:"; -App::$strings["Dislikes:"] = "Dezaprobat:"; -App::$strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społecznościowe:"; -App::$strings["My other channels:"] = "Moje inne kanały:"; -App::$strings["Musical interests:"] = "Zainteresowania muzyczne:"; -App::$strings["Books, literature:"] = "Książki, literatura:"; -App::$strings["Television:"] = "Telewizja:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka:"; -App::$strings["Love/Romance:"] = "Miłość/Romans:"; -App::$strings["Work/employment:"] = "Praca/zatrudnienie:"; -App::$strings["School/education:"] = "Szkoła/edukacja:"; -App::$strings["Like this thing"] = "Jak ta rzecz"; -App::$strings["Start calendar week on Monday"] = "Rozpocznij tydzień kalendarzowy w poniedziałek"; -App::$strings["Default is Sunday"] = "Domyślnie jest to niedziela"; -App::$strings["Event Timezone Selection"] = "Wybór strefy czasowej wydarzenia"; -App::$strings["Allow event creation in timezones other than your own."] = "Zezwalaj na tworzenie wydarzeń w strefach czasowych innych niż Twoja."; -App::$strings["Search by Date"] = "Wyszukaj po dacie"; -App::$strings["Ability to select posts by date ranges"] = "Możliwość wyboru wpisów według zakresów dat"; -App::$strings["Tag Cloud"] = "Chmura tagów"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Udostępnij osobistą chmurę tagów na stronie swojego kanału"; -App::$strings["Use blog/list mode"] = "Użyj trybu blog/list"; -App::$strings["Comments will be displayed separately"] = "Komentarze będą wyświetlane osobno"; -App::$strings["Connection Filtering"] = "Filtrowanie połączeń"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści"; -App::$strings["Conversation"] = "Rozmowa"; -App::$strings["Emoji Reactions"] = "Reakcje emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Dodaje możliwość wstawiania reakcji emoji we wpisach"; -App::$strings["Dislike Posts"] = "Nielubienie wpisu"; -App::$strings["Ability to dislike posts/comments"] = "Możliwość oznaczania wpisów i komentarzy jako nielubiane"; -App::$strings["Star Posts"] = "Wyróżnienie wpisu"; -App::$strings["Ability to mark special posts with a star indicator"] = "Możliwość oznaczania wyróżnionych wpisów wskaźnikiem gwiazdki"; -App::$strings["Reply on comment"] = "Odpowiadanie na komentarze"; -App::$strings["Ability to reply on selected comment"] = "Możliwość udzielenia odpowiedzi na wybrany komentarz"; -App::$strings["Advanced Directory Search"] = "Zaawansowane przeszukiwanie katalogu"; -App::$strings["Allows creation of complex directory search queries"] = "Umożliwia tworzenie złożonych zapytań wyszukiwania w katalogu"; -App::$strings["Editor"] = "Edytor"; -App::$strings["Post Categories"] = "Kategorie wpisów"; -App::$strings["Add categories to your posts"] = "Dodawanie kategorii do swoich wpisów"; -App::$strings["Large Photos"] = "Duże zdjęcia"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie jest to włączone, można używać tylko małych miniatur (640 px)"; -App::$strings["Even More Encryption"] = "Jeszcze więcej szyfrowania"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego tajnego klucza"; -App::$strings["Disable Comments"] = "Wyłączanie komentarzy"; -App::$strings["Provide the option to disable comments for a post"] = "Zapewnia możliwość wyłączenia komentowania wpisu"; -App::$strings["Delayed Posting"] = "Opóźnione publikowanie"; -App::$strings["Allow posts to be published at a later date"] = "Pozwala na publikację wpisów w późniejszym terminie"; -App::$strings["Content Expiration"] = "Wygasanie treści"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Usuwanie wpisów i komentarzy lub prywatnych wiadomości w przyszłości"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Pomijaj zduplikowane wpisy i komentarze"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie minuty między przesłaniami."; -App::$strings["Auto-save drafts of posts and comments"] = "Automatyczne zapisywanie wersji roboczych wpisów i komentarzy"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Automatycznie zapisuje wersje robocze wpisów i komentarzy w lokalnej pamięci przeglądarki, aby zapobiec przypadkowej utracie kompozycji"; -App::$strings["Manage"] = "Zarządzanie"; -App::$strings["Navigation Channel Select"] = "Wybór kanału przez nawigację"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Zmiana kanału bezpośrednio z rozwijanego menu nawigacji"; -App::$strings["Events Filter"] = "Filtr wydarzeń"; -App::$strings["Ability to display only events"] = "Możliwość wyświetlania tylko wydarzeń"; -App::$strings["Polls Filter"] = "Filtr ankiet"; -App::$strings["Ability to display only polls"] = "Możliwość wyświetlania tylko ankiet"; -App::$strings["Save search terms for re-use"] = "Zapisywanie wyszukiwanych haseł do ponownego wykorzystania"; -App::$strings["Ability to file posts under folders"] = "Możliwość umieszczania wpisów w folderach"; -App::$strings["Alternate Stream Order"] = "Alternatywna kolejność strumienia"; -App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty ostatniego komentarza lub nieprzeczytanych aktywności"; -App::$strings["Contact Filter"] = "Filtr kontaktów"; -App::$strings["Ability to display only posts of a selected contact"] = "Możliwość wyświetlania wpisów autorstwa tylko wybranego kontaktu"; -App::$strings["Forum Filter"] = "Filtr forów"; -App::$strings["Ability to display only posts of a specific forum"] = "Możliwość wyświetlania wpisów tylko z określonego forum"; -App::$strings["Personal Posts Filter"] = "Filtr wpisów osobistych"; -App::$strings["Ability to display only posts that you've interacted on"] = "Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję"; -App::$strings["Photo Location"] = "Lokalizacja zdjęcia"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą."; -App::$strings["Advanced Profiles"] = "Profile zaawansowane"; -App::$strings["Additional profile sections and selections"] = "Dodatkowe sekcje i pola wyboru profilu"; -App::$strings["Profile Import/Export"] = "Import/Eksport profilu"; -App::$strings["Save and load profile details across sites/channels"] = "Zapisz i wczytaj szczegóły profilu z różnych witryn i kanałów"; -App::$strings["Multiple Profiles"] = "Wiele profili"; -App::$strings["Ability to create multiple profiles"] = "Możliwość tworzenia wielu profili"; -App::$strings["Delegation session ended."] = "Sesja delegacji zakończyła się."; -App::$strings["Logged out."] = "Wylogowano."; -App::$strings["Email validation is incomplete. Please check your email."] = "Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email."; -App::$strings["Failed authentication"] = "Uwierzytelnianie nie powiodło się"; -App::$strings["Login failed."] = "Logowanie nie powiodło się."; -App::$strings["prev"] = "poprzedni"; -App::$strings["first"] = "pierwszy"; -App::$strings["last"] = "ostatni"; -App::$strings["next"] = "następny"; -App::$strings["older"] = "starszy"; -App::$strings["newer"] = "nowszy"; -App::$strings["No connections"] = "Brak połączeń"; -App::$strings["View all %s connections"] = "Wyświetl wszystkie połączenia %s"; -App::$strings["Network: %s"] = "Sieć: %s"; -App::$strings["poke"] = "szturchać"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "spingowany"; -App::$strings["prod"] = "szturchać"; -App::$strings["prodded"] = "szturchać"; -App::$strings["slap"] = "spoliczkować"; -App::$strings["slapped"] = "spoliczkowany"; -App::$strings["finger"] = "dotknąć"; -App::$strings["fingered"] = "dotknięty"; -App::$strings["rebuff"] = "odprawiać"; -App::$strings["rebuffed"] = "odprawiony"; -App::$strings["happy"] = "szczęśliwy"; -App::$strings["sad"] = "smutny"; -App::$strings["mellow"] = "łagodny"; -App::$strings["tired"] = "zmęczony"; -App::$strings["perky"] = "dziarski"; -App::$strings["angry"] = "gniewny"; -App::$strings["stupefied"] = "oszołomiony"; -App::$strings["puzzled"] = "zdziwiony"; -App::$strings["interested"] = "zainteresowany"; -App::$strings["bitter"] = "gorzki"; -App::$strings["cheerful"] = "wesoły"; -App::$strings["alive"] = "żywy"; -App::$strings["annoyed"] = "zirytowany"; -App::$strings["anxious"] = "niespokojny"; -App::$strings["cranky"] = "zepsuty"; -App::$strings["disturbed"] = "zaniepokojony"; -App::$strings["frustrated"] = "sfrustrowany"; -App::$strings["depressed"] = "przygnębiony"; -App::$strings["motivated"] = "zmotywowany"; -App::$strings["relaxed"] = "zThese permissions set who is allowed to view the post."] = "Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu wpisu.
Te uprawnienia określają, kto może oglądać wpis."; -App::$strings["This is the home page of %s."] = "To jest strona główna %s."; -App::$strings["Trending"] = "Trendy"; -App::$strings["Keywords"] = "Słowa kluczowe"; -App::$strings["have"] = "ma"; -App::$strings["has"] = "mają"; -App::$strings["want"] = "chce"; -App::$strings["wants"] = "chcą"; -App::$strings["likes"] = "lubią"; -App::$strings["dislikes"] = "nie lubią"; -App::$strings["Unable to import a removed channel."] = "Nie można zaimportować usuniętego kanału."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import nieudany."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Nie można utworzyć unikalnego adresu kanału. Import nieudany."; -App::$strings["Cloned channel not found. Import failed."] = "Nie znaleziono sklonowanego kanału. Import nieudany."; -App::$strings["Remote authentication"] = "Zdalne uwierzytelnianie"; -App::$strings["Click to authenticate to your home hub"] = "Kliknij, aby uwierzytelnić się na swoim głównym węźle"; -App::$strings["Manage your channels"] = "Zarządzaj swoimi kanałami"; -App::$strings["Manage your privacy groups"] = "Zarządzaj swoimi grupami prywatności"; -App::$strings["Account/Channel Settings"] = "Ustawienia kanału/konta"; -App::$strings["Logout"] = "Wyloguj się"; -App::$strings["End this session"] = "Zakończ tą sesję"; -App::$strings["Your profile page"] = "Strona Twojego profilu"; -App::$strings["Manage/Edit profiles"] = "Zarządzaj/edytuj profile"; -App::$strings["Sign in"] = "Zaloguj się"; -App::$strings["Take me home"] = "Zabierz mnie do domu"; -App::$strings["Log me out of this site"] = "Wyloguj mnie z tej witryny"; -App::$strings["Create an account"] = "Utwórz konto"; -App::$strings["Help and documentation"] = "Pomoc i dokumentacja"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Szukaj w witrynie @name, !forum, #tag, ?docs, content"; -App::$strings["Site Setup and Configuration"] = "Instalacja i konfiguracja witryny"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@name, !forum, #tag, ?doc, content"; -App::$strings["Please wait..."] = "Proszę czekać ..."; -App::$strings["Add Apps"] = "Dodaj aplikacje"; -App::$strings["Arrange Apps"] = "Rozmieść aplikacje"; -App::$strings["Toggle System Apps"] = "Przełącz aplikacje systemowe"; -App::$strings["Status Messages and Posts"] = "Komunikaty o stanie i wpisy"; -App::$strings["Profile Details"] = "Szczegóły profilu"; -App::$strings["Photo Albums"] = "Albumy zdjęć"; -App::$strings["Files and Storage"] = "Pliki i ich magazyn"; -App::$strings["Saved Bookmarks"] = "Zapisane zakładki"; -App::$strings["View Cards"] = "Wyświetl karty"; -App::$strings["View Articles"] = "Wyświetl artykuły"; -App::$strings["View Webpages"] = "Wyświetl witryny internetowe"; -App::$strings["Select an alternate language"] = "Wybierz alternatywny język"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s wita %2\$s"; -App::$strings["%1\$s's bookmarks"] = "zakładki %1\$s"; -App::$strings[" and "] = " i "; -App::$strings["public profile"] = "profil publiczny"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s zmienił %2\$s na „%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Odwiedź %2\$s %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ma zaktualizowane %2\$s, zmieniając %3\$s."; -App::$strings["INVALID EVENT DISMISSED!"] = "ODRZUCONO NIEPRAWIDŁOWE WYDARZENIE!"; -App::$strings["Summary: "] = "Podsumowanie: "; -App::$strings["Date: "] = "Data: "; -App::$strings["Reason: "] = "Powód: "; -App::$strings["INVALID CARD DISMISSED!"] = "ODRZUCONO NIEPRAWIDŁOWĄ KARTĘ!"; -App::$strings["Name: "] = "Nazwa: "; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Obraz przekracza limit rozmiaru witryny wynoszący %lu bajtów"; -App::$strings["Image file is empty."] = "Plik obrazu jest pusty."; -App::$strings["Photo storage failed."] = "Zapis zdjęcia nie powiódł się."; -App::$strings["a new photo"] = "nowe zdjęcie"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s wysłał %2\$s do %3\$s"; -App::$strings["Upload New Photos"] = "Prześlij nowe zdjęcia"; -App::$strings["Delete this item?"] = "Usunąć tą pozycję?"; -App::$strings["%s show less"] = "%s pokaż mniej"; -App::$strings["%s expand"] = "%s rozwiń"; -App::$strings["%s collapse"] = "%s zwiń"; -App::$strings["Password too short"] = "Hasło jest za krótkie"; -App::$strings["everybody"] = "wszyscy"; -App::$strings["Secret Passphrase"] = "Tajna hasło"; -App::$strings["Passphrase hint"] = "Wskazówka dotycząca hasła"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Uwaga: uprawnienia uległy zmianie, ale nie zostały jeszcze przesłane."; -App::$strings["close all"] = "zamknij wszystko"; -App::$strings["Nothing new here"] = "Nic nowego tutaj"; -App::$strings["Rate This Channel (this is public)"] = "Oceń ten kanał (to jest publiczne)"; -App::$strings["Describe (optional)"] = "Opisz (opcjonalnie)"; -App::$strings["Please enter a link URL"] = "Proszę wprowadzić URL linku"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niezapisane zmiany. Czy na pewno chcesz opuścić tę stronę?"; -App::$strings["lovely"] = "śliczne"; -App::$strings["wonderful"] = "wspaniałe"; -App::$strings["fantastic"] = "fantastyczne"; -App::$strings["great"] = "świetne"; -App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej prpozycji ("; -App::$strings[") or enter a new one."] = ") lub wprowadź nowy."; -App::$strings["Thank you, this nickname is valid."] = "Dziękuję, ten pseudonim jest prawidłowy."; -App::$strings["A channel name is required."] = "Wymagana jest nazwa kanału."; -App::$strings["This is a "] = "To jest "; -App::$strings[" channel name"] = " nazwa kanału"; -App::$strings["Back to reply"] = "Wróć do odpowiedzi"; -App::$strings["Pinned"] = "Przypięte"; -App::$strings["%d minutes"] = array( - 0 => "%d minuta", - 1 => "%d minuty", - 2 => "%d minut", -); -App::$strings["about %d hours"] = array( - 0 => "około %d godziny", - 1 => "około %d godzin", - 2 => "około %d godzin", -); -App::$strings["%d days"] = array( - 0 => "%d dzień", - 1 => "%d dni", - 2 => "%d dni", -); -App::$strings["%d months"] = array( - 0 => "%d miesiąc", - 1 => "%d miesiące", - 2 => "%d miesięcy", -); -App::$strings["%d years"] = array( - 0 => "%d rok", - 1 => "%d lata", - 2 => "%d lat", -); -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "od"; -App::$strings["timeago.suffixAgo"] = "temu"; -App::$strings["timeago.suffixFromNow"] = "temu"; -App::$strings["less than a minute"] = "mniej niż minutę"; -App::$strings["about a minute"] = "około minuty"; -App::$strings["about an hour"] = "około godziny"; -App::$strings["a day"] = "dzień"; -App::$strings["about a month"] = "około miesiąca"; -App::$strings["about a year"] = "około roku"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "Maj"; -App::$strings["Jan"] = "Sty"; -App::$strings["Feb"] = "Lut"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Kwi"; -App::$strings["__ctx:short__ May"] = "Maj"; -App::$strings["Jun"] = "Cze"; -App::$strings["Jul"] = "Lop"; -App::$strings["Aug"] = "Sie"; -App::$strings["Sep"] = "Wrz"; -App::$strings["Oct"] = "Paź"; -App::$strings["Nov"] = "Lis"; -App::$strings["Dec"] = "Gru"; -App::$strings["Sun"] = "Nie"; -App::$strings["Mon"] = "Pon"; -App::$strings["Tue"] = "Wto"; -App::$strings["Wed"] = "Śro"; -App::$strings["Thu"] = "Czw"; -App::$strings["Fri"] = "Pią"; -App::$strings["Sat"] = "Sob"; -App::$strings["__ctx:calendar__ today"] = "dzisiaj"; -App::$strings["__ctx:calendar__ month"] = "miesiąc"; -App::$strings["__ctx:calendar__ week"] = "tydzień"; -App::$strings["__ctx:calendar__ day"] = "dzień"; -App::$strings["__ctx:calendar__ All day"] = "Cały dzień"; -App::$strings["Please stand by while your download is being prepared."] = "Proszę czekać, aż pobieranie zostanie zakończone."; -App::$strings["Email address not valid"] = "Adres e-mail jest nieprawidłowy"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się tak, ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem."; -App::$strings["Profile to assign new connections"] = "Profil do przypisywania nowych połączeń"; -App::$strings["Frequently"] = "Często"; -App::$strings["Hourly"] = "Co godzinnę"; -App::$strings["Twice daily"] = "Dwa razy dziennie"; -App::$strings["Daily"] = "Co dzień"; -App::$strings["Weekly"] = "Co tydzień"; -App::$strings["Monthly"] = "Co miesiąc"; -App::$strings["Currently Male"] = "Obecnie mężczyzna"; -App::$strings["Currently Female"] = "Obecnie kobieta"; -App::$strings["Mostly Male"] = "Głównie mężczyźna"; -App::$strings["Mostly Female"] = "Głównie kobieta"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interpłciowość"; -App::$strings["Transsexual"] = "Transseksualność"; -App::$strings["Hermaphrodite"] = "Hermafrodyta"; -App::$strings["Undecided"] = "Niezdecydowano"; -App::$strings["Males"] = "Mężczyżni"; -App::$strings["Females"] = "Kobiety"; -App::$strings["Gay"] = "Homoseksualista"; -App::$strings["Lesbian"] = "Lesbijka"; -App::$strings["No Preference"] = "Bez preferencji"; -App::$strings["Bisexual"] = "Biseksualne"; -App::$strings["Autosexual"] = "Autoseksualne"; -App::$strings["Abstinent"] = "Abstyncja"; -App::$strings["Virgin"] = "Dziewice"; -App::$strings["Deviant"] = "Dewiant"; -App::$strings["Fetish"] = "Fetysz"; -App::$strings["Oodles"] = "Wszystko"; -App::$strings["Nonsexual"] = "Osoba aseksualna"; -App::$strings["Single"] = "Singiel"; -App::$strings["Lonely"] = "Osoba samotna"; -App::$strings["Available"] = "Osoba dostępna"; -App::$strings["Unavailable"] = "Osoba niedostępna"; -App::$strings["Has crush"] = "Osoba zadłużona"; -App::$strings["Infatuated"] = "Osoba zakochana"; -App::$strings["Dating"] = "Randkowicz"; -App::$strings["Unfaithful"] = "Osoba niewierna"; -App::$strings["Sex Addict"] = "Osoba uzależniona od seksu"; -App::$strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; -App::$strings["Casual"] = "Przygodnie"; -App::$strings["Engaged"] = "Osoba zaręczona"; -App::$strings["Married"] = "Osoba zaślubiona"; -App::$strings["Imaginarily married"] = "Małżeństwo pomysłowe"; -App::$strings["Partners"] = "Partnerstwo"; -App::$strings["Cohabiting"] = "Konkubinat"; -App::$strings["Common law"] = "Prawo zwyczajowe"; -App::$strings["Happy"] = "Osoba szczęśliwa"; -App::$strings["Not looking"] = "Osoba nie szukająca"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Osoba zdradzona"; -App::$strings["Separated"] = "W separacji"; -App::$strings["Unstable"] = "Związek niestabilny"; -App::$strings["Divorced"] = "Osoba rozwiedziona"; -App::$strings["Imaginarily divorced"] = "Osoba rozwiedziona umownie"; -App::$strings["Widowed"] = "Osoba owdowiała"; -App::$strings["Uncertain"] = "Osoba niezdecydowana"; -App::$strings["It's complicated"] = "To skomplikowane"; -App::$strings["Don't care"] = "Nie obchodzi mnie to"; -App::$strings["Ask me"] = "Zapytaj mnie"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["The provided email address is not valid"] = "Podany adres e-mail jest nieprawidłowy"; -App::$strings["The provided email domain is not among those allowed on this site"] = "Podana domena e-mail nie należy do domen dozwolonych w tym serwisie"; -App::$strings["The provided email address is already registered at this site"] = "Podany adres e-mail jest już zarejestrowany w tej witrynie"; -App::$strings["An invitation is required."] = "Wymagane jest zaproszenie."; -App::$strings["Invitation could not be verified."] = "Nie udało się zweryfikować zaproszenia."; -App::$strings["Please enter the required information."] = "Proszę wprowadzić wymagane informacje."; -App::$strings["Failed to store account information."] = "Nie udało się zapisać informacji o koncie."; -App::$strings["Registration request at %s"] = "Wniosek o rejestrację na %s"; -App::$strings["your registration password"] = "hasło rejestracyjne"; -App::$strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; -App::$strings["Account approved."] = "Konto zostało zatwierdzone."; -App::$strings["Registration revoked for %s"] = "Rejestracja cofnięta dla %s"; -App::$strings["Could not revoke registration for %s"] = "Nie można unieważnić rejestracji dla % s"; -App::$strings["Click here to upgrade."] = "Kliknij tutaj, aby zaktualizować."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Ta czynność wykracza poza limity określone w planie subskrypcji."; -App::$strings["This action is not available under your subscription plan."] = "Ta czynność nie jest dostępna w ramach Twojego planu subskrypcji."; -App::$strings["open"] = "otwórz"; -App::$strings["closed"] = "zamknięte"; -App::$strings["Registration is currently"] = "Rejestracja trwa"; -App::$strings["please come back"] = "proszę wrócić"; -App::$strings["Help:"] = "Pomoc:"; -App::$strings["Not Found"] = "Nie znaleziono"; -App::$strings["Item was not found."] = "Nie znaleziono elementu."; -App::$strings["Unknown error."] = "Nieznany błąd."; -App::$strings["No source file."] = "Brak pliku źródłowego."; -App::$strings["Cannot locate file to replace"] = "Nie można znaleźć pliku do zastąpienia"; -App::$strings["Cannot locate file to revise/update"] = "Nie można zlokalizować pliku do poprawienia/aktualizacji"; -App::$strings["File exceeds size limit of %d"] = "Plik przekracza limit rozmiaru %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Osiągnięty został limit %1$.0f MB miejsca na załączniki."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub działanie zakończone."; -App::$strings["Stored file could not be verified. Upload failed."] = "Nie można zweryfikować zapisanego pliku. Przesyłanie nie powiodło się."; -App::$strings["Path not available."] = "Ścieżka niedostępna."; -App::$strings["Empty pathname"] = "Pusta ścieżka"; -App::$strings["duplicate filename or path"] = "zduplikowana nazwa pliku lub ścieżka"; -App::$strings["Path not found."] = "Ścieżka nie znaleziona."; -App::$strings["mkdir failed."] = "mkdir zakończył się błędem."; -App::$strings["database storage failed."] = "zapis w bazie danych nie powiódł się."; -App::$strings["Empty path"] = "Pusta ścieżka"; -App::$strings["%s shared a %s with you"] = "%s udostępnił Ci %s"; -App::$strings["file"] = "plik"; -App::$strings["New window"] = "Nowe okno"; -App::$strings["Open the selected location in a different window or browser tab"] = "Otwórz wybraną lokalizację w innym oknie lub karcie przeglądarki"; -App::$strings["Home, Voice"] = "Dom, głosowy"; -App::$strings["Home, Fax"] = "Dom, fax"; -App::$strings["Work, Voice"] = "Praca, głosowy"; -App::$strings["Work, Fax"] = "Praca, fax"; -App::$strings["View PDF"] = "Wyświetl PDF"; -App::$strings[" by "] = " przez "; -App::$strings[" on "] = " na "; -App::$strings["Embedded content"] = "Osadzone treści"; -App::$strings["Embedding disabled"] = "Osadzanie wyłączone"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Rozpoczętych:"; -App::$strings["Finishes:"] = "Zakończonych:"; -App::$strings["l F d, Y"] = "l F d, Y"; -App::$strings["Start:"] = "Rozpoczęto:"; -App::$strings["End:"] = "Zakończono:"; -App::$strings["Timezone"] = "Strefa czasowa"; -App::$strings["This event has been added to your calendar."] = "To wydarzenie zostało dodane do Twojego kalendarza."; -App::$strings["Not specified"] = "Nieokreślone"; -App::$strings["Needs Action"] = "Wymaga działania"; -App::$strings["Completed"] = "Zakończone"; -App::$strings["In Process"] = "W trakcie"; -App::$strings["Cancelled"] = "Usuniete"; -App::$strings["Birthday"] = "Urodziny"; -App::$strings["Age: "] = "Wiek: "; -App::$strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD"; -App::$strings["never"] = "nigdy"; -App::$strings["less than a second ago"] = "mniej niż sekundę temu"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s temu"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "rok", - 1 => "lata", - 2 => "lat", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "miesiąc", - 1 => "miesiące", - 2 => "miesięcy", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "tydzień", - 1 => "tygodnie", - 2 => "tygodni", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dzień", - 1 => "dni", - 2 => "dni", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "godziny", - 1 => "godzin", - 2 => "godzin", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuta", - 1 => "minuty", - 2 => "minut", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "sekunda", - 1 => "sekundy", - 2 => "sekund", -); -App::$strings["%1\$s's birthday"] = "urodziny %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "%1\$s, wszystkiego najlepszego z okazji urodzin"; -App::$strings["(Unknown)"] = "(Nieznane)"; -App::$strings["Visible to anybody on the internet."] = "Widoczne dla każdego w internecie."; -App::$strings["Visible to you only."] = "Widoczne tylko dla Ciebie."; -App::$strings["Visible to anybody in this network."] = "Widoczne dla każdego w tej sieci."; -App::$strings["Visible to anybody authenticated."] = "Widoczne dla każdego uwierzytelnionego."; -App::$strings["Visible to anybody on %s."] = "Widoczne dla wszystkich na %s."; -App::$strings["Visible to all connections."] = "Widoczny dla wszystkich połączeń."; -App::$strings["Visible to approved connections."] = "Widoczny dla zatwierdzonych połączeń."; -App::$strings["Visible to specific connections."] = "Widoczny dla określonych połączeń."; -App::$strings["Privacy group is empty."] = "Grupa prywatności jest pusta."; -App::$strings["Privacy group: %s"] = "Grupa prywatności: %s"; -App::$strings["Connection not found."] = "Nie znaleziono połączenia."; -App::$strings["profile photo"] = "zdjęcie profilowe"; -App::$strings["[Edited %s]"] = "[Edytowane %s]"; -App::$strings["__ctx:edit_activity__ Post"] = "Wpis"; -App::$strings["__ctx:edit_activity__ Comment"] = "Komentarz"; -App::$strings["Response from remote channel was incomplete."] = "Odpowiedź z kanału zdalnego była niekompletna."; -App::$strings["Premium channel - please visit:"] = "Kanał premium - odwiedź:"; -App::$strings["Channel was deleted and no longer exists."] = "Kanał został usunięty i już nie istnieje."; -App::$strings["Invalid data packet"] = "Nieprawidłowy pakiet danych"; -App::$strings["invalid target signature"] = "nieprawidłowy podpis docelowy"; -App::$strings["Image/photo"] = "Obraz/zdjęcie"; -App::$strings["Encrypted content"] = "Zaszyfrowana treść"; -App::$strings["Install %1\$s element %2\$s"] = "Zainstaluj element %1\$s %2\$s"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do zainstalowania go w tym serwisie."; -App::$strings["card"] = "karta"; -App::$strings["article"] = "artykuł"; -App::$strings["Click to open/close"] = "Kliknij, aby otworzyć/zamknąć"; -App::$strings["View article"] = "Wyświetl artykuł"; -App::$strings["View summary"] = "Wyświetl podsumowanie"; -App::$strings["$1 wrote:"] = "$1 napisał:"; -App::$strings["Follow"] = "Obserwuj"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s obserwujesz teraz %2\$s"; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; -App::$strings["GNU-Social Protocol App"] = "Aplikacja Protokół GNU-Social"; -App::$strings["GNU-Social Protocol"] = "GNU-Social Protocol"; -App::$strings["QR code"] = "Kod QR"; -App::$strings["QR Generator"] = "Generator QR"; -App::$strings["Enter some text"] = "Wprowadź jakiś tekst"; -App::$strings["Popular Channels"] = "Popularne kanały"; -App::$strings["Channels to auto connect"] = "Kanały do automatycznego podłączenia"; -App::$strings["Comma separated list"] = "Lista rozdzielana przecinkami"; -App::$strings["IRC Settings"] = "Ustawienia IRC"; -App::$strings["IRC settings saved."] = "Zapisano ustawienia IRC."; -App::$strings["IRC Chatroom"] = "Pokój rozmów IRC"; -App::$strings["Send email to all members"] = "Wyślij e-mail do wszystkich członków"; -App::$strings["No recipients found."] = "Nie znaleziono adresatów."; -App::$strings["%1\$d of %2\$d messages sent."] = "Wysłano %1\$d wiadomości z %2\$d zadysponowanych."; -App::$strings["Send email to all hub members."] = "Wyślij wiadomość e-mail do wszystkich członków serwisu."; -App::$strings["Message subject"] = "Temat wiadomości"; -App::$strings["Sender Email address"] = "Adres e-mail nadawcy"; -App::$strings["Test mode (only send to hub administrator)"] = "Tryb testowy (wysyłaj tylko do administratora serwisu)"; -App::$strings["Your Webbie:"] = "Twój Webbie:"; -App::$strings["Fontsize (px):"] = "Wielkość czcionki (px):"; -App::$strings["Link:"] = "Link:"; -App::$strings["Like us on Hubzilla"] = "Polub nas na Hubzilli"; -App::$strings["Embed:"] = "Osadzone:"; -App::$strings["Save Settings"] = "Zapisz ustawienia"; -App::$strings["text to include in all outgoing posts from this site"] = "tekst do umieszczania we wszystkich wpisach wychodzących z tej witryny"; -App::$strings["lonely"] = "samotny"; -App::$strings["drunk"] = "pijany"; -App::$strings["horny"] = "seksualnie podniecony"; -App::$strings["stoned"] = "zjarany"; -App::$strings["fucked up"] = "spieprzone"; -App::$strings["clusterfucked"] = "klasterfucked"; -App::$strings["crazy"] = "zwariowany"; -App::$strings["hurt"] = "ból"; -App::$strings["sleepy"] = "senny"; -App::$strings["grumpy"] = "gderliwy"; -App::$strings["high"] = "wysoki"; -App::$strings["semi-conscious"] = "półprzytomny"; -App::$strings["in love"] = "zakochany"; -App::$strings["in lust"] = "w pożądaniu"; -App::$strings["naked"] = "nagi"; -App::$strings["stinky"] = "śmierdzący"; -App::$strings["sweaty"] = "spocony"; -App::$strings["bleeding out"] = "wykrwawiać się"; -App::$strings["victorious"] = "zwycięski"; -App::$strings["defeated"] = "pokonany"; -App::$strings["envious"] = "zazdrosny"; -App::$strings["jealous"] = "zazdrosny"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych wizyt na stronie (rezygnacja)."; -App::$strings["Piwik Base URL"] = "Bazowy adres URL Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym ukośnikiem)"; -App::$strings["Site ID"] = "ID witryny"; -App::$strings["Show opt-out cookie link?"] = "Pokazać link do rezygnacji z pliku cookie?"; -App::$strings["Asynchronous tracking"] = "Śledzenie asynchroniczne"; -App::$strings["Enable frontend JavaScript error tracking"] = "Włącz śledzenie błędów JavaScript w interfejsie użytkownika"; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Ta funkcjonalność wymaga Piwik >= 2.2.0"; -App::$strings["Access Denied"] = "Dostęp zabroniony"; -App::$strings["Enable Community Moderation"] = "Włącz moderację społecznościową"; -App::$strings["Reputation automatically given to new members"] = "Reputacja przyznawana automatycznie nowym członkom"; -App::$strings["Reputation will never fall below this value"] = "Reputacja nigdy nie spadnie poniżej tej wartości"; -App::$strings["Minimum reputation before posting is allowed"] = "Dozwolona jest minimalna reputacja przed rozpoczęciem wpisów"; -App::$strings["Minimum reputation before commenting is allowed"] = "Dozwolona jest minimalna reputacja przed rozpoczęciem komentowania"; -App::$strings["Minimum reputation before a member is able to moderate other posts"] = "Minimalna reputacja, zanim członek będzie mógł moderować inne wpisy"; -App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = "Maksymalny współczynnik reputacji moderatora, który można dodać do reputacji moderowanej osoby lub od niej odjąć"; -App::$strings["Reputation \"cost\" to post"] = "\"Koszt\" reputacji dla wpisu"; -App::$strings["Reputation \"cost\" to comment"] = "\"Koszt\" reputacji dla komentarza"; -App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = "Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie osiągnie minimum_to_post"; -App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = "Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na jest z taką szybkością na godzinę"; -App::$strings["Community Moderation Settings"] = "Ustawienia moderowania społecznościowego"; -App::$strings["Channel Reputation"] = "Reputacja kanału"; -App::$strings["An Error has occurred."] = "Wystąpił błąd."; -App::$strings["Upvote"] = "Głosuj za"; -App::$strings["Downvote"] = "Głosuj przeciw"; -App::$strings["Can moderate reputation on my channel."] = "Mogę moderować reputację na moim kanale."; -App::$strings["Errors encountered deleting database table "] = "Napotkano błędy podczas usuwania tabeli bazy danych "; -App::$strings["Submit Settings"] = "Prześlij ustawienia"; -App::$strings["Drop tables when uninstalling?"] = "Usunąć tabele podczas odinstalowywania?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele z bazy danych Rendezvous."; -App::$strings["Mapbox Access Token"] = "Token dostępu Mapbox"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap."; -App::$strings["Rendezvous"] = "Rendezvous"; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby zarejestrować nową tożsamość. Możesz użyć tej samej nazwy."; -App::$strings["Welcome to Rendezvous!"] = "Witamy w Rendezvous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni będą mogli Cię zobaczyć na mapie."; -App::$strings["Let's meet here"] = "Spotkajmy się tutaj"; -App::$strings["New marker"] = "Nowy znacznik"; -App::$strings["Edit marker"] = "Edytuj znacznik"; -App::$strings["New identity"] = "Nowa tożsamość"; -App::$strings["Delete marker"] = "Usuń znacznik"; -App::$strings["Delete member"] = "Usuń członka"; -App::$strings["Edit proximity alert"] = "Edytuj alert zbliżeniowy"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby wyłączyć):"; -App::$strings["distance"] = "odległość"; -App::$strings["Proximity alert distance (meters)"] = "Odległość ostrzeżenia o bliskości (metry)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym promieniu od lokalizacji znacznika.

Wprowadź promień w metrach (0, aby wyłączyć):"; -App::$strings["Marker proximity alert"] = "Ostrzeżenie o bliskości znacznika"; -App::$strings["Reminder note"] = "Notatka przypominająca"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej odległości ..."; -App::$strings["Add new rendezvous"] = "Dodaj nowe spotkanie"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą wyświetlać lokalizacje innych członków, dodawać znaczniki do mapy lub udostępniać własne lokalizacje grupie."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Nie masz spotkania. Naciśnij przycisk powyżej, aby utworzyć spotkanie!"; -App::$strings["Skeleton App"] = "Aplikacja Szkielet"; -App::$strings["A skeleton for addons, you can copy/paste"] = "Szkielet dodatków, który można skopiować i wkleić"; -App::$strings["Some setting"] = "Jakieś ustawienie"; -App::$strings["A setting"] = "Ustawienie"; -App::$strings["Skeleton Settings"] = "Ustawienia Szkieletu"; -App::$strings["Post to Hubzilla"] = "Wyślij do kanału Hubzilli"; -App::$strings["Channel is required."] = "Wymagane jest podanie kanału."; -App::$strings["Hubzilla Crosspost Connector Settings saved."] = "Ustawienia Konektora Hubzilla zostały zapisane."; -App::$strings["Hubzilla Crosspost Connector App"] = "Aplikacja Konektor Hubzilla"; -App::$strings["Relay public postings to another Hubzilla channel"] = "Przekaż publiczne wpisy na inny kanał Hubzilla"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Domyślnie wysyłaj publiczne wpisy do kanału Hubzilla"; -App::$strings["Hubzilla API Path"] = "Ścieżka API Hubzilla"; -App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; -App::$strings["Hubzilla login name"] = "Nazwa logowania Hubzilla"; -App::$strings["Hubzilla channel name"] = "Nazwa kanału Hubzilla"; -App::$strings["Nickname"] = "Pseudonim"; -App::$strings["Hubzilla password"] = "Hasło Hubzilla"; -App::$strings["Hubzilla Crosspost Connector"] = "Konektor Hubzilla"; -App::$strings["TOTP Two-Step Verification"] = "Weryfikacja dwuetapowa TOTP"; -App::$strings["Enter the 2-step verification generated by your authenticator app:"] = "Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:"; -App::$strings["Success!"] = "Powodzenie!"; -App::$strings["Invalid code, please try again."] = "Nieprawidłowy kod, proszę spróbować ponownie."; -App::$strings["Too many invalid codes..."] = "Za dużo nieprawidłowych kodów ..."; -App::$strings["Verify"] = "Zweryfikuj"; -App::$strings["You haven't set a TOTP secret yet.\nPlease click the button below to generate one and register this site\nwith your preferred authenticator app."] = "Nie ustawiłeś jeszcze sekretu TOTP.\nKliknij przycisk poniżej, aby to wygenerować i zarejestrować witrynę\nw preferowanej aplikacji uwierzytelniającej."; -App::$strings["Your TOTP secret is"] = "Twój sekret TOTP to"; -App::$strings["Be sure to save it somewhere in case you lose or replace your mobile device.\nUse your mobile device to scan the QR code below to register this site\nwith your preferred authenticator app."] = "Zapisz go gdzieś na wypadek zgubienia lub wymiany urządzenia mobilnego.\nUżyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą witrynę\nw preferowanej aplikacji uwierzytelniającej."; -App::$strings["Test"] = "Test"; -App::$strings["Generate New Secret"] = "Generowanie nowego sekretu"; -App::$strings["Go"] = "Idź dalej"; -App::$strings["Enter your password"] = "Wprowadź swoje hasło"; -App::$strings["enter TOTP code from your device"] = "wprowadź kod TOTP z urządzenia"; -App::$strings["Pass!"] = "Przeszło!"; -App::$strings["Fail"] = "Błąd"; -App::$strings["Incorrect password, try again."] = "Nieprawidłowe hasło, spróbuj ponownie."; -App::$strings["Record your new TOTP secret and rescan the QR code above."] = "Zapisz swój nowy sekret TOTP i ponownie przeskanuj powyższy kod QR."; -App::$strings["TOTP Settings"] = "Ustawienia TOTP"; -App::$strings["Your account on %s will expire in a few days."] = "Twoje konto na %s wygaśnie za kilka dni."; -App::$strings["Your $Productname test account is about to expire."] = "Twoje konto testowe $Productname wkrótce wygaśnie."; -App::$strings["An account has been created for you."] = "Konto zostało dla Ciebie utworzone."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta jest wyłączone."; -App::$strings["DB Cleanup Failure"] = "Błąd czyszczenia bazy danych"; -App::$strings["[cart] Item Added"] = "[koszyk] Dodano element"; -App::$strings["Order already checked out."] = "Zamówienie już jest wyrejestrowane."; -App::$strings["Drop database tables when uninstalling."] = "Usuń tabele bazy danych podczas odinstalowywania."; -App::$strings["Cart Settings"] = "Ustawienia koszyka"; -App::$strings["Shop"] = "Sklep"; -App::$strings["Order Not Found"] = "Nie znaleziono zamówienia"; -App::$strings["Cart utilities for orders and payments"] = "Narzędzia koszyka do zamówień i płatności"; -App::$strings["You must be logged into the Grid to shop."] = "Aby robić zakupy, musisz być zalogowany do sieci."; -App::$strings["Order not found."] = "Nie znaleziono zamówienia."; -App::$strings["Access denied."] = "Dostęp zabroniony."; -App::$strings["No Order Found"] = "Nie znaleziono zamówienia"; -App::$strings["An unknown error has occurred Please start again."] = "Wystąpił nieznany błąd. Zacznij od nowa."; -App::$strings["Requirements not met."] = "Nie spełnia wymagań."; -App::$strings["Review your order and complete any needed requirements."] = "Przejrzyj swoje zamówienie i spełnij wszystkie wymagania."; -App::$strings["Invalid Payment Type. Please start again."] = "Nieprawidłowy typ płatności. Zacznij od nowa."; -App::$strings["Order not found"] = "Nie znaleziono zamówienia"; -App::$strings["Enable Order/Item Options"] = "Włącz opcję Zamówienie/Element"; -App::$strings["Label"] = "Etykieta"; -App::$strings["Instructions"] = "Instukcje"; -App::$strings["Enable Hubzilla Services Module"] = "Włącz moduł usług Hubzilla"; -App::$strings["New Sku"] = "Nowy SKU"; -App::$strings["Cannot save edits to locked item."] = "Nie można zapisać zmian w zablokowanym elemencie."; -App::$strings["SKU not found."] = "Nie znaleziono SKU."; -App::$strings["Invalid Activation Directive."] = "Nieprawidłowa dyrektywa aktywacyjna."; -App::$strings["Invalid Deactivation Directive."] = "Nieprawidłowa dyrektywa dezaktywacyjna."; -App::$strings["Add to this privacy group"] = "Dodaj do tej grupy prywatności"; -App::$strings["Set user service class"] = "Ustaw klasę usług użytkownika"; -App::$strings["You must be using a local account to purchase this service."] = "Aby kupić tę usługę, musisz korzystać z konta lokalnego."; -App::$strings["Changes Locked"] = "Zmiany zablokowane"; -App::$strings["Item available for purchase."] = "Element dostępny do zakupu."; -App::$strings["Price"] = "Cena"; -App::$strings["Photo URL"] = "Adres URL zdjęcia"; -App::$strings["Add buyer to privacy group"] = "Dodaj kupującego do grupy prywatności"; -App::$strings["Add buyer as connection"] = "Dodaj kupującego jako połączenie"; -App::$strings["Set Service Class"] = "Ustaw klasę usługi"; -App::$strings["Enable Subscription Management Module"] = "Włącz moduł zarządzania subskrypcjami"; -App::$strings["Cannot include subscription items with different terms in the same order."] = "Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej kolejności."; -App::$strings["Select Subscription to Edit"] = "Wybierz subskrypcję do edycji"; -App::$strings["Edit Subscriptions"] = "Edytuj subskrypcje"; -App::$strings["Subscription SKU"] = "Subskrypcja SKU"; -App::$strings["Catalog Description"] = "Opis katalogu"; -App::$strings["Subscription available for purchase."] = "Subskrypcja dostępna do zakupu."; -App::$strings["Maximum active subscriptions to this item per account."] = "Maksymalna liczba aktywnych subskrypcji tego elementu na konto."; -App::$strings["Subscription price."] = "Cena subskrypcji."; -App::$strings["Quantity"] = "Ilość"; -App::$strings["Term"] = "Termin"; -App::$strings["Enable Paypal Button Module (API-v2)"] = "Włącz moduł przycisków Paypal (API-v2)"; -App::$strings["Use Production Key"] = "Użyj klucza produkcyjnego"; -App::$strings["Paypal Sandbox Client Key"] = "Klucz klienta Paypal Sandbox"; -App::$strings["Paypal Sandbox Secret Key"] = "Tajny klucz Paypal Sandbox"; -App::$strings["Paypal Production Client Key"] = "Klucz klienta produkcyjny Paypal"; -App::$strings["Paypal Production Secret Key"] = "Tajny klucz produkcyjny Paypal"; -App::$strings["Paypal button payments are not enabled."] = "Płatności za pomocą przycisku PayPal nie są włączone."; -App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz inną opcję płatności."; -App::$strings["Enable Paypal Button Module"] = "Włącz moduł przycisku Paypal"; -App::$strings["Enable Manual Cart Module"] = "Włącz moduł ręcznego koszyka"; -App::$strings["Access Denied."] = "Dostęp zabroniony."; -App::$strings["Invalid Item"] = "Zła pozycja"; -App::$strings["Error: order mismatch. Please try again."] = "Błąd: niezgodność zamówienia. Proszę spróbuj ponownie."; -App::$strings["Manual payments are not enabled."] = "Płatności ręczne nie są włączone."; -App::$strings["Finished"] = "Zakończone"; -App::$strings["Enable Test Catalog"] = "Włącz katalog testów"; -App::$strings["Enable Manual Payments"] = "Włącz płatności ręczne"; -App::$strings["Base Merchant Currency"] = "Podstawowa waluta sprzedawcy"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania za pomocą podanego przez Ciebie identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora."; -App::$strings["The error message was:"] = "Komunikat o błędzie brzmi:"; -App::$strings["First Name"] = "Imię"; -App::$strings["Last Name"] = "Nazwisko"; -App::$strings["Full Name"] = "Pełna nazwa"; -App::$strings["Profile Photo 16px"] = "Zdjęcie profilowe 16px"; -App::$strings["Profile Photo 32px"] = "Zdjęcie profilowe 32px"; -App::$strings["Profile Photo 48px"] = "Zdjęcie profilowe 48px"; -App::$strings["Profile Photo 64px"] = "Zdjęcie profilowe 64px"; -App::$strings["Profile Photo 80px"] = "Zdjęcie profilowe 80px"; -App::$strings["Profile Photo 128px"] = "Zdjęcie profilowe 128px"; -App::$strings["Birth Year"] = "Rok urodzenia"; -App::$strings["Birth Month"] = "Miesiąc urodzenia"; -App::$strings["Birth Day"] = "Dzień urodzenia"; -App::$strings["Birthdate"] = "Data urodzenia"; -App::$strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Brak identyfikatora."; -App::$strings["Hubzilla File Storage Import"] = "Import z magazynu plików Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu Hubzilla."; -App::$strings["Hubzilla Server base URL"] = "Bazowy adres URL serwera Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Od daty modyfikacji rrrr-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Do daty modyfikacji rrrr-mm-dd"; -App::$strings["Diaspora Protocol Settings updated."] = "Zaktualizowano ustawienia protokołu Diaspora."; -App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; -App::$strings["Diaspora Protocol App"] = "Aplikacja Protokół Diaspora"; -App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy"; -App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować lub aprobować Twoje publiczne wpisy"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Zapobiegaj przekierowywaniu hasztagów do innych witryn"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Podpisuj i przesyłaj dalej wpisy i komentarze bez podpisu Diaspory"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Obserwowane hasztagi (oddzielone przecinkami, nie dodawaj #)"; -App::$strings["Diaspora Protocol"] = "Protokół Diaspora"; -App::$strings["No username found in import file."] = "W pliku importu nie znaleziono nazwy użytkownika."; -App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "%1\$s niepolubień %2\$s %3\$s"; -App::$strings["Please install the statistics addon to be able to configure a diaspora relay"] = "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory"; -App::$strings["Diaspora Relay Handle"] = "Uchwyt konektora Diaspory"; -App::$strings["Address of a diaspora relay. Example: relay@diasporarelay.tld"] = "Adres konektora diaspory. Przykład: relay@diasporarelay.tld"; -App::$strings["Diaspora relay could not be imported"] = "Nie można zaimportować konektora diaspory"; -App::$strings["Hubzilla Directory Stats"] = "Statystyki katalogowe Hubzilla"; -App::$strings["Total Hubs"] = "Razem węzłów"; -App::$strings["Hubzilla Hubs"] = "Węzły Hubzilla"; -App::$strings["Friendica Hubs"] = "Węzły Friendica"; -App::$strings["Diaspora Pods"] = "Pody Diaspora"; -App::$strings["Hubzilla Channels"] = "Kanały Hubzilla"; -App::$strings["Friendica Channels"] = "Kanały Friendica"; -App::$strings["Diaspora Channels"] = "Kanały Diaspora"; -App::$strings["Aged 35 and above"] = "W wieku 35 lat i więcej"; -App::$strings["Aged 34 and under"] = "W wieku 34 lat i poniżej"; -App::$strings["Average Age"] = "Średni wiek"; -App::$strings["Known Chatrooms"] = "Znane czaty"; -App::$strings["Known Tags"] = "Znane tagi"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to również czatów,"; -App::$strings["Show Upload Limits"] = "Pokaż limity przesyłania"; -App::$strings["Hubzilla configured maximum size: "] = "Maksymalny rozmiar skonfigurowany w Hubzilli: "; -App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (musi być większe od upload_max_filesize): "; -App::$strings["Hide Aside App"] = "Aplikacja Hide Aside"; -App::$strings["Fade out aside areas after a while when using endless scroll"] = "Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania"; -App::$strings["Installed"] = "Zainstalowane"; -App::$strings["You're welcome."] = "Proszę bardzo."; -App::$strings["Ah shucks..."] = "O cholera ..."; -App::$strings["Don't mention it."] = "Nie wspominaj o tym."; -App::$strings["<blush>"] = "<rumieniec>"; -App::$strings["View Larger"] = "Zobacz większe"; -App::$strings["Tile Server URL"] = "Adres URL serwera kafelków rastrowych"; -App::$strings["A list of public tile servers"] = "Lista publicznych serwerów kafelków"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "Adres URL serwera Nominatim (odwrotne geokodowanie)"; -App::$strings["A list of Nominatim servers"] = "Lista serwerów Nominatim"; -App::$strings["Default zoom"] = "Powiększenie domyślne"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od serwera kafelków)"; -App::$strings["Include marker on map"] = "Uwzględnij znacznik na mapie"; -App::$strings["Include a marker on the map."] = "Umieść znacznik na tej mapie."; -App::$strings["Livejournal Crosspost Connector App"] = "Aplikacja Konektor Wpisów do Livejournal"; -App::$strings["Relay public posts to Livejournal"] = "Przekazuj publiczne wpisy do Livejournal"; -App::$strings["Livejournal username"] = "Nazwa użytkownika w Livejournal"; -App::$strings["Livejournal password"] = "Hasło do Livejournal"; -App::$strings["Post to Livejournal by default"] = "Domyślnie wysyłaj do Livejournal"; -App::$strings["Send wall-to-wall posts to Livejournal"] = "Wysyłaj \"rozwinięte\" wpisy do Livejournal"; -App::$strings["Add link to original post"] = "Dodaj odnośnik do oryginalnego wpisu"; -App::$strings["Livejournal Crosspost Connector"] = "Konektor Livejournal"; -App::$strings["Post to Livejournal"] = "Publikuj w Livejournal"; -App::$strings["Posted by"] = "Wysłane przez"; -App::$strings["Workflow user."] = "Przepływ pracy użytkownika."; -App::$strings["This channel"] = "Ten kanał"; -App::$strings["Workflow"] = "Przepływ pracy"; -App::$strings["No Workflows Available"] = "Żaden przepływ nie jest dostępny"; -App::$strings["Add item to which workflow"] = "Dodaj element do przepływu pracy"; -App::$strings["Create Workflow Item"] = "Utwórz element przepływu pracy"; -App::$strings["Link"] = "Link"; -App::$strings["Web link."] = "Link do strony internetowej."; -App::$strings["Brief description or title"] = "Krótki opis lub tytuł"; -App::$strings["Notes and Info"] = "Uwagi i informacje"; -App::$strings["Body"] = "Ciało"; -App::$strings["Workflow Settings"] = "Ustawienia przepływu pracy"; -App::$strings["Jabber BOSH host"] = "Host Jabber BOSH"; -App::$strings["Use central userbase"] = "Użyj centralnej bazy użytkowników"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Jeśli jest włączone, członkowie będą automatycznie logować się do serwera ejabberd, który musi być zainstalowany na tym komputerze z zsynchronizowanymi danymi uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”."; -App::$strings["XMPP settings updated."] = "Zaktualizowano ustawienia XMPP."; -App::$strings["XMPP App"] = "Aplikacja XMPP"; -App::$strings["Embedded XMPP (Jabber) client"] = "Osadzony klient XMPP (Jabber)"; -App::$strings["Individual credentials"] = "Indywidualne poświadczenia"; -App::$strings["Jabber BOSH server"] = "Serwer Jabber BOSH"; -App::$strings["XMPP Settings"] = "Ustawienia XMPP"; -App::$strings["Superblock App"] = "Aplikacja Superblock"; -App::$strings["Block channels"] = "Blokuj kanał"; -App::$strings["superblock settings updated"] = "zaktualizowano ustawienia superbloku"; -App::$strings["Currently blocked"] = "Obecnie zablokowane"; -App::$strings["No channels currently blocked"] = "Obecnie żadne kanały nie są zablokowane"; -App::$strings["Block Completely"] = "Zablokuj całkowicie"; -App::$strings["Random Planet App"] = "Aplikacja Losowa Planeta"; -App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych Wojen"; -App::$strings["Possible adult content"] = "Możliwe treści dla dorosłych"; -App::$strings["%s - view"] = "%s - widok"; -App::$strings["NSFW Settings saved."] = "Zapisano ustawienia NSFW."; -App::$strings["NSFW App"] = "Aplikacja NSFW"; -App::$strings["Collapse content that contains predefined words"] = "Zwija treść zawierającą określone słowa"; -App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie treści zawierające te słowa kluczowe, aby nie były wyświetlane w nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich treści zawierających nagość tagiem #NSFW. Ten filtr może również pasować do dowolnego innego określonego słowa lub tekstu, dzięki czemu może być używany jako filtr treści ogólnego przeznaczenia."; -App::$strings["Comma separated list of keywords to hide"] = "Lista słów kluczowych rozdzielona przecinkami"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Słowo, /wyrażenie regularne/, lang=xx, lang!=xx"; -App::$strings["NSFW"] = "NSFW"; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Tic-Tac-Toe"; -App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; -App::$strings["New game"] = "Nowa gra"; -App::$strings["New game with handicap"] = "Nowa gra z handicapem"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. "; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym poziomie, a także w górę, w dół i po przekątnej na różnych poziomach."; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz zajmujący to pole często ma nieuczciwą przewagę."; -App::$strings["You go first..."] = "Ty pierwszy ..."; -App::$strings["I'm going first this time..."] = "Tym razem idę pierwszy ..."; -App::$strings["You won!"] = "Wygrałeś!"; -App::$strings["\"Cat\" game!"] = "Gra \"Kot\"!"; -App::$strings["I won!"] = "Wygrałem!"; -App::$strings["Photo Cache settings saved."] = "Zapisano ustawienia pamięci podręcznej zdjęć."; -App::$strings["Photo Cache addon saves a copy of images from external sites locally to increase your anonymity in the web."] = "Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby zwiększyć Twoją anonimowość w sieci."; -App::$strings["Photo Cache App"] = "Aplikacja Bufor zdjęć"; -App::$strings["Minimal photo size for caching"] = "Minimalny rozmiar zdjęcia do buforowania"; -App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = "W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami systemowymi."; -App::$strings["Photo Cache"] = "Bufor zdjęć"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Szukaj %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = "Szukaj w \$Projectname"; -App::$strings["Libertree Crosspost Connector Settings saved."] = "Zapisano ustawienia Libertree Crosspost Connector."; -App::$strings["Libertree Crosspost Connector App"] = "Konektora Wpisów do Libertree"; -App::$strings["Relay public posts to Libertree"] = "Przekazuj publiczne posty do Libertree"; -App::$strings["Libertree API token"] = "Token API Libertree"; -App::$strings["Libertree site URL"] = "Adres URL witrny Libertree"; -App::$strings["Post to Libertree by default"] = "Domyślnie publikuj w Libertree"; -App::$strings["Libertree Crosspost Connector"] = "Libertree Crosspost Connector"; -App::$strings["Post to Libertree"] = "Publikuj w Libertree"; -App::$strings["Flag Adult Photos"] = "Oznaczanie zdjęć dla dorosłych"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w domyślnym widoku albumu"; -App::$strings["Post to GNU social"] = "Publikuj w serwisie społecznościowym GNU"; -App::$strings["API URL"] = "Adres URL API"; -App::$strings["Application name"] = "Nazwa aplikacji"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API jest nieprawidłowy."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce."; -App::$strings["GNU social settings updated."] = "Ustawienia społecznościowe GNU zostały zaktualizowane."; -App::$strings["Relay public postings to a connected GNU social account (formerly StatusNet)"] = "Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU (dawniej StatusNet)"; -App::$strings["Globally Available GNU social OAuthKeys"] = "Globalnie dostępne klucze OAuthKey społecznościowe GNU"; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń.
Jeśli nie możesz połączyć się z inną instancją społecznościową GNU (patrz poniżej)."; -App::$strings["Provide your own OAuth Credentials"] = "Podaj własne dane logowania OAuth"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie społecznościowym GNU, skopiuj tutaj parę kluczy klienta i wprowadź podstawowy katalog główny API.
Przed zarejestrowaniem własnej pary kluczy OAuth zapytaj administratora, czy istnieje już para kluczy dla tej instalacji Hubzilli w Twojej ulubionej instalacji społecznościowej GNU."; -App::$strings["OAuth Consumer Key"] = "Klucz klienta OAuth"; -App::$strings["OAuth Consumer Secret"] = "Tajny klucz klienta OAuth"; -App::$strings["Base API Path"] = "Podstawowa ścieżka API"; -App::$strings["Remember the trailing /"] = "Zapamiętaj końcowy ukośnik /"; -App::$strings["GNU social application name"] = "Nazwa aplikacji społecznościowej GNU"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje publiczne wpisy będą publikowane w społecznościach GNU."; -App::$strings["Log in with GNU social"] = "Zaloguj się za pomocą serwisu społecznościowego GNU"; -App::$strings["Copy the security code from GNU social here"] = "Skopiuj tutaj kod bezpieczeństwa z GNU Social"; -App::$strings["Cancel Connection Process"] = "Anuluj proces łączenia"; -App::$strings["Current GNU social API is"] = "Obecne API społecznościowe GNU to"; -App::$strings["Cancel GNU social Connection"] = "Anuluj połączenie społecznościowe GNU"; -App::$strings["Currently connected to: "] = "Obecnie połączony z: "; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik (Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, będzie kierował odwiedzającego na pustą stronę z informacją dla odwiedzającego, że dostęp do Twojego profilu został ograniczony."; -App::$strings["Post to GNU social by default"] = "Wysyłaj domyślnie do społeczności GNU"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na powiązane konto społecznościowe GNU"; -App::$strings["Clear OAuth configuration"] = "Wyczyść konfigurację OAuth"; -App::$strings["GNU-Social Crosspost Connector"] = "GNU-Social Crosspost Connector"; -App::$strings["Who likes me?"] = "Kto mnie lubi?"; -App::$strings["ActivityPub Protocol Settings updated."] = "Zaktualizowano ustawienia ActivityPub Protocol."; -App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; -App::$strings["Activitypub Protocol App"] = "Aplikacja Protokół Activitypub"; -App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Dostarcz do odbiorców ActivityPub w grupach prywatności"; -App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej grupy prywatności"; -App::$strings["Send multi-media HTML articles"] = "Wysyłaj multimedialne artykuły HTML"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Nieobsługiwane przez niektóre usługi mikroblogów, takie jak Mastodon"; -App::$strings["Activitypub Protocol"] = "Activitypub Protocol"; -App::$strings["Post to Insane Journal"] = "Publikuj w Insane Journal"; -App::$strings["Insane Journal Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Insane Journal."; -App::$strings["Insane Journal Crosspost Connector App"] = "Aplikacja Konektor Insane Journal"; -App::$strings["Relay public postings to Insane Journal"] = "Przekaż publiczne wpisy do Insane Journal"; -App::$strings["InsaneJournal username"] = "Nazwa użytkownika InsaneJournal"; -App::$strings["InsaneJournal password"] = "Hasło InsaneJournal"; -App::$strings["Post to InsaneJournal by default"] = "Domyślnie publikuj w InsaneJournal"; -App::$strings["Insane Journal Crosspost Connector"] = "Konektor Insane Journal"; -App::$strings["Max queueworker threads"] = "Maksymalna liczba wątków w kolejce"; -App::$strings["Minimum 4, default 4"] = "Minimum 4, domyślnie 4"; -App::$strings["Assume workers dead after"] = "Załóż, że workery wygasają po"; -App::$strings["Minimum 120, default 300 seconds"] = "Minimum 120, domyślnie 300 sekund"; -App::$strings["Pause before starting next task"] = "Zatrzymaj się przed rozpoczęciem następnego zadania"; -App::$strings["Minimum 100, default 100 microseconds"] = "Minimum 100, domyślnie 100 mikrosekund"; -App::$strings["Queueworker Settings"] = "Ustawienia Queueworkera"; -App::$strings["Not allowed."] = "Niedozwolone."; -App::$strings["generic profile image"] = "ogólne zdjęcie profilowe"; -App::$strings["random geometric pattern"] = "losowy wzór geometryczny"; -App::$strings["monster face"] = "twarz potwora"; -App::$strings["computer generated face"] = "wygenerowana komputerowo twarz"; -App::$strings["retro arcade style face"] = "twarz w stylu retro arcade"; -App::$strings["Hub default profile photo"] = "Domyślne zdjęcie profilowe serwisu"; -App::$strings["Information"] = "Informacje"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara."; -App::$strings["Default avatar image"] = "Domyślny obraz awatara"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. Zobacz README"; -App::$strings["Rating of images"] = "Ocena zdjęć"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Wybierz odpowiednią ocenę awatara dla swojej witryny. Zobacz README"; -App::$strings["Gravatar settings updated."] = "Zaktualizowano ustawienia Gravatara."; -App::$strings["Network error"] = "Błąd sieci"; -App::$strings["API error"] = "Błąd API"; -App::$strings["Unknown issue"] = "Nieznany problem"; -App::$strings["Unable to login using email address "] = "Nie można zalogować się przy użyciu adresu e-mail "; -App::$strings["Sign in to Hubzilla using a social account"] = "Zaloguj się do Hubzilli za pomocą konta społecznościowego"; -App::$strings["Social Authentication using your social media account"] = "Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych"; -App::$strings["This app enables one or more social provider sign-in buttons on the login page."] = "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego przycisku logowania dostawcy usług społecznościowych."; -App::$strings["Add an identity provider"] = "Dodaj dostawcę tożsamości"; -App::$strings["Enable "] = "Włącz "; -App::$strings["Key"] = "Klucz"; -App::$strings["Word"] = "Słowo"; -App::$strings["Secret"] = "Sekret"; -App::$strings["Add a custom provider"] = "Dodaj własnego dostawcę"; -App::$strings["Remove an identity provider"] = "Usuń dostawcę tożsamości"; -App::$strings["Social authentication"] = "Uwierzytelnianie społecznościowe"; -App::$strings["Error while saving provider settings"] = "Błąd podczas zapisywania ustawień dostawcy"; -App::$strings["Custom provider already exists"] = "Własny dostawca już istnieje"; -App::$strings["Social authentication settings saved."] = "Zapisano ustawienia uwierzytelniania społecznościowego."; -App::$strings["Send your identity to all websites"] = "Wyślij swoją tożsamość do wszystkich witryn internetowych"; -App::$strings["Sendzid App"] = "Aplikacja Sendzid"; -App::$strings["Send ZID"] = "Wyślij ZID"; -App::$strings["Photos imported"] = "Zdjęcia zaimportowane"; -App::$strings["Redmatrix Photo Album Import"] = "Import albumu fotograficznego Redmatrix"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego kanału."; -App::$strings["Redmatrix Server base URL"] = "Podstawowy adres URL serwera Redmatrix"; -App::$strings["Redmatrix Login Username"] = "Nazwa użytkownika logowania w Redmatrix"; -App::$strings["Redmatrix Login Password"] = "Hasło logowania do Redmatrix"; -App::$strings["Import just this album"] = "Zaimportuj tylko ten album"; -App::$strings["Leave blank to import all albums"] = "Pozostaw puste, aby zaimportować wszystkie albumy"; -App::$strings["Maximum count to import"] = "Maksymalna liczba albumów do zaimportowania"; -App::$strings["0 or blank to import all available"] = "0 lub puste, aby zaimportować wszystkie dostępne"; -App::$strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera."; -App::$strings["Twitter Crosspost Connector App"] = "Aplikacja Twitter Crosspost Connector"; -App::$strings["Relay public posts to Twitter"] = "Przekazuj publiczne wpisy na Twitter"; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z administratorem witryny."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane tylko Twoje publiczne wpisy."; -App::$strings["Log in with Twitter"] = "Zaloguj się za pomocą Twittera"; -App::$strings["Copy the PIN from Twitter here"] = "Skopiuj tutaj PIN z Twittera"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = " Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj szczegóły swojego profilu przed nieznanymi widzami?) ten link, potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, będzie prowadził odwiedzającego do pustej strony informującej gościa, że dostęp do Twojego profilu został ograniczony."; -App::$strings["Twitter post length"] = "Długość wpisu na Twitterze"; -App::$strings["Maximum tweet length"] = "Maksymalna długość tweeta"; -App::$strings["Send public postings to Twitter by default"] = "Domyślnie wysyłaj publiczne wpisy na Twitter"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane na powiązanym koncie Twittera"; -App::$strings["Twitter Crosspost Connector"] = "Twitter Crosspost Connector"; -App::$strings["Post to Twitter"] = "Opublikuj na Twitterze"; -App::$strings["Project Servers and Resources"] = "Serwery projektów i zasoby"; -App::$strings["Project Creator and Tech Lead"] = "Twórca projektu i kierownik techniczny"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, którzy poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za usługi, którymi dzielą się z innymi."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych - Ty tak )."; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości internetowej i prywatności."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także pomagają nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju."; -App::$strings["Donate"] = "Wspomóż"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową darowizną"; -App::$strings["Donate Now"] = "Wpłać teraz"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "lub zostań sponsorem projektu (tylko Projekt Hubzilla)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej liście sponsorów"; -App::$strings["Sponsor"] = "Sponsor"; -App::$strings["Special thanks to: "] = "Specjalne podziękowania dla: "; -App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Dreamwidth."; -App::$strings["Dreamwidth Crosspost Connector App"] = "Aplikacja Konektor Dreamwidth"; -App::$strings["Relay public posts to Dreamwidth"] = "Przekazuj publiczne wpisy do Dreamwidth"; -App::$strings["Dreamwidth username"] = "Nazwa użytkownika Dreamwidth"; -App::$strings["Dreamwidth password"] = "Hasło Dreamwidth"; -App::$strings["Post to Dreamwidth by default"] = "Domyślnie publikuj na Dreamwidth"; -App::$strings["Link description (default:"] = "Opis odnośnika (domyślnie:"; -App::$strings["Dreamwidth Crosspost Connector"] = "Konektor Dreamwidth"; -App::$strings["Post to Dreamwidth"] = "Publikuj na Dreamwidth"; -App::$strings["nofed Settings saved."] = "nofed - zapisano ustawienie."; -App::$strings["No Federation App"] = "Aplikacja Bez Federalizacji"; -App::$strings["Prevent posting from being federated to anybody. It will exist only on your channel page."] = "Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na stronie Twojego kanału."; -App::$strings["Federate posts by default"] = "Domyślnie, wpisy federacyjne"; -App::$strings["No Federation"] = "Brak Federalizacji"; -App::$strings["Federate"] = "Federalizacja"; -App::$strings["WYSIWYG status editor"] = "Edytor aplikacji WYSIWYG Status"; -App::$strings["WYSIWYG Status App"] = "Aplikacja WYSIWYG Status"; -App::$strings["WYSIWYG Status"] = "WYSIWYG Status"; -App::$strings["No server specified"] = "Nie określono serwera"; -App::$strings["Posts imported"] = "Zaimportowano wpisy"; -App::$strings["Files imported"] = "Zaimportowano pliki"; -App::$strings["This addon app copies existing content and file storage to a cloned/copied channel. Once the app is installed, visit the newly installed app. This will allow you to set the location of your original channel and an optional date range of files/conversations to copy."] = "Ten dodatek kopiuje istniejące treści i magazyn plików do sklonowanego lub skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego zakresu dat plików lub konwersacji do skopiowania."; -App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = "Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli masz dużo wpisów lun plików."; -App::$strings["Include posts"] = "Dołącz wpisy"; -App::$strings["Conversations, Articles, Cards, and other posted content"] = "Rozmowy, artykuły, karty i inne opublikowane treści"; -App::$strings["Include files"] = "Dołącz pliki"; -App::$strings["Files, Photos and other cloud storage"] = "Pliki, zdjęcia i inne przechowywane w chmurze rzeczy"; -App::$strings["Original Server base URL"] = "Oryginalny podstawowy adres URL serwera"; -App::$strings["Your channel has been upgraded to \$Projectname version"] = "Twój kanał został uaktualniony do wersji \$Projectname"; -App::$strings["Please have a look at the"] = "Proszę spojrzeć na"; -App::$strings["git history"] = "historia repozytorium Git"; -App::$strings["change log"] = "dziennik zmian"; -App::$strings["for further info."] = "po dalsze informacje."; -App::$strings["Upgrade Info"] = "Informacja o aktualizacji"; -App::$strings["Do not show this again"] = "Nie pokazuj tego ponownie"; -App::$strings["pageheader Settings saved."] = "pageheader - zapisano ustawienie."; -App::$strings["Page Header App"] = "Aplikacja Nagłówek Strony"; -App::$strings["Inserts a page header"] = "Wstawia nagłówek strony"; -App::$strings["Message to display on every page on this server"] = "Wiadomość do wyświetlenia na każdej stronie na tym serwerze"; -App::$strings["Page Header"] = "Nagłówek Strony"; -App::$strings["Who viewed my channel/profile"] = "Kto oglądał mój kanał lub profil"; -App::$strings["Recent Channel/Profile Viewers"] = "Ostatnio wyświetlający mój kanał lub profil"; -App::$strings["No entries."] = "Brak wpisów."; -App::$strings["Messages"] = "Wiadomości"; -App::$strings["message"] = "wiadomość"; -App::$strings["Message recalled."] = "Wiadomość przywołana."; -App::$strings["Conversation removed."] = "Rozmowa został usunięty."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Wygasa YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Żądanego kanału nie ma w tej sieci"; -App::$strings["Send Private Message"] = "Wyślij prywatną wiadomość"; -App::$strings["To:"] = "Do:"; -App::$strings["Attach file"] = "Dołącz plik"; -App::$strings["Send"] = "Wyślij"; -App::$strings["Delete message"] = "Usuń wiadomość"; -App::$strings["Delivery report"] = "Raport dostawy"; -App::$strings["Recall message"] = "Odwołaj wiadomość"; -App::$strings["Message has been recalled."] = "Wiadomość została odwołana."; -App::$strings["Delete Conversation"] = "Usuń rozmowę"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony profilu nadawcy."; -App::$strings["Send Reply"] = "Wyślij odpowiedź"; -App::$strings["Your message for %s (%s):"] = "Twoja wiadomość dla %s (%s):"; -App::$strings["Unable to lookup recipient."] = "Nie można znaleźć adresata."; -App::$strings["Unable to communicate with requested channel."] = "Nie można skomunikować się z żądanym kanałem."; -App::$strings["Cannot verify requested channel."] = "Nie można zweryfikować żądanego kanału."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie powiodło się."; -App::$strings["System defaults:"] = "Domyślne wartości systemowe:"; -App::$strings["Preferred Clipart IDs"] = "Identyfikatory preferowanych clipartów"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Lista identyfikatorów preferowanych clipartów."; -App::$strings["Default Search Term"] = "Domyślna fraza wyszukiwania"; -App::$strings["The default search term. These will be shown second."] = "Domyślna fraza wyszukiwania. Będzie ona wyświetlana jako druga."; -App::$strings["Return After"] = "Wróć po"; -App::$strings["Page to load after image selection."] = "Strona do załadowania po wybraniu obrazu."; -App::$strings["Profile List"] = "Lista profili"; -App::$strings["Order of Preferred"] = "Kolejność preferowanych"; -App::$strings["Sort order of preferred clipart ids."] = "Sortuj preferowane identyfikatory clipart."; -App::$strings["Newest first"] = "Od najnowszych"; -App::$strings["As entered"] = "Jak wprowadzono"; -App::$strings["Order of other"] = "Kolejność innych"; -App::$strings["Sort order of other clipart ids."] = "Kolejność sortowania innych identyfikatorów clipartów."; -App::$strings["Most downloaded first"] = "Najczęściej pobierane jako pierwsze"; -App::$strings["Most liked first"] = "Najbardziej lubiane jako pierwsze"; -App::$strings["Preferred IDs Message"] = "Komunikat o preferowanych identyfikatorach"; -App::$strings["Message to display above preferred results."] = "Wiadomość do wyświetlenia powyżej preferowanych wyników."; -App::$strings["Uploaded by: "] = "Przesłane przez: "; -App::$strings["Drawn by: "] = "Narysowane przez: "; -App::$strings["Use this image"] = "Użyj tego obrazu"; -App::$strings["Or select from a free OpenClipart.org image:"] = "Lub wybierz bezpłatny obraz z OpenClipart.org:"; -App::$strings["Search Term"] = "Fraza wyszukiwania"; -App::$strings["Unknown error. Please try again later."] = "Nieznany błąd. Spróbuj ponownie później."; -App::$strings["Profile photo updated successfully."] = "Zdjęcie profilowe zostało pomyślnie zaktualizowane."; -App::$strings["Gallery"] = "Galeria"; -App::$strings["Photo Gallery"] = "Galeria zdjęć"; -App::$strings["Gallery App"] = "Aplikacja Galeria"; -App::$strings["A simple gallery for your photo albums"] = "Prosta galeria dla albumów ze zdjęciami"; -App::$strings["Smileybutton App"] = "Aplikacja Smileybutton"; -App::$strings["Adds a smileybutton to the jot editor"] = "Dodaje przycisk emotikonów do edytora jot"; -App::$strings["Hide the button and show the smilies directly."] = "Ukryj przycisk i bezpośrednio wyświetlaj emotikony."; -App::$strings["Smileybutton Settings"] = "Ustawienia Smileybutton"; -App::$strings["Post to Friendica"] = "Opublikuj w sieci Friendica"; -App::$strings["Friendica Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Friendica."; -App::$strings["Friendica Crosspost Connector App"] = "Aplikacja Konektor Friendica"; -App::$strings["Relay public postings to a connected Friendica account"] = "Przekazywanie publicznych wpisów do połączonego konta Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Domyślnie wysyłaj publiczne wpisy na kanał Hubzilla"; -App::$strings["Friendica API Path"] = "Ścieżka API Friendica"; -App::$strings["Friendica login name"] = "Nazwa logowania w Friendica"; -App::$strings["Friendica password"] = "Hasło Friendica"; -App::$strings["Friendica Crosspost Connector"] = "Konektor Friendica"; -App::$strings["Logfile archive directory"] = "Katalog archiwum plików dziennika zdarzeń"; -App::$strings["Directory to store rotated logs"] = "Katalog do przechowywania rotowanych dzienników zdarzeń"; -App::$strings["Logfile size in bytes before rotating"] = "Rozmiar pliku dziennika w bajtach przed dokonaniem odnowienia"; -App::$strings["Number of logfiles to retain"] = "Liczba plików dziennika do przechowania"; -App::$strings["Post to WordPress"] = "Publikowanie w WordPress"; -App::$strings["Wordpress Settings saved."] = "Zapisano ustawienia Wordpress."; -App::$strings["Wordpress Post App"] = "Aplikacja Publikowanie w Wordpress"; -App::$strings["Post to WordPress or anything else which uses the wordpress XMLRPC API"] = "Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC WordPress"; -App::$strings["WordPress username"] = "Nazwa użytkownika WordPress"; -App::$strings["WordPress password"] = "Hasło WordPress"; -App::$strings["WordPress API URL"] = "Adres URL API WordPress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Zwykle https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = "Identyfikator blogu WordPress"; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie pozostaw puste"; -App::$strings["Post to WordPress by default"] = "Domyślnie publikuj na WordPress"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Przekazywanie komentarzy (wymaga wtyczki hubzilla_wp)"; -App::$strings["Wordpress Post"] = "Publikowanie w Wordpress"; -App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Zezwalaj na magiczne uwierzytelnianie tylko w serwisach internetowych Twoich bezpośrednich połączeń"; -App::$strings["Authchoose App"] = "Aplikacja Magiczne uwierzytelnianie"; -App::$strings["Authchoose"] = "Magiczne uwierzytelnianie"; -App::$strings["bitchslap"] = "bitchslap"; -App::$strings["bitchslapped"] = "bitchslapped"; -App::$strings["shag"] = "shag"; -App::$strings["shagged"] = "shagged"; -App::$strings["patent"] = "patent"; -App::$strings["patented"] = "opatentowany"; -App::$strings["hug"] = "przytulić"; -App::$strings["hugged"] = "przytulony"; -App::$strings["murder"] = "zamordować"; -App::$strings["murdered"] = "zamordowany"; -App::$strings["worship"] = "uwielbiać"; -App::$strings["worshipped"] = "uwielbiany"; -App::$strings["kiss"] = "pocałować"; -App::$strings["kissed"] = "pocałowany"; -App::$strings["tempt"] = "kusić"; -App::$strings["tempted"] = "skuszony"; -App::$strings["raise eyebrows at"] = "unieść brwi"; -App::$strings["raised their eyebrows at"] = "podnieśli brwi"; -App::$strings["insult"] = "zniewaga"; -App::$strings["insulted"] = "znieważony"; -App::$strings["praise"] = "pochwała"; -App::$strings["praised"] = "pochwalony"; -App::$strings["be dubious of"] = "mieć wątpliwości"; -App::$strings["was dubious of"] = "zwątpiony"; -App::$strings["eat"] = "jeść"; -App::$strings["ate"] = "najedzony"; -App::$strings["giggle and fawn at"] = "chichotać i płakać"; -App::$strings["giggled and fawned at"] = "chichotał i łakał"; -App::$strings["doubt"] = "wątpić"; -App::$strings["doubted"] = "zwątpił"; -App::$strings["glare"] = "piorunujące spojrzenie"; -App::$strings["glared at"] = "obrzucił spojrzeniem"; -App::$strings["fuck"] = "pierdolić"; -App::$strings["fucked"] = "przejebane"; -App::$strings["bonk"] = "rżnąć"; -App::$strings["bonked"] = "zerżnięty"; -App::$strings["declare undying love for"] = "deklaruj wieczną miłość"; -App::$strings["declared undying love for"] = "zadeklarował wieczną miłość"; -App::$strings["New registration"] = "Nowa rejestracja"; -App::$strings["Message sent to %s. New account registration: %s"] = "Wiadomość wysłana do%s. Rejestracja nowego konta: %s"; -App::$strings["Pump.io Settings saved."] = "Ustawienia Pump.io zostały zapisane."; -App::$strings["Pump.io Crosspost Connector App"] = "Aplikacja Pump.io Crosspost Connector"; -App::$strings["Relay public posts to pump.io"] = "Przekazuj publiczne wpisy do Pump.io"; -App::$strings["Pump.io servername"] = "Nazwa serwera Pump.io"; -App::$strings["Without \"http://\" or \"https://\""] = "Bez \"http: //\" lub \"https: //\""; -App::$strings["Pump.io username"] = "Nazwa użytkownika Pump.io"; -App::$strings["Without the servername"] = "Bez nazwy serwera"; -App::$strings["You are not authenticated to pumpio"] = "Nie jesteś uwierzytelniony w pumpio"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "(Ponownie) Uwierzytelnij swoje połączenie pump.io"; -App::$strings["Post to pump.io by default"] = "Publikuj domyślnie w pump.io"; -App::$strings["Should posts be public"] = "Wpisy powinny być publiczne"; -App::$strings["Mirror all public posts"] = "Powielaj wszystkie wpisy publiczne"; -App::$strings["Pump.io Crosspost Connector"] = "Pump.io Crosspost Connector"; -App::$strings["You are now authenticated to pumpio."] = "Jesteś teraz uwierzytelniony w pumpio."; -App::$strings["return to the featured settings page"] = "wróć do polecanej strony ustawień"; -App::$strings["Post to Pump.io"] = "Opublikuj na Pump.io"; -App::$strings["NSA Bait App"] = "Aplikacja NSA Bait"; -App::$strings["Make yourself a political target"] = "Stań się celem politycznym"; -App::$strings["Add some colour to tag clouds"] = "Dodaj jakiś kolor do oznaczania chmur"; -App::$strings["Rainbow Tag App"] = "Aplikacja Rainbow Tag"; -App::$strings["Rainbow Tag"] = "Rainbow Tag"; -App::$strings["Send test email"] = "Wyślij testową wiadomość e-mail"; -App::$strings["Mail sent."] = "Mail wysłany."; -App::$strings["Sending of mail failed."] = "Wysyłanie poczty nie powiodło się."; -App::$strings["Mail Test"] = "Test poczty"; -App::$strings["Redmatrix File Storage Import"] = "Import magazyn plików Redmatrix"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału."; -App::$strings["Use markdown for editing posts"] = "Użyj markdown do edycji wpisów"; -App::$strings["Fuzzloc Settings updated."] = "Zaktualizowano ustawienia Fuzzloc."; -App::$strings["Fuzzy Location App"] = "Aplikacja Zamazywanie Lokalizacji"; -App::$strings["Blur your precise location if your channel uses browser location mapping"] = "Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji w przeglądarce"; -App::$strings["Minimum offset in meters"] = "Minimalne przesunięcie w metrach"; -App::$strings["Maximum offset in meters"] = "Maksymalne przesunięcie w metrach"; -App::$strings["Fuzzy Location"] = "Zamazywanie Lokalizacji"; -App::$strings["Startpage App"] = "Aplikacja Strona początkowa"; -App::$strings["Set a preferred page to load on login from home page"] = "Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej"; -App::$strings["Page to load after login"] = "Strona do załadowania po zalogowaniu"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja prywatności), "kanał" lub "powiadomienie/system" (pozostaw puste dla domyślnej strony sieci."; -App::$strings["Startpage"] = "Strona początkowa"; -App::$strings["Focus (Hubzilla default)"] = "Fokus (domyślny w Hubzilla)"; -App::$strings["Theme settings"] = "Ustawienia motywu"; -App::$strings["Narrow navbar"] = "Wąski pasek nawigacyjny"; -App::$strings["Navigation bar background color"] = "Kolor tła paska nawigacji"; -App::$strings["Navigation bar icon color "] = "Kolor ikony paska nawigacji "; -App::$strings["Navigation bar active icon color "] = "Kolor ikony aktywnego paska nawigacji "; -App::$strings["Link color"] = "Kolor odnośnika"; -App::$strings["Set font-color for banner"] = "Ustaw kolor czcionki na banerze"; -App::$strings["Set the background color"] = "Ustaw kolor tła"; -App::$strings["Set the background image"] = "Ustaw obraz tła"; -App::$strings["Set the background color of items"] = "Ustaw kolor tła elementów"; -App::$strings["Set the background color of comments"] = "Ustaw kolor tła komentarzy"; -App::$strings["Set font-size for the entire application"] = "Ustaw rozmiar czcionki dla całej aplikacji"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Przykłady: 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Ustaw kolor czcionki dla wpisów i komentarzy"; -App::$strings["Set radius of corners"] = "Ustaw promień narożników"; -App::$strings["Example: 4px"] = "Przykład: 4px"; -App::$strings["Set shadow depth of photos"] = "Ustaw głębię cienia zdjęć"; -App::$strings["Set maximum width of content region in pixel"] = "Ustaw maksymalną szerokość obszaru treści w pikselach"; -App::$strings["Leave empty for default width"] = "Pozostaw puste dla domyślnej szerokości"; -App::$strings["Set size of conversation author photo"] = "Ustaw rozmiar zdjęcia autora rozmowy"; -App::$strings["Set size of followup author photos"] = "Ustaw rozmiar kolejnych zdjęć autora"; -App::$strings["Show advanced settings"] = "Pokaż ustawienia zaawansowane"; -App::$strings["Create an account to access services and applications"] = "Utwórz konto, aby uzyskać dostęp do usług i aplikacji"; -App::$strings["Login/Email"] = "Login/Email"; -App::$strings["Password"] = "Hasło"; -App::$strings["Remember me"] = "Zapamiętaj mnie"; -App::$strings["Forgot your password?"] = "Nie pamiętasz hasła?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Błąd SSL witryny internetowej dla %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Certyfikat SSL witryny jest nieprawidłowy. Proszę popraw."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Zadania Crona nie działają na %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Zadania Crona (zaplanowane) nie działają."; -- cgit v1.2.3 From 587e790892c9f6d54f3acbcbe9122d3a8ed50b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Mon, 24 May 2021 18:37:53 +0200 Subject: Regenerating hstrings.ph file --- view/pl/hstrings.php | 3664 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3664 insertions(+) diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index a4abe2daf..6651e0210 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -1,2 +1,3666 @@ =2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); +}} +App::$rtl = 0; +App::$strings["plural_function_code"] = "(n==1 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))"; +App::$strings["Can view my channel stream and posts"] = "Może wyświetlać strumień i wpisy z mojego kanału"; +App::$strings["Can send me their channel stream and posts"] = "Może przesyłać mi strumień swojego kanału i wpisy"; +App::$strings["Can view my default channel profile"] = "Może wyświetlać mój domyślny profil kanału"; +App::$strings["Can view my connections"] = "Może wyświetlać moje połączenia"; +App::$strings["Can view my file storage and photos"] = "Może wyświetlać moje przechowywane pliki i zdjęcia"; +App::$strings["Can upload/modify my file storage and photos"] = "Może przesyłać/modyfikować moje przechowywane pliki i zdjęcia"; +App::$strings["Can view my channel webpages"] = "Może wyświetlać strony internetowe mojego kanału"; +App::$strings["Can view my wiki pages"] = "Może przeglądać moje strony wiki"; +App::$strings["Can create/edit my channel webpages"] = "Może tworzyć/edytować strony internetowe mojego kanału"; +App::$strings["Can write to my wiki pages"] = "Może pisać na moich stronach wiki"; +App::$strings["Can post on my channel (wall) page"] = "Może publikować na stronie mojego kanału (ścianie)"; +App::$strings["Can comment on or like my posts"] = "Może komentować lub polubić moje wpisy"; +App::$strings["Can send me private mail messages"] = "Może wysyłać mi prywatne wiadomości e-mail"; +App::$strings["Can like/dislike profiles and profile things"] = "Może lubić/nie lubić profile i rzeczy w profilach"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !wzmianki w wpisach"; +App::$strings["Can chat with me"] = "Może ze mną rozmawiać"; +App::$strings["Can source my public posts in derived channels"] = "Może pozyskiwać moje publiczne wpisy w kanałach pochodnych"; +App::$strings["Can administer my channel"] = "Może zarządzać moim kanałem"; +App::$strings["Social Networking"] = "Sieć społecznościowa"; +App::$strings["Social - Federation"] = "Społecznościowy - federacyjny"; +App::$strings["Social - Mostly Public"] = "Społecznościowy - głównie publiczny"; +App::$strings["Social - Restricted"] = "Społecznościowy - ograniczony"; +App::$strings["Social - Private"] = "Społecznościowy - prywatny"; +App::$strings["Community Forum"] = "Forum społecznościowe"; +App::$strings["Forum - Mostly Public"] = "Forum - głównie publiczne"; +App::$strings["Forum - Restricted"] = "Forum - ograniczone"; +App::$strings["Forum - Private"] = "Forum - prywatne"; +App::$strings["Feed Republish"] = "Opublikuj ponownie kanał RSS"; +App::$strings["Feed - Mostly Public"] = "Kanał RSS - głównie publiczny"; +App::$strings["Feed - Restricted"] = "Kanał RSS - ograniczony"; +App::$strings["Special Purpose"] = "Specjalnego celu"; +App::$strings["Special - Celebrity/Soapbox"] = "Specjalne - celebryckie i mównice"; +App::$strings["Special - Group Repository"] = "Specjalne - repozytorium grupowe"; +App::$strings["Other"] = "Inny"; +App::$strings["Custom/Expert Mode"] = "Tryb niestandardowy/ekspercki"; +App::$strings["Permission denied."] = "Dostęp zabroniony."; +App::$strings["Layout updated."] = "Zaktualizowano układ."; +App::$strings["PDL Editor App"] = "Aplikacja Edytor PDL"; +App::$strings["Not Installed"] = "Nie zainstalowano"; +App::$strings["Provides the ability to edit system page layouts"] = "Zapewnia możliwość edycji układów stron systemowych"; +App::$strings["Edit System Page Description"] = "Edytuj opis strony systemowej"; +App::$strings["(modified)"] = "(zmodyfikowany)"; +App::$strings["Reset"] = "Resetuj"; +App::$strings["Layout not found."] = "Nie znaleziono układu."; +App::$strings["Module Name:"] = "Nazwa modułu:"; +App::$strings["Layout Help"] = "Pomoc dotycząca układu"; +App::$strings["Edit another layout"] = "Edytuj inny układ"; +App::$strings["System layout"] = "Układ systemowy"; +App::$strings["Submit"] = "Zatwierdź"; +App::$strings["Update to Hubzilla 5.0 step 2"] = "Zaktualizuj do Hubzilli 5.0 krok 2"; +App::$strings["To complete the update please run"] = "Uruchom, aby zakończyć aktualizację"; +App::$strings["php util/z6convert.php"] = "php util/z6convert.php"; +App::$strings["from the terminal."] = "z terminala."; +App::$strings["Permission denied"] = "Dostęp zabroniony"; +App::$strings["Invalid message"] = "Nieprawidłowa wiadomość"; +App::$strings["no results"] = "brak wyników"; +App::$strings["channel sync processed"] = "synchronizacja kanałów została przetworzona"; +App::$strings["queued"] = "w kolejce"; +App::$strings["posted"] = "opublikowane"; +App::$strings["accepted for delivery"] = "przyjęty do dostawy"; +App::$strings["updated"] = "zaktualizowany"; +App::$strings["update ignored"] = "aktualizacja zignorowana"; +App::$strings["permission denied"] = "dostęp zabroniony"; +App::$strings["recipient not found"] = "nie znaleziono odbiorcy"; +App::$strings["mail recalled"] = "mail odwołany"; +App::$strings["duplicate mail received"] = "otrzymano powieloną wiadomość"; +App::$strings["mail delivered"] = "dostarczono pocztę"; +App::$strings["Delivery report for %1\$s"] = "Raport dostarczenia dla %1\$s"; +App::$strings["Options"] = "Opcje"; +App::$strings["Redeliver"] = "Dostarcz ponownie"; +App::$strings["Invalid profile identifier."] = "Nieprawidłowy identyfikator profilu."; +App::$strings["Profile Visibility Editor"] = "Edytor widoczności profilu"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Kliknij kontakt, który chcesz dodać lub usunąć."; +App::$strings["Visible To"] = "Widoczne dla"; +App::$strings["All Connections"] = "Wszystkie połączenia"; +App::$strings["Not found"] = "Nie znaleziono"; +App::$strings["Unknown error"] = "Nieznany błąd"; +App::$strings["Unknown App"] = "Aplikacja nieznana"; +App::$strings["Authorize"] = "Autoryzuj"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Czy zezwalasz aplikacji %s na dostęp do danych Twojego kanału?"; +App::$strings["Allow"] = "Zezwól"; +App::$strings["Deny"] = "Zabroń"; +App::$strings["Calendar entries imported."] = "Zaimportowano wpisy kalendarza."; +App::$strings["No calendar entries found."] = "Nie znaleziono wpisów kalendarza."; +App::$strings["CardDAV App"] = "Aplikacja CardDAV"; +App::$strings["CalDAV capable addressbook"] = "Książka adresowa z obsługą CalDAV"; +App::$strings["Link to source"] = "Link do źródła"; +App::$strings["Event title"] = "Tytuł wydarzenia"; +App::$strings["Start date and time"] = "Data i godzina rozpoczęcia"; +App::$strings["End date and time"] = "Data i godzina zakończenia"; +App::$strings["Timezone:"] = "Strefa czasowa:"; +App::$strings["Description"] = "Opis"; +App::$strings["Location"] = "Lokalizacja"; +App::$strings["Previous"] = "Poprzedni"; +App::$strings["Next"] = "Następny"; +App::$strings["Today"] = "Dzisiaj"; +App::$strings["Month"] = "Miesiąc"; +App::$strings["Week"] = "Tydzień"; +App::$strings["Day"] = "Dzień"; +App::$strings["List month"] = "Wymień miesiąc"; +App::$strings["List week"] = "Wymień tydzień"; +App::$strings["List day"] = "Wymień dzień"; +App::$strings["More"] = "Więcej"; +App::$strings["Less"] = "Mniej"; +App::$strings["Update"] = "Zaktualizuj"; +App::$strings["Select calendar"] = "Wybierz kalendarz"; +App::$strings["Channel Calendars"] = "Kalendarze kanału"; +App::$strings["CalDAV Calendars"] = "Kalendarze CalDAV"; +App::$strings["Delete"] = "Usuń"; +App::$strings["Delete all"] = "Usuń wszystko"; +App::$strings["Cancel"] = "Anuluj"; +App::$strings["Create"] = "Utwórz"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze zaimplementowana."; +App::$strings["Categories"] = "Kategorie"; +App::$strings["Name"] = "Nazwa"; +App::$strings["Organisation"] = "Organizacja"; +App::$strings["Title"] = "Tytuł"; +App::$strings["Phone"] = "Numer telefonu"; +App::$strings["Email"] = "Adres e-mail"; +App::$strings["Instant messenger"] = "Komunikator internetowy"; +App::$strings["Website"] = "Strona internetowa"; +App::$strings["Address"] = "Adres"; +App::$strings["Note"] = "Notatka"; +App::$strings["Mobile"] = "Komórka"; +App::$strings["Home"] = "Domowy"; +App::$strings["Work"] = "Praca"; +App::$strings["Add Contact"] = "Dodaj kontakt"; +App::$strings["Add Field"] = "Dodaj pole"; +App::$strings["P.O. Box"] = "Skrytka pocztowa"; +App::$strings["Additional"] = "Dodatkowe informacje"; +App::$strings["Street"] = "Ulica"; +App::$strings["Locality"] = "Miejscowość"; +App::$strings["Region"] = "Region"; +App::$strings["ZIP Code"] = "Kod pocztowy"; +App::$strings["Country"] = "Państwo"; +App::$strings["Default Calendar"] = "Domyślny kalendarz"; +App::$strings["Default Addressbook"] = "Domyślna książka adresowa"; +App::$strings["Authorize application connection"] = "Autoryzuj połączenie aplikacji"; +App::$strings["Return to your app and insert this Security Code:"] = "Wróć do aplikacji i wprowadź ten kod bezpieczeństwa:"; +App::$strings["Please login to continue."] = "Proszę się zalogować, aby kontynuować."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz zezwolić tej aplikacji na dostęp do Twoich wpisów i kontaktów albo tworzenie dla Ciebie nowych wpisów ?"; +App::$strings["Yes"] = "Tak"; +App::$strings["No"] = "Nie"; +App::$strings["This site is not a directory server"] = "Ta witryna nie jest serwerem katalogów"; +App::$strings["This directory server requires an access token"] = "Ten serwer katalogowy wymaga tokenu dostępu"; +App::$strings["Enter a folder name"] = "Wprowadź nazwę folderu"; +App::$strings["or select an existing folder (doubleclick)"] = "lub wybierz istniejący folder (kliknij dwukrotnie)"; +App::$strings["Save"] = "Zapisz"; +App::$strings["Save to Folder"] = "Zapisz do folderu"; +App::$strings["Event can not end before it has started."] = "Wydarzenie nie może zakończyć się przed rozpoczęciem."; +App::$strings["Unable to generate preview."] = "Nie można wygenerować podglądu."; +App::$strings["Event title and start time are required."] = "Wymaga się wprowadzenia tytułu wydarzenia i godziny rozpoczęcia."; +App::$strings["Event not found."] = "Nie znaleziono wydarzenia."; +App::$strings["event"] = "wydarzenie"; +App::$strings["Edit event title"] = "Edytuj tytuł wydarzenia"; +App::$strings["Required"] = "Wymagane"; +App::$strings["Categories (comma-separated list)"] = "Kategorie (lista rozdzielana przecinkami)"; +App::$strings["Edit Category"] = "Edytuj kategorię"; +App::$strings["Category"] = "Kategoria"; +App::$strings["Edit start date and time"] = "Edytuj datę i godzinę rozpoczęcia"; +App::$strings["Finish date and time are not known or not relevant"] = "Data i godzina zakończenia nie są znane lub nie mają znaczenia"; +App::$strings["Edit finish date and time"] = "Edytuj datę i godzinę zakończenia"; +App::$strings["Finish date and time"] = "Data i godzina zakończenia"; +App::$strings["Adjust for viewer timezone"] = "Dostosuj do strefy czasowej widza"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na globalne święta."; +App::$strings["Edit Description"] = "Edytuj opis"; +App::$strings["Edit Location"] = "Edytuj lokalizację"; +App::$strings["Preview"] = "Podgląd"; +App::$strings["Permission settings"] = "Ustawienia dostępu"; +App::$strings["Advanced Options"] = "Zaawansowane opcje"; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Edit event"] = "Edytuj wydarzenie"; +App::$strings["Delete event"] = "Usuń wydarzenie"; +App::$strings["Link to Source"] = "Link do źródła"; +App::$strings["calendar"] = "kalendarz"; +App::$strings["Edit Event"] = "Edytuj wydarzenie"; +App::$strings["Create Event"] = "Utwórz wydarzenie"; +App::$strings["Export"] = "Eksportuj"; +App::$strings["View"] = "Widok"; +App::$strings["Event removed"] = "Wydarzenie usunięte"; +App::$strings["Failed to remove event"] = "Nie udało się usunąć wydarzenia"; +App::$strings["Documentation Search"] = "Przeszukaj dokumentację"; +App::$strings["About"] = "O platformie Hubzilla"; +App::$strings["Members"] = "Dla członków"; +App::$strings["Administrators"] = "Dla administratorów"; +App::$strings["Developers"] = "Dla deweloperów"; +App::$strings["Tutorials"] = "Poradniki"; +App::$strings["\$Projectname Documentation"] = "Dokumentacja \$Projectname"; +App::$strings["Contents"] = "Spis treści"; +App::$strings["Bookmark added"] = "Dodano zakładkę"; +App::$strings["Bookmarks App"] = "Aplikacja Zakładki"; +App::$strings["Bookmark links from posts and manage them"] = "Dodaj do zakładek linki z wpisów i zarządzaj nimi"; +App::$strings["My Bookmarks"] = "Moje zakładki"; +App::$strings["My Connections Bookmarks"] = "Moje zakładki połączeń"; +App::$strings["Requested profile is not available."] = "Żądany profil nie jest dostępny."; +App::$strings["Webpages App"] = "Aplikacja Witryny Internetowe"; +App::$strings["Provide managed web pages on your channel"] = "Udostępnij zarządzane strony internetowe na swoim kanale"; +App::$strings["Import Webpage Elements"] = "Importuj elementy strony internetowej"; +App::$strings["Import selected"] = "Importuj wybrane"; +App::$strings["Export Webpage Elements"] = "Eksportuj elementy strony internetowej"; +App::$strings["Export selected"] = "Eksportuj wybrane"; +App::$strings["Webpages"] = "Strony internetowe"; +App::$strings["Edit"] = "Edytuj"; +App::$strings["Share"] = "Udostępnij"; +App::$strings["Actions"] = "Akcje"; +App::$strings["Page Link"] = "Link do strony"; +App::$strings["Page Title"] = "Tytuł strony"; +App::$strings["Created"] = "Utworzono"; +App::$strings["Edited"] = "Edytowano"; +App::$strings["Invalid file type."] = "Zły typ pliku."; +App::$strings["Error opening zip file"] = "Błąd podczas otwierania pliku zip"; +App::$strings["Invalid folder path."] = "Nieprawidłowa ścieżka folderu."; +App::$strings["No webpage elements detected."] = "Nie wykryto żadnych elementów strony internetowej."; +App::$strings["Import complete."] = "Importowanie zakończone."; +App::$strings["Profile not found."] = "Nie znaleziono profilu."; +App::$strings["Profile deleted."] = "Profil został usunięty."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Utworzono nowy profil."; +App::$strings["Profile unavailable to clone."] = "Profil niedostępny do sklonowania."; +App::$strings["Profile unavailable to export."] = "Profil niedostępny do wyeksportowania."; +App::$strings["Profile Name is required."] = "Wymaga się podania nazwy profilu."; +App::$strings["Marital Status"] = "Stan cywilny"; +App::$strings["Romantic Partner"] = "Partner romantyczny"; +App::$strings["Likes"] = "Polubienia"; +App::$strings["Dislikes"] = "Niepolubienia"; +App::$strings["Work/Employment"] = "Praca/Zatrudnienie"; +App::$strings["Religion"] = "Religia"; +App::$strings["Political Views"] = "Poglądy polityczny"; +App::$strings["Gender"] = "Płeć"; +App::$strings["Sexual Preference"] = "Preferencje seksualne"; +App::$strings["Homepage"] = "Strona domowa"; +App::$strings["Interests"] = "Zainteresowania"; +App::$strings["Profile updated."] = "Profil został zaktualizowany."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ukryj swoją listę kontaktów przed przeglądającymi ten profil"; +App::$strings["Edit Profile Details"] = "Edytuj szczegóły profilu"; +App::$strings["View this profile"] = "Zobacz ten profil"; +App::$strings["Edit visibility"] = "Edytuj dostępność"; +App::$strings["Profile Tools"] = "Narzędzia profilowe"; +App::$strings["Change cover photo"] = "Zmień zdjęcie okładkowe"; +App::$strings["Change profile photo"] = "Zmień zdjęcie profilowe"; +App::$strings["Create a new profile using these settings"] = "Utwórz nowy profil, korzystając z tych ustawień"; +App::$strings["Clone this profile"] = "Sklonuj ten profil"; +App::$strings["Delete this profile"] = "Usuń ten profil"; +App::$strings["Add profile things"] = "Dodaj elementy profilu"; +App::$strings["Personal"] = "Osobiste"; +App::$strings["Relationship"] = "Relacje"; +App::$strings["Miscellaneous"] = "Inne"; +App::$strings["Import profile from file"] = "Importuj profil z pliku"; +App::$strings["Export profile to file"] = "Eksportuj profil do pliku"; +App::$strings["Your gender"] = "Twoja płeć"; +App::$strings["Marital status"] = "Stan cywilny"; +App::$strings["Sexual preference"] = "Preferencje seksualne"; +App::$strings["Profile name"] = "Nazwa profilu"; +App::$strings["This is your default profile."] = "To jest Twój profil domyślny."; +App::$strings["Your full name"] = "Twoje imię i nazwisko albo pełna nazwa"; +App::$strings["Short title/description"] = "Krótki tytuł/opis"; +App::$strings["Maximal 190 characters"] = "Maksymalnie 190 znaków"; +App::$strings["Street address"] = "Ulica"; +App::$strings["Locality/City"] = "Miejscowość"; +App::$strings["Region/State"] = "Region/Stan"; +App::$strings["Postal/Zip code"] = "Kod pocztowy"; +App::$strings["Who (if applicable)"] = "Kto (jeśli dotyczy)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady: jan123, Jan Kowalski, jan@example.com"; +App::$strings["Since (date)"] = "Od (data)"; +App::$strings["Tell us about yourself"] = "Opowiedz nam o sobie"; +App::$strings["Homepage URL"] = "Adres URL strony domowej"; +App::$strings["Hometown"] = "Miejscowość zamieszkania"; +App::$strings["Political views"] = "Poglądy polityczne"; +App::$strings["Religious views"] = "Poglądy religijne"; +App::$strings["Keywords used in directory listings"] = "Słowa kluczowe używane w wykazach katalogów"; +App::$strings["Example: fishing photography software"] = "Przykład: oprogramowanie do fotografii wędkarskiej"; +App::$strings["Musical interests"] = "Zainteresowania muzyczne"; +App::$strings["Books, literature"] = "Ksiązki, literatura"; +App::$strings["Television"] = "Telewizja"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/Taniec/Kultura/Rozrywka"; +App::$strings["Hobbies/Interests"] = "Zainteresowania"; +App::$strings["Love/Romance"] = "Miłość/romans"; +App::$strings["School/Education"] = "Szkoła/Edukacja"; +App::$strings["Contact information and social networks"] = "Informacje kontaktowe i sieci społecznościowe"; +App::$strings["My other channels"] = "Moje inne kanały"; +App::$strings["Communications"] = "Komunikacja"; +App::$strings["Profile Image"] = "Obraz profilowy"; +App::$strings["Edit Profiles"] = "Edytuj profile"; +App::$strings["Create New"] = "Utwórz nowy"; +App::$strings["Nothing to import."] = "Nie ma nic do zaimportowania."; +App::$strings["Unable to download data from old server"] = "Nie można pobrać danych ze starego serwera"; +App::$strings["Imported file is empty."] = "Zaimportowany plik jest pusty."; +App::$strings["Your service plan only allows %d channels."] = "Twój plan usług zezwala tylko na %d kanał/kanałów."; +App::$strings["No channel. Import failed."] = "Brak kanału. Import nieudany."; +App::$strings["Import completed."] = "Import zakończony."; +App::$strings["You must be logged in to use this feature."] = "Trzeba się zalogować, aby korzystać z tej funkcji."; +App::$strings["Import Channel"] = "Importuj kanał"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (serwisu).Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez sieć lub dostarczyć plik eksportu."; +App::$strings["File to Upload"] = "Plik do przesłania"; +App::$strings["Or provide the old server/hub details"] = "Lub podaj szczegóły starego serwera/serwisu"; +App::$strings["Your old identity address (xyz@example.com)"] = "Twój stary adres tożsamości (xyz@example.com)"; +App::$strings["Your old login email address"] = "Twój stary adres e-mail logowania"; +App::$strings["Your old login password"] = "Twoje stare hasło logowania"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "W obu przypadkach wybierz, czy chcesz ustawić ten serwis jako nowy adres podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna lokalizacja plików, zdjęć i multimediów."; +App::$strings["Make this hub my primary location"] = "Ustaw ten serwis jako moją główną lokalizację"; +App::$strings["Move this channel (disable all previous locations)"] = "Przenieś ten kanał (wyłącz wszystkie poprzednie lokalizacje)"; +App::$strings["Use this channel nickname instead of the one provided"] = "Użyj tego pseudonimu kanału zamiast podanego"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie."; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę otwartą do zakończenia procedury."; +App::$strings["Like/Dislike"] = "Polub/Dezaprobuj"; +App::$strings["This action is restricted to members."] = "Ta akcja jest ograniczona do członków."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Aby kontynuować, zaloguj się za pomocą ID \$Projectname lub zarejestruj się jako nowy członek \$Projectname."; +App::$strings["Invalid request."] = "Nieprawidłowe żądanie."; +App::$strings["channel"] = "kanał"; +App::$strings["thing"] = "rzecz"; +App::$strings["Channel unavailable."] = "Kanał niedostępny."; +App::$strings["Previous action reversed."] = "Poprzednia czynność została cofnięta."; +App::$strings["photo"] = "zdjecie"; +App::$strings["status"] = "stan"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s polubił %3\$s %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s dezaprobował %3\$s %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s zgadza się z %3\$s dla %2\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s nie zgadza się z %3\$s dla %2\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s wstrzymuje się od decyzji w sprawie %3\$s dla %2\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s jest uczestnikiem %3\$s %2\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nie jest uczestnikiem %3\$s %2\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s może być uczestnikiem %3\$s %2\$s"; +App::$strings["Action completed."] = "Akcja zakończona."; +App::$strings["Thank you."] = "Dziękujemy."; +App::$strings["Could not access contact record."] = "Brak dostępu do rekordu kontaktu."; +App::$strings["Settings updated."] = "Zaktualizowano ustawienia."; +App::$strings["Default Permissions App"] = "Aplikacja Domyślne uprawnienia"; +App::$strings["Set custom default permissions for new connections"] = "Ustaw niestandardowe uprawnienia domyślne dla nowych połączeń"; +App::$strings["Connection Default Permissions"] = "Domyślne uprawnienia połączenia"; +App::$strings["Apply these permissions automatically"] = "Zastosuj te uprawnienia automatycznie"; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji"; +App::$strings["Permission role"] = "Rola uprawnień"; +App::$strings["Loading"] = "Ładowanie"; +App::$strings["Add permission role"] = "Dodaj rolę uprawnień"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych połączeń."; +App::$strings["Automatic approval settings"] = "Ustawienia automatycznego zatwierdzania"; +App::$strings["inherited"] = "dziedziczone"; +App::$strings["My Settings"] = "Moje ustawienia"; +App::$strings["Individual Permissions"] = "Uprawnienia indywidualne"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub zablokowane w zależności od typu kanału i ustawień prywatności."; +App::$strings["Layout Name"] = "Nazwa układu"; +App::$strings["Layout Description (Optional)"] = "Opis układu (opcjonalnie)"; +App::$strings["Layouts"] = "Układy"; +App::$strings["Help"] = "Pomoc"; +App::$strings["Comanche page description language help"] = "Pomoc w zakresie języka opisu strony Comanche"; +App::$strings["Layout Description"] = "Opis układu"; +App::$strings["Download PDL file"] = "Pobierz plik PDL"; +App::$strings["Public Stream App"] = "Aplikacja Strumień Publiczny"; +App::$strings["The unmoderated public stream of this hub"] = "Niemoderowany strumień publiczny tego serwisu"; +App::$strings["Reset form"] = "Resetuj formularz"; +App::$strings["Public Stream"] = "Strumień publiczny"; +App::$strings["Private forum"] = "Prywatne forum"; +App::$strings["Public forum"] = "Publiczne forum"; +App::$strings["Privacy group created."] = "Utworzono grupę prywatności."; +App::$strings["Could not create privacy group."] = "Nie udało się utworzyć grupy prywatności."; +App::$strings["Privacy group not found."] = "Nie znaleziono grupy prywatności."; +App::$strings["Privacy group updated."] = "Grupa prywatności została zaktualizowana."; +App::$strings["Privacy Groups App"] = "Aplikacja Grupy Prywatności"; +App::$strings["Management of privacy groups"] = "Zarządzanie grupami prywatności"; +App::$strings["Privacy Groups"] = "Grupy Prywatności"; +App::$strings["Add Group"] = "Dodaj grupę"; +App::$strings["Privacy group name"] = "Nazwa grupy prywatności"; +App::$strings["Members are visible to other channels"] = "Członkowie są widoczni dla innych kanałów"; +App::$strings["Privacy group removed."] = "Grupa prywatności została usunięta."; +App::$strings["Unable to remove privacy group."] = "Nie można usunąć grupy prywatności."; +App::$strings["Privacy Group: %s"] = "Grupa prywatności: %s"; +App::$strings["Privacy group name: "] = "Nazwa grupy prywatności: "; +App::$strings["Delete Group"] = "Usuń grupę"; +App::$strings["Group members"] = "Członkowie grupy"; +App::$strings["Not in this group"] = "Nie w tej grupie"; +App::$strings["Click a channel to toggle membership"] = "Kliknij kanał, aby przełączyć członkostwo"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta."; +App::$strings["Remove This Channel"] = "Usuń ten kanał"; +App::$strings["WARNING: "] = "UWAGA: "; +App::$strings["This channel will be completely removed from the network. "] = "Ten kanał zostanie całkowicie usunięty z sieci. "; +App::$strings["This action is permanent and can not be undone!"] = "Ta akcja jest bezpowrotna i nie można jej cofnąć!"; +App::$strings["Please enter your password for verification:"] = "Wprowadź hasło do weryfikacji:"; +App::$strings["Remove Channel"] = "Usuń kanał"; +App::$strings["App installed."] = "Aplikacja została zainstalowana."; +App::$strings["Malformed app."] = "Nieprawidłowa aplikacja."; +App::$strings["Embed code"] = "Osadzony kod"; +App::$strings["Edit App"] = "Edutuj aplikację"; +App::$strings["Create App"] = "Utwórz aplikację"; +App::$strings["Name of app"] = "Nazwa aplikacji"; +App::$strings["Location (URL) of app"] = "Lokalizacja (URL) aplikacji"; +App::$strings["Photo icon URL"] = "Adres URL ikony zdjęcia"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pikseli - opcjonalnie"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorie (opcjonalne, lista rozdzielana przecinkami)"; +App::$strings["Version ID"] = "ID wesji"; +App::$strings["Price of app"] = "Cena aplikacji"; +App::$strings["Location (URL) to purchase app"] = "Lokalizacja (URL) do zakupu aplikacji"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta."; +App::$strings["Reserved nickname. Please choose another."] = "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie."; +App::$strings["Change channel nickname/address"] = "Zmień krótką nazwę/adres kanału"; +App::$strings["Any/all connections on other networks will be lost!"] = "Wszystkie połączenia w innych sieciach zostaną utracone!"; +App::$strings["New channel address"] = "Nowy adres kanału"; +App::$strings["Rename Channel"] = "Zmień nazwę kanału"; +App::$strings["Name is required"] = "Wymaga się podania nazwy"; +App::$strings["Key and Secret are required"] = "Wymaga się wprowadzenia klucza i sekretu"; +App::$strings["OAuth Apps Manager App"] = "Aplikacja OAuth Apps Manager"; +App::$strings["OAuth authentication tokens for mobile and remote apps"] = "Tokeny uwierzytelniania OAuth dla aplikacji mobilnych i zdalnych"; +App::$strings["Add application"] = "Dodaj aplikację"; +App::$strings["Name of application"] = "Nazwa aplikacji"; +App::$strings["Consumer Key"] = "Klucz konsumenta"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20"; +App::$strings["Consumer Secret"] = "Hasło konsumenta"; +App::$strings["Redirect"] = "Przekierowanie"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego wymaga"; +App::$strings["Icon url"] = "URL ikony"; +App::$strings["Optional"] = "Opcjonalne"; +App::$strings["Application not found."] = "Aplikacji nie znaleziono."; +App::$strings["Connected OAuth Apps"] = "Połączone aplikacje OAuth"; +App::$strings["Client key starts with"] = "Klucz klienta zaczyna się od"; +App::$strings["No name"] = "Brak nazwy"; +App::$strings["Remove authorization"] = "Usuń autoryzację"; +App::$strings["Token verification failed."] = "Weryfikacja tokena nie powiodła się."; +App::$strings["Email verification resent"] = "Weryfikacja adresu e-mail została wysłana ponownie"; +App::$strings["Unable to resend email verification message."] = "Nie można ponownie wysłać weryfikacyjną wiadomość e-mail."; +App::$strings["Public access denied."] = "Odmowa dostępu publicznego."; +App::$strings["Search"] = "Szukaj"; +App::$strings["Items tagged with: %s"] = "Elementy oznaczone jako: %s"; +App::$strings["Search results for: %s"] = "Wyniki wyszukiwania dla: %s"; +App::$strings["Comment approved"] = "Komentarz został zatwierdzony"; +App::$strings["Comment deleted"] = "Komentarz został usunięty"; +App::$strings["Edit post"] = "Edytuj wpis"; +App::$strings["Unable to find your hub."] = "Nie można znaleźć Twojego serwisu."; +App::$strings["Post successful."] = "Opublikowanie powiodło się."; +App::$strings["Channel not found."] = "Nie znaleziono kanału."; +App::$strings["toggle full screen mode"] = "przełącz na tryb pełnego ekranu"; +App::$strings["Post not found."] = "Nie znaleziono wpisu."; +App::$strings["post"] = "wpis"; +App::$strings["comment"] = "komentarz"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s oznaczono jako %3\$s %2\$s w %4\$s"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Ostrzeżenie: wersje baz danych różnią się o %1\$d aktualizacji."; +App::$strings["Import completed"] = "Zakończono importowanie"; +App::$strings["Import Items"] = "Importuj elementy"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku eksportu."; +App::$strings["Continue"] = "Kontynuj"; +App::$strings["Premium Channel Setup"] = "Konfiguracja kanału Premium"; +App::$strings["Enable premium channel connection restrictions"] = "Włącz ograniczenia połączeń z kanałem premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Podaj swoje ograniczenia lub warunki, takie jak pokwitowanie PayPal, wytyczne dotyczące użytkowania itp."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub potwierdzenia następujących warunków:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potencjalne połączenia zobaczą następujący tekst przed kontynuowaniem:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej stronie."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Właściciel kanału nie przekazał żadnych szczegółowych instrukcji.)"; +App::$strings["Restricted or Premium Channel"] = "Kanał z ograniczeniami lub premium"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Utworzono %1$.0f z %2$.0f dozwolonych kanałów."; +App::$strings["Your real name is recommended."] = "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy."; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa lotnicza\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego do adresu e-mail)."; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "Dozwolone znaki, to a-z 0-9, - oraz _"; +App::$strings["Channel name"] = "Nazwa kanału"; +App::$strings["Choose a short nickname"] = "Wybierz krótki pseudonim"; +App::$strings["Channel role and privacy"] = "Rola kanału i prywatność"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i wymaganiami dotyczącymi prywatności."; +App::$strings["Read more about channel permission roles"] = "Przeczytaj więcej o rolach uprawnień do kanału"; +App::$strings["Create a Channel"] = "Utwórz kanał"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Kanał to unikalna tożsamość sieciowa. Może reprezentować osobę (profil sieci społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał informacyjny i wiele innych rzeczy."; +App::$strings["or import an existing channel from another location."] = "lub zaimportuj istniejący kanał z innej lokalizacji."; +App::$strings["Validate"] = "Zalegalizuj"; +App::$strings["Available Apps"] = "Dostępne aplikacje"; +App::$strings["Installed Apps"] = "Zainstalowane aplikacje"; +App::$strings["Manage Apps"] = "Zarządzaj aplikacjami"; +App::$strings["Create Custom App"] = "Utwórz własną aplikację"; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta."; +App::$strings["Remove This Account"] = "Usuń to konto"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. "; +App::$strings["Remove Account"] = "Usuń konto"; +App::$strings["Deprecated!"] = "Przestarzałe!"; +App::$strings["Item not found."] = "Nie znaleziono elementu."; +App::$strings["File not found."] = "Nie znaleziono pliku."; +App::$strings["Permission Denied."] = "Odmowa dostępu."; +App::$strings["Edit file permissions"] = "Edytuj uprawnienia do pliku"; +App::$strings["Permissions"] = "Uprawnienia"; +App::$strings["Set/edit permissions"] = "Ustaw/edytuj uprawnienia"; +App::$strings["Include all files and sub folders"] = "Uwzględnij wszystkie pliki i podfoldery"; +App::$strings["Return to file list"] = "Wróć do listy plików"; +App::$strings["Copy/paste this code to attach file to a post"] = "Skopiuj/wklej ten kod, aby dołączyć plik do wpisu"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Skopiuj/wklej ten adres URL, aby połączyć plik ze strony internetowej"; +App::$strings["Share this file"] = "Udostępnij ten plik"; +App::$strings["Show URL to this file"] = "Pokaż adres URL do tego pliku"; +App::$strings["Show in your contacts shared folder"] = "Pokaż w folderze udostępnionym kontaktów"; +App::$strings["Item not found"] = "Nie znaleziono elementu"; +App::$strings["Insert web link"] = "Wstaw link internetowy"; +App::$strings["Title (optional)"] = "Tytuł (opcjonalnie)"; +App::$strings["Edit Card"] = "Edytuj kartę"; +App::$strings["No connections."] = "Brak połączeń."; +App::$strings["Accepts"] = "Akceptacje"; +App::$strings["Comments"] = "Komentarze"; +App::$strings["Stream items"] = "Elementy strumienia"; +App::$strings["Wall posts"] = "Wpisy ścienne"; +App::$strings["Nothing"] = "Nic"; +App::$strings["Visit %s's profile [%s]"] = "Odwiedź profil %s [%s]"; +App::$strings["View Connections"] = "Pokaż połączenia"; +App::$strings["Name and Secret are required"] = "Wymagane jest ustawienie imienia i sekretu"; +App::$strings["OAuth2 Apps Manager App"] = "Aplikacja Menadżer Aplikacji OAuth2"; +App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "Tokeny uwierzytelniające OAuth2 dla aplikacji mobilnych i zdalnych"; +App::$strings["Add OAuth2 application"] = "Dodaj aplikację OAuth2"; +App::$strings["Grant Types"] = "Rodzaje dofinansowań"; +App::$strings["leave blank unless your application sepcifically requires this"] = "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga"; +App::$strings["Authorization scope"] = "Zakres uprawnień"; +App::$strings["OAuth2 Application not found."] = "Nie znaleziono aplikacji OAuth2."; +App::$strings["leave blank unless your application specifically requires this"] = "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga"; +App::$strings["Connected OAuth2 Apps"] = "Aplikacje połączeń OAuth2"; +App::$strings["Profile Unavailable."] = "Profil niedostępny."; +App::$strings["Wiki App"] = "Aplikacja Wiki"; +App::$strings["Provide a wiki for your channel"] = "Udostępnij wiki dla swojego kanału"; +App::$strings["Invalid channel"] = "Zły kanał"; +App::$strings["Error retrieving wiki"] = "Błąd podczas pobierania wiki"; +App::$strings["Error creating zip file export folder"] = "Błąd podczas tworzenia folderu eksportu pliku ZIP"; +App::$strings["Error downloading wiki: "] = "Błąd podczas pobierania wiki: "; +App::$strings["Wikis"] = "Wiki"; +App::$strings["Download"] = "Pobierz"; +App::$strings["Wiki name"] = "Nazwa wiki"; +App::$strings["Content type"] = "Rodzaj treści"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Text"; +App::$strings["Type"] = "Rodzaj"; +App::$strings["Any type"] = "Dowolny rodzaj"; +App::$strings["Lock content type"] = "Zablokuj rodzaj treści"; +App::$strings["Create a status post for this wiki"] = "Utwórz wpis statusu dla tego wiki"; +App::$strings["Edit Wiki Name"] = "Edytuj nazwę wiki"; +App::$strings["Wiki not found"] = "Nie znaleziono wiki"; +App::$strings["Rename page"] = "Zień nazwę strony"; +App::$strings["Error retrieving page content"] = "Błąd podczas pobierania treści strony"; +App::$strings["New page"] = "Nowa strona"; +App::$strings["Revision Comparison"] = "Porównanie wersji"; +App::$strings["Revert"] = "Odwróć"; +App::$strings["Short description of your changes (optional)"] = "Krótki opis zmian (opcjonalnie)"; +App::$strings["Source"] = "Źródło"; +App::$strings["New page name"] = "Nowa nazwa strony"; +App::$strings["Embed image from photo albums"] = "Osadź obraz z albumów fotograficznych"; +App::$strings["Embed an image from your albums"] = "Osadź obraz ze swoich albumów"; +App::$strings["OK"] = "Dobrze"; +App::$strings["Choose images to embed"] = "Wybierz zdjęcie do osadzenia"; +App::$strings["Choose an album"] = "Wybierz album"; +App::$strings["Choose a different album"] = "Wybierz inny album"; +App::$strings["Error getting album list"] = "Błąd podczas pobierania listy albumów"; +App::$strings["Error getting photo link"] = "Błąd podczas pobierania linku do zdjęcia"; +App::$strings["Error getting album"] = "Błąd podczas pobierania albumu"; +App::$strings["History"] = "Historia"; +App::$strings["Error creating wiki. Invalid name."] = "Błąd podczas tworzenia wiki. nieprawidłowa nazwa."; +App::$strings["A wiki with this name already exists."] = "Wiki o tej nazwie już istnieje."; +App::$strings["Wiki created, but error creating Home page."] = "Utworzono wiki, ale podczas tworzenia strony głównej wystąpił błąd."; +App::$strings["Error creating wiki"] = "Błąd podczas tworzenia wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Błąd podczas aktualizowania wiki. Błędna nazwa."; +App::$strings["Error updating wiki"] = "Błąd podczas aktualizowania wiki"; +App::$strings["Wiki delete permission denied."] = "Odmowa pozwolenia na usunięcie Wiki."; +App::$strings["Error deleting wiki"] = "Błąd podczas usuwania wiki"; +App::$strings["New page created"] = "Utworzono nową stronę"; +App::$strings["Cannot delete Home"] = "Nie można usunąć strony głównej"; +App::$strings["Current Revision"] = "Bieżąca wersja"; +App::$strings["Selected Revision"] = "Wybrana wersja"; +App::$strings["You must be authenticated."] = "Trzeba być uwierzytelnionym."; +App::$strings["Block Name"] = "Nazwa bloku"; +App::$strings["Blocks"] = "Bloki"; +App::$strings["Block Title"] = "Tytuł bloku"; +App::$strings["Entry censored"] = "Wpis ocenzurowany"; +App::$strings["Entry uncensored"] = "Wpis nieocenzurowany"; +App::$strings["Location not found."] = "Nie znaleziono lokalizacji."; +App::$strings["Location lookup failed."] = "Wyszukiwanie lokalizacji nie powiodło się."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną."; +App::$strings["Syncing locations"] = "Synchronizuję lokalizacje"; +App::$strings["No locations found."] = "Nie znaleziono żadnych lokalizacji."; +App::$strings["Manage Channel Locations"] = "Zarządzaj lokalizacjami kanałów"; +App::$strings["Primary"] = "Podstawowy"; +App::$strings["Drop"] = "Upuść"; +App::$strings["Sync Now"] = "Synchronizuj teraz"; +App::$strings["Please wait several minutes between consecutive operations."] = "Poczekaj kilka minut między kolejnymi operacjami."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając swój kanał."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa."; +App::$strings["Away"] = "Z dala"; +App::$strings["Online"] = "On-line"; +App::$strings["Photos"] = "Zdjęcia"; +App::$strings["Files"] = "Pliki"; +App::$strings["Could not locate selected profile."] = "Nie udało się znaleźć wybranego profilu."; +App::$strings["Connection updated."] = "Zaktualizowano połączenie."; +App::$strings["Failed to update connection record."] = "Nie udało się zaktualizować zapisu połączenia."; +App::$strings["is now connected to"] = "jest teraz połączony z"; +App::$strings["Could not access address book record."] = "Nie można uzyskać dostępu do rekordu książki adresowej."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Odświeżenie nie powiodło się - kanał jest obecnie niedostępny."; +App::$strings["Unable to set address book parameters."] = "Nie można ustawić parametrów książki adresowej."; +App::$strings["Connection has been removed."] = "Połączenie zostało usunięte."; +App::$strings["View Profile"] = "Wyświetl profil"; +App::$strings["View %s's profile"] = "Wyświetl profil %s"; +App::$strings["Refresh Permissions"] = "Odśwież uprawnienia"; +App::$strings["Fetch updated permissions"] = "Pobierz zaktualizowane uprawnienia"; +App::$strings["Refresh Photo"] = "Odśwież zdjęcie"; +App::$strings["Fetch updated photo"] = "Pobierz zaktualizowane zdjęcie"; +App::$strings["Recent Activity"] = "Ostatnia aktywność"; +App::$strings["View recent posts and comments"] = "Wyświetl najnowsze wpisy i komentarze"; +App::$strings["Unblock"] = "Odblokuj"; +App::$strings["Block"] = "Zablokuj"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Zablokuj (lub odblokuj) całą komunikację z tym połączeniem"; +App::$strings["This connection is blocked!"] = "To połączenie jest zablokowane!"; +App::$strings["Unignore"] = "Przestań ignorować"; +App::$strings["Ignore"] = "Ignoruj"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignoruj (lub przywróć) całą komunikację przychodzącą z tego połączenia"; +App::$strings["This connection is ignored!"] = "To połączenie jest ignorowane!"; +App::$strings["Unarchive"] = "Przywróć z archiwum"; +App::$strings["Archive"] = "Archiwizuj"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale zachowaj zawartość"; +App::$strings["This connection is archived!"] = "To połączenie zostało zarchiwizowane!"; +App::$strings["Unhide"] = "Odkryj"; +App::$strings["Hide"] = "Ukryj"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Ukryj lub odkryj to połączenie na liście innymi połączeń"; +App::$strings["This connection is hidden!"] = "To połączenie jest ukryte!"; +App::$strings["Delete this connection"] = "Usuń to połączenie"; +App::$strings["Fetch Vcard"] = "Pobierz Vcard"; +App::$strings["Fetch electronic calling card for this connection"] = "Pobierz kartę rozmów elektronicznych dla tego połączenia"; +App::$strings["Open Individual Permissions section by default"] = "Otwórz domyślnie sekcję Uprawnienia indywidualne"; +App::$strings["Affinity"] = "Stopień zaprzyjaźnienie"; +App::$strings["Open Set Affinity section by default"] = "Otwieraj domyślnie sekcję Ustaw stopień zaprzyjażnienia"; +App::$strings["Me"] = "Ja"; +App::$strings["Family"] = "Rodzina"; +App::$strings["Friends"] = "Przyjaciele"; +App::$strings["Acquaintances"] = "Znajomi"; +App::$strings["All"] = "Wszyscy"; +App::$strings["Filter"] = "Filtr"; +App::$strings["Open Custom Filter section by default"] = "Otwieraj domyślnie sekcję Własny filtr"; +App::$strings["Approve this connection"] = "Zatwierdź to połączenie"; +App::$strings["Accept connection to allow communication"] = "Zaakceptuj połączenie, aby umożliwić komunikację"; +App::$strings["Set Affinity"] = "Ustaw stopień zaprzyjaźnienia"; +App::$strings["Set Profile"] = "Ustaw profil"; +App::$strings["Set Affinity & Profile"] = "Ustaw stopień zaprzyjaźnienia i profil"; +App::$strings["This connection is unreachable from this location."] = "To połączenie jest nieosiągalne z tej lokalizacji."; +App::$strings["This connection may be unreachable from other channel locations."] = "To połączenie może być nieosiągalne z innych lokalizacji kanału."; +App::$strings["Location independence is not supported by their network."] = "Niezależność lokalizacji nie jest obsługiwana przez ich sieć."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie jest obsługiwana przez ich sieć."; +App::$strings["Connection: %s"] = "Połączenie: %s"; +App::$strings["Connection requests will be approved without your interaction"] = "Prośby o połączenie zostaną zatwierdzone bez Twojej interakcji"; +App::$strings["This connection's primary address is"] = "Podstawowy adres tego połączenia to"; +App::$strings["Available locations:"] = "Dostępne lokalizacje:"; +App::$strings["Connection Tools"] = "Narzędzia połączeń"; +App::$strings["Slide to adjust your degree of friendship"] = "Przesuń, aby dostosować stopień zaprzyjaźnienia"; +App::$strings["Rating"] = "Ocena"; +App::$strings["Slide to adjust your rating"] = "Przesuń, aby dostosować swoją ocenę"; +App::$strings["Optionally explain your rating"] = "Ewentualnie wyjaśnij swoją ocenę"; +App::$strings["Custom Filter"] = "Własny filtr"; +App::$strings["Only import posts with this text"] = "Importuj tylko wpisy z tym tekstem"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, aby zaimportować wszystkie wpisy"; +App::$strings["Do not import posts with this text"] = "Nie importuj wpisów z tym tekstem"; +App::$strings["This information is public!"] = "Ta informacja jest publiczna!"; +App::$strings["Connection Pending Approval"] = "Połączenie oczekujące na zatwierdzenie"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego przeglądania swojego profilu."; +App::$strings["Their Settings"] = "Ich ustawienia"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają wyższy priorytet niż indywidualne ustawienia. Nie możesz tutaj zmienić tych ustawień."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone ustawienie ulegnie zmianie."; +App::$strings["Last update:"] = "Ostatnia aktualizacja:"; +App::$strings["Details"] = "Szczegóły"; +App::$strings["Email resent"] = "Wiadomość wysłana"; +App::$strings["Email resend failed"] = "Ponowne wysłanie wiadomości nie powiodło się"; +App::$strings["Verification successful"] = "Weryfikacja zakończyła się pomyślnie"; +App::$strings["Account successfull created"] = "Konto zostało pomyślnie utworzone"; +App::$strings["Channel successfull created"] = "Kanał został pomyślnie utworzony"; +App::$strings["Automatic channel creation failed. Please create a channel."] = "Automatyczne tworzenie kanału nie powiodło się. Utwórz kanał ręcznie."; +App::$strings["Account creation error"] = "Błąd tworzenia konta"; +App::$strings["Verify failed"] = "Weryfikacja nie powiodła się"; +App::$strings["Token verification failed"] = "Weryfikacja tokena nie powiodła się"; +App::$strings["Request not inside time frame"] = "Żądanie nie mieści się się w ramach czasowych"; +App::$strings["Identity unknown"] = "Tożsamość nieznana"; +App::$strings["dId2 mistaken"] = "nieprawidłowy dId2"; +App::$strings["Your Registration ID"] = "Twój identyfikator rejestracji"; +App::$strings["Registration verification"] = "Weryfikacja rejestracji"; +App::$strings["Hold on, you can start verification in"] = "Poczekaj. Możesz rozpocząć weryfikację za"; +App::$strings["Please remember your verification token for ID"] = "Zapamiętaj swój token weryfikacyjny dla identyfikatora"; +App::$strings["Token validity"] = "Ważność tokena"; +App::$strings["Resend email"] = "Wyślij ponownie wiadomość e-mail"; +App::$strings["Registration status"] = "Status rejestracji"; +App::$strings["Verification successful!"] = "Weryfikacja powiodła się!"; +App::$strings["Your login ID is"] = "Twój identyfikator logowania to"; +App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się za pomocą swojego identyfikatora logowania i podanego hasła."; +App::$strings["Registration request revoked"] = "Wniosek o rejestrację został odwołany"; +App::$strings["Sorry for any inconvience. Thank you for your response."] = "Przepraszamy za jakiekolwiek niedogodności. Dziękujemy za odpowiedź."; +App::$strings["Please enter your verification token for ID"] = "Wprowadź token weryfikacyjny dla identyfikatora"; +App::$strings["Please check your email!"] = "Proszę sprawdzić swoją skrzynkę pocztową!"; +App::$strings["Verification token"] = "Token weryfikacyjny"; +App::$strings["ID expired"] = "Ważność identyfikatora wygasła"; +App::$strings["You will require the verification token for ID"] = "Będziesz potrzebować tokena weryfikacyjnego do identyfikatora"; +App::$strings["Unknown or expired ID"] = "Nieznany lub wygasły identyfikator"; +App::$strings["dId2 malformed"] = "źle sformułowany dId2"; +App::$strings["Image uploaded but image cropping failed."] = "Obraz został przesłany, ale przycinanie obrazu nie powiodło się."; +App::$strings["Profile Photos"] = "Zdjęcia profilowe"; +App::$strings["Image resize failed."] = "Zmiana rozmiaru obrazu nie powiodła się."; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie zostanie wyświetlone od razu."; +App::$strings["Unable to process image"] = "Nie można przetworzyć obrazu"; +App::$strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się."; +App::$strings["Unable to process image."] = "Nie można przetworzyć obrazu."; +App::$strings["Photo not available."] = "Zdjęcie nie jest dostępne."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. Zdjęcia profilowe dla profili alternatywnych odziedziczą uprawnienia profilu"; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być rozpowszechniane na innych stronach internetowych."; +App::$strings["Upload File:"] = "Prześlij plik:"; +App::$strings["Select a profile:"] = "Wybierz profil:"; +App::$strings["Use Photo for Profile"] = "Użyj zdjęcia do profilu"; +App::$strings["Change Profile Photo"] = "Zmień zdjęcie profilowe"; +App::$strings["Use"] = "Użyj"; +App::$strings["Upload"] = "Prześlij"; +App::$strings["Remove"] = "Usuń"; +App::$strings["Use a photo from your albums"] = "Użyj zdjęcia ze swoich albumów"; +App::$strings["Select existing photo"] = "Wybierz istniejące zdjęcie"; +App::$strings["Crop Image"] = "Przytnij zdjęcie"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Dostosuj kadrowanie obrazu, aby uzyskać optymalne wyświetlanie."; +App::$strings["Done Editing"] = "Zakończono edycję"; +App::$strings["Files: shared with me"] = "Pliki: udostępnione mi"; +App::$strings["NEW"] = "NOWY"; +App::$strings["Size"] = "Rozmiar"; +App::$strings["Last Modified"] = "Ostatnio zmodyfikowane"; +App::$strings["Remove all files"] = "Usuń wszystkie pliki"; +App::$strings["Remove this file"] = "Usuń ten plik"; +App::$strings["Edit Layout"] = "Edytuj układ"; +App::$strings["Create a new channel"] = "Utwórz nowy kanał"; +App::$strings["Channel Manager"] = "Menadżer kanałów"; +App::$strings["Current Channel"] = "Bieżący kanał"; +App::$strings["Switch to one of your channels by selecting it."] = "Przełącz się na jeden ze swoich kanałów, wybierając go."; +App::$strings["Default Channel"] = "Domyślny kanał"; +App::$strings["Make Default"] = "Ustaw jako domyślny"; +App::$strings["%d new messages"] = "%d nowych wiadomości"; +App::$strings["%d new introductions"] = "%d nowych wprowadzeń"; +App::$strings["Delegated Channel"] = "Deleguj kanał"; +App::$strings["Connection added."] = "Dodano połączenie."; +App::$strings["Unable to locate original post."] = "Nie można znaleźć oryginalnego wpisu."; +App::$strings["Empty post discarded."] = "Pusty wpis został odrzucony."; +App::$strings["Duplicate post suppressed."] = "Powielony wpis został wyłączony."; +App::$strings["System error. Post not saved."] = "Błąd systemu. Wpis nie został zapisany."; +App::$strings["Your comment is awaiting approval."] = "Twój komentarz oczekuje na zatwierdzenie."; +App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym poście."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Osiągnięty został limit %1$.0f wpisów najwyższego poziomu."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Osiągnięty został limit %1$.0f stron internetowych."; +App::$strings["Website:"] = "Serwis internetowy:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanał zdalny [% s] (jeszcze nieznany w tym serwisie)"; +App::$strings["Rating (this information is public)"] = "Ocena (ta informacja jest publiczna)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Ewentualnie wyjaśnij swoją ocenę (ta informacja jest publiczna)"; +App::$strings["Invalid item."] = "Nieprawidłowy element."; +App::$strings["Page not found."] = "Nie znaleziono strony."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Xchan Lookup"] = "Wyszukiwanie xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Wyszukaj xchan (lub webbie) zaczynając od: "; +App::$strings["Not found."] = "Nie znaleziono."; +App::$strings["Some blurb about what to do when you're new here"] = "Kilka uwag o tym, co robisz, gdy jesteś tu nowy"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s obserwuje %3\$s %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s przestał obserwować %3\$s %2\$s"; +App::$strings["Please login."] = "Proszę się zalogować."; +App::$strings["Edit Block"] = "Edytuj blok"; +App::$strings["webpage"] = "strona internetowa"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "układ"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "Element %s zainstalowany"; +App::$strings["%s element installation failed"] = "Instalacja elementu %s nie powiodła się"; +App::$strings["Public Hubs"] = "Portale publiczne"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Wymienione portale umożliwiają publiczną rejestrację w sieci \$Projectname. Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach."; +App::$strings["Hub URL"] = "Adres URL serwisu"; +App::$strings["Access Type"] = "Typ dostępu"; +App::$strings["Registration Policy"] = "Zasady rejestracji"; +App::$strings["Stats"] = "Statystyki"; +App::$strings["Software"] = "Oprogramowanie"; +App::$strings["Ratings"] = "Oceny"; +App::$strings["Rate"] = "Ocena"; +App::$strings["You must be logged in to see this page."] = "Musisz być zalogowany, aby zobaczyć tę stronę."; +App::$strings["Chatrooms App"] = "Aplikacja Czaty"; +App::$strings["Access Controlled Chatrooms"] = "Dostęp do kontrolowanych czatów"; +App::$strings["Room not found"] = "Nie znaleziono pokoju"; +App::$strings["Leave Room"] = "Opuść pokój"; +App::$strings["Delete Room"] = "Usuń pokój"; +App::$strings["I am away right now"] = "Nie ma mnie teraz"; +App::$strings["I am online"] = "Jestem dostępny"; +App::$strings["Bookmark this room"] = "Zaznacz ten pokój"; +App::$strings["Please enter a link URL:"] = "Proszę wprowadzić adres URL linku:"; +App::$strings["Encrypt text"] = "Zaszyfruj tekst"; +App::$strings["New Chatroom"] = "Nowy czat"; +App::$strings["Chatroom name"] = "Nazwa czatu"; +App::$strings["Expiration of chats (minutes)"] = "Wygaśnięcie czatów (minuty)"; +App::$strings["%1\$s's Chatrooms"] = "Czaty %1\$s"; +App::$strings["No chatrooms available"] = "Brak dostępnych czatów"; +App::$strings["Expiration"] = "Wygaśnięcie"; +App::$strings["min"] = "min"; +App::$strings["Channel Export App"] = "Aplikacja Eksport Kanału"; +App::$strings["Export your channel"] = "Wyeksportuj swój kanał"; +App::$strings["Export Channel"] = "Eksport Kanału"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć do zaimportowania danych do nowego serwisu, ale nie zawiera treści."; +App::$strings["Export Content"] = "Eksport Treści"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka minut."; +App::$strings["Export your posts from a given year."] = "Eksportuj swoje wpisy z danego roku."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera serwisu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2\$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)."; +App::$strings["No valid account found."] = "Nie znaleziono prawidłowego konta."; +App::$strings["Password reset request issued. Check your email."] = "Wysłano prośbę o zresetowanie hasła. Sprawdź swoją skrzynkę e-mail."; +App::$strings["Site Member (%s)"] = "Członek serwisu (%s)"; +App::$strings["Password reset requested at %s"] = "Zresetowano hasło na %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie hasła nie powiodło się."; +App::$strings["Password Reset"] = "Resetowanie hasła"; +App::$strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; +App::$strings["Your new password is"] = "Twoje nowe hasło to"; +App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; +App::$strings["click here to login"] = "kliknij tutaj aby się zalogować"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym zalogowaniu."; +App::$strings["Your password has changed at %s"] = "Twoje hasło zostało zmienione na %s"; +App::$strings["Forgot your Password?"] = "Zapomniałeś hasła?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź swoja skrzynkę e-mail, aby uzyskać dalsze instrukcje."; +App::$strings["Email Address"] = "Adres e-mail"; +App::$strings["Poll not found."] = "Nie znaleziono ankiety."; +App::$strings["Invalid response."] = "Nieprawidłowa odpowiedź."; +App::$strings["Response submitted. Updates may not appear instantly."] = "Odpowiedź przesłana. Aktualizacje mogą nie pojawiać się natychmiast."; +App::$strings["sent you a private message"] = "wysłał Ci prywatną wiadomość"; +App::$strings["added your channel"] = "dodał Twój kanał"; +App::$strings["requires approval"] = "wymaga zatwierdzenia"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[dzisiaj]"; +App::$strings["posted an event"] = "opublikował wydarzenie"; +App::$strings["shared a file with you"] = "udostępnił Ci plik"; +App::$strings["You must enable javascript for your browser to be able to view this content."] = "Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej przeglądarce."; +App::$strings["Article"] = "Artykuł"; +App::$strings["Item has been removed."] = "Element został usunięty."; +App::$strings["Accounts"] = "Konta"; +App::$strings["Blocked accounts"] = "Zablokowane konta"; +App::$strings["Expired accounts"] = "Wygasłe konta"; +App::$strings["Expiring accounts"] = "Wygasające konta"; +App::$strings["Channels"] = "Kanały"; +App::$strings["Message queues"] = "Kolejki wiadomości"; +App::$strings["Your software should be updated"] = "Twoje oprogramowanie powinno zostać zaktualizowane"; +App::$strings["Administration"] = "Administracja"; +App::$strings["Summary"] = "Podsumowanie"; +App::$strings["Registered accounts"] = "Zarejestrowane konta"; +App::$strings["Pending registrations"] = "Rejestracja oczekująca"; +App::$strings["Registered channels"] = "Zarejestrowane kanały"; +App::$strings["Active addons"] = "Aktywne dodatki"; +App::$strings["Version"] = "Wersja"; +App::$strings["Repository version (master)"] = "Wersja repozytorium (master)"; +App::$strings["Repository version (dev)"] = "Wersja repozytorium (dev)"; +App::$strings["Page owner information could not be retrieved."] = "Nie można pobrać informacji o właścicielu strony."; +App::$strings["Album not found."] = "Nie znaleziono albumu."; +App::$strings["Delete Album"] = "Usuń album"; +App::$strings["Delete Photo"] = "Usuń zdjęcie"; +App::$strings["No photos selected"] = "Nie wybrano zdjęć"; +App::$strings["Access to this item is restricted."] = "Dostęp do tego elementu jest ograniczony."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Wykorzystane miejsce na zdjęcia: %1$.2f MB z %2$.2f MB."; +App::$strings["%1$.2f MB photo storage used."] = "Wykorzystane miejsce na zdjęcia: %1$.2f MB."; +App::$strings["Upload Photos"] = "Prześlij zdjęcia"; +App::$strings["Enter an album name"] = "Wpisz nazwę albumu"; +App::$strings["or select an existing album (doubleclick)"] = "lub wybierz istniejący album (podwójne kliknięcie)"; +App::$strings["Create a status post for this upload"] = "Utwórz wpis o stanie tego przesyłania"; +App::$strings["Description (optional)"] = "Opis (opcjonalnie)"; +App::$strings["Show Newest First"] = "Pokaż najpierw najnowsze"; +App::$strings["Show Oldest First"] = "Pokaż najpierw najstarsze"; +App::$strings["View Photo"] = "Zobacz zdjęcie"; +App::$strings["Unknown"] = "Nieznane"; +App::$strings["Edit Album"] = "Edytuj album"; +App::$strings["Add Photos"] = "Dodaj zdjęcia"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tej pozycji może być ograniczony."; +App::$strings["Photo not available"] = "Zdjęcie niedostępne"; +App::$strings["Use as profile photo"] = "Użyj jako zdjęcie profilowe"; +App::$strings["Use as cover photo"] = "Użyj jako zdjęcia okładkowe"; +App::$strings["Private Photo"] = "Zdjęcie prywatne"; +App::$strings["View Full Size"] = "Zobacz pełny rozmiar"; +App::$strings["Edit photo"] = "Edytuj zdjęcie"; +App::$strings["Rotate CW (right)"] = "Obróć w prawo"; +App::$strings["Rotate CCW (left)"] = "Obróć w lewo"; +App::$strings["Move photo to album"] = "Przenieś zdjęcie do albumu"; +App::$strings["Enter a new album name"] = "Wpisz nową nazwę albumu"; +App::$strings["or select an existing one (doubleclick)"] = "lub wybierz istniejący (podwójne kliknięcie)"; +App::$strings["Add a Tag"] = "Dodaj tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Przykład: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Oznacz jako \"dla dorosłych\" w widoku albumu"; +App::$strings["I like this (toggle)"] = "Lubię to (przełącz)"; +App::$strings["I don't like this (toggle)"] = "Nie podoba mi się to (przełącz)"; +App::$strings["Please wait"] = "Proszę czekać"; +App::$strings["This is you"] = "To jesteś ty"; +App::$strings["Comment"] = "Komentarz"; +App::$strings["__ctx:title__ Likes"] = "Polubienia"; +App::$strings["__ctx:title__ Dislikes"] = "Niepolubienia"; +App::$strings["__ctx:title__ Agree"] = "Zgoda"; +App::$strings["__ctx:title__ Disagree"] = "Sprzeciw"; +App::$strings["__ctx:title__ Abstain"] = "Wstrzymuję się"; +App::$strings["__ctx:title__ Attending"] = "Uczestniczę"; +App::$strings["__ctx:title__ Not attending"] = "Nie uczestniczę"; +App::$strings["__ctx:title__ Might attend"] = "Mogę uczestniczyć"; +App::$strings["View all"] = "Pokaż wszystkie"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Polubienie", + 1 => "Polubienia", + 2 => "Polubień", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Niepolubienie", + 1 => "Niepolubienia", + 2 => "Niepolubień", +); +App::$strings["Photo Tools"] = "Narzędzia fotograficzne"; +App::$strings["In This Photo:"] = "Na tym zdjęciu:"; +App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Polubienia"; +App::$strings["__ctx:noun__ Dislikes"] = "Niepolubienia"; +App::$strings["Close"] = "Zamknij"; +App::$strings["Recent Photos"] = "Najnowsze zdjęcia"; +App::$strings["Posts and comments"] = "Wpisy i komentarze"; +App::$strings["Only posts"] = "Tylko wpisy"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu."; +App::$strings["Search Results For:"] = "Wyniki wyszukiwania dla:"; +App::$strings["Cards App"] = "Aplikacja Karty"; +App::$strings["Create personal planning cards"] = "Twórz osobiste karty zadań"; +App::$strings["Add Card"] = "Dodaj kartę"; +App::$strings["Cards"] = "Karty"; +App::$strings["This page is available only to site members"] = "Ta strona jest dostępna tylko dla członków serwisu"; +App::$strings["Welcome"] = "Witamy"; +App::$strings["What would you like to do?"] = "Co chciałbyś zrobić?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Dodaj tę stronę do zakładek, jeśli chcesz wrócić do niej w przyszłości"; +App::$strings["Upload a profile photo"] = "Prześlij zdjęcie profilowe"; +App::$strings["Upload a cover photo"] = "Prześlij zdjęcie na okładkę"; +App::$strings["Edit your default profile"] = "Edytuj swój domyślny profil"; +App::$strings["View friend suggestions"] = "Zobacz propozycje znajomości"; +App::$strings["View the channel directory"] = "Wyświetl katalog kanałów"; +App::$strings["View/edit your channel settings"] = "Wyświetl/edytuj ustawienia swojego kanału"; +App::$strings["View the site or project documentation"] = "Wyświetl witrynę lub dokumentację projektu"; +App::$strings["Visit your channel homepage"] = "Odwiedź stronę główną swojego kanału"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana"; +App::$strings["Active"] = "Aktywny"; +App::$strings["Blocked"] = "Zablokowany"; +App::$strings["Ignored"] = "Ignorowany"; +App::$strings["Hidden"] = "Ukryty"; +App::$strings["Archived/Unreachable"] = "Zarchiwizowane/Nieosiągalne"; +App::$strings["New"] = "Nowy"; +App::$strings["Active Connections"] = "Aktywne połączenia"; +App::$strings["Show active connections"] = "Pokaż aktywne połączenia"; +App::$strings["New Connections"] = "Nowe połączenia"; +App::$strings["Show pending (new) connections"] = "Pokaż oczekujące (nowe) połączenia"; +App::$strings["Only show blocked connections"] = "Pokaż tylko zablokowane połączenia"; +App::$strings["Only show ignored connections"] = "Pokaż tylko ignorowane połączenia"; +App::$strings["Only show archived/unreachable connections"] = "Pokaż tylko zarchiwizowane/nieosiągalne połączenia"; +App::$strings["Only show hidden connections"] = "Pokaż tylko ukryte połączenia"; +App::$strings["Show all connections"] = "Pokaż wszystkie połączenia"; +App::$strings["Pending approval"] = "W oczekiwaniu na zatwierdzenie"; +App::$strings["Archived"] = "Zarchiwizowane"; +App::$strings["Not connected at this location"] = "Brak połączenia w tej lokalizacji"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Edytuj połączenie"; +App::$strings["Delete connection"] = "Usuń połączenie"; +App::$strings["Channel address"] = "Adres kanału"; +App::$strings["Network"] = "Sieć"; +App::$strings["Call"] = "Połączenie"; +App::$strings["Status"] = "Stan"; +App::$strings["Connected"] = "Połączene"; +App::$strings["Approve connection"] = "Zatwierdź połączenie"; +App::$strings["Approve"] = "Zatwierdź"; +App::$strings["Ignore connection"] = "Ignoruj połączenie"; +App::$strings["Recent activity"] = "Ostatnia aktywność"; +App::$strings["Connect"] = "Połączenie"; +App::$strings["Connect at this location"] = "Połącz w tej lokalizacji"; +App::$strings["Connections"] = "Połączenia"; +App::$strings["Search your connections"] = "Wyszukaj swoje połączenia"; +App::$strings["Connections search"] = "Wyszukiwanie połączeń"; +App::$strings["Find"] = "Znajdź"; +App::$strings["Item is not editable"] = "Elementu nie można edytować"; +App::$strings["Tag removed"] = "Tag został usunięty"; +App::$strings["Remove Item Tag"] = "Usuń znacznik elementu"; +App::$strings["Select a tag to remove: "] = "Wybierz znacznik do usunięcia: "; +App::$strings["Affinity Tool settings updated."] = "Zaktualizowano ustawienia narzędzia koligacji."; +App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = "Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym połączeniem. Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów tylko od najbliższych znajomych lub wszystkich w strumieniu."; +App::$strings["Affinity Tool App"] = "Aplikacja Narzędzie koligacji"; +App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków na stronie sieci/strumienia w procentach."; +App::$strings["Default maximum affinity level"] = "Domyślny maksymalny poziom więzi"; +App::$strings["0-99 default 99"] = "0-99, domyślnie 99"; +App::$strings["Default minimum affinity level"] = "Domyślny minimalny poziom więzi"; +App::$strings["0-99 - default 0"] = "0-99, domyślnie 0"; +App::$strings["Persistent affinity levels"] = "Trwałe poziomy więzi"; +App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości domyślnych po ponownym załadowaniu strony"; +App::$strings["Affinity Tool Settings"] = "Ustawienia Narzędzia Zaprzyjaźnienia"; +App::$strings["No channel."] = "Brak kanału."; +App::$strings["No connections in common."] = "Brak wspólnych połączeń."; +App::$strings["View Common Connections"] = "Wyświetl typowe połączenia"; +App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Powtórzony %2\$s %1\$s"; +App::$strings["Post repeated"] = "Wpis powtórzony"; +App::$strings["Page link"] = "Link do strony"; +App::$strings["Edit Webpage"] = "Edytuj stronę internetową"; +App::$strings["vcard"] = "vcard"; +App::$strings["Edit Article"] = "Edytuj artykuł"; +App::$strings["Authentication failed."] = "Uwierzytelnianie nie powiodło się."; +App::$strings["Remote Authentication"] = "Zdalne uwierzytelnianie"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Wpisz adres swojego kanału (np. kanał@example.com)"; +App::$strings["Authenticate"] = "Uwierzytelnianie"; +App::$strings["Item not available."] = "Element nie jest dostępny."; +App::$strings["This setting requires special processing and editing has been blocked."] = "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana."; +App::$strings["Configuration Editor"] = "Edytor konfiguracji"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie wiesz, jak prawidłowo korzystać z tej funkcji."; +App::$strings["Random Channel App"] = "Aplikacja Losowy kanał"; +App::$strings["Visit a random channel in the \$Projectname network"] = "Odwiedź losowy kanał w sieci \$Projectname"; +App::$strings["Theme settings updated."] = "Zaktualizowano ustawienia motywu."; +App::$strings["No themes found."] = "Nie znaleziono motywów."; +App::$strings["Disable"] = "Wyłącz"; +App::$strings["Enable"] = "Włącz"; +App::$strings["Screenshot"] = "Zrzut ekranu"; +App::$strings["Themes"] = "Motywy"; +App::$strings["Toggle"] = "Przełącz"; +App::$strings["Settings"] = "Ustawienia"; +App::$strings["Author: "] = "Autor: "; +App::$strings["Maintainer: "] = "Opiekun: "; +App::$strings["[Experimental]"] = "[Eksperymentalne]"; +App::$strings["[Unsupported]"] = "[Nieobsługiwane]"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z natury niebezpieczne."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących serwisów:"; +App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone treści z tego serwisu są jawnie zablokowane."; +App::$strings["Security"] = "Bezpieczeństwo"; +App::$strings["Block public"] = "Zablokuj publiczny dostęp"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony."; +App::$strings["Provide a cloud root directory"] = "Podaj katalog główny w chmurze"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają pliki publiczne"; +App::$strings["Show total disk space available to cloud uploads"] = "Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury"; +App::$strings["Set \"Transport Security\" HTTP header"] = "Ustaw nagłówek HTTP \"Transport Security\""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Ustaw nagłówek HTTP \"Content Security Policy\""; +App::$strings["Allowed email domains"] = "Dozwolone domeny e-mail"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na dowolne domeny"; +App::$strings["Not allowed email domains"] = "Niedozwolone domeny e-mail"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś dozwolone domeny."; +App::$strings["Allow communications only from these sites"] = "Zezwalaj na komunikację tylko z tych serwisów"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Jeden serwis w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z każdym serwisem"; +App::$strings["Block communications from these sites"] = "Blokuj komunikację z tych serwisów"; +App::$strings["Allow communications only from these channels"] = "Zezwalaj na komunikację tylko z tych kanałów"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał"; +App::$strings["Block communications from these channels"] = "Blokuj komunikację z tych kanałów"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków ."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Zezwalaj na niefiltrowaną osadzony kod HTML tylko z tych domen"; +App::$strings["One site per line. By default embedded content is filtered."] = "Jedna witryna w wierszu. Domyślnie, treść osadzona jest filtrowana."; +App::$strings["Block embedded HTML from these domains"] = "Zablokuj osadzony kod HTML z tych domen"; +App::$strings["Allow SVG thumbnails in file browser"] = "Zezwalaj na miniatury SVG w przeglądarce plików"; +App::$strings["WARNING: SVG images may contain malicious code."] = "OSTRZEŻENIE: obrazy SVG mogą zawierać złośliwy kod."; +App::$strings["Allow embedded (inline) PDF files"] = "Zezwalaj na osadzone (w tekście) pliki PDF"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s konto jest zablokowane/odblokowane", + 1 => "%s konta są zablokowane/odblokowane", + 2 => "%s kont jest zablokowanych/odblokowanych", +); +App::$strings["%s account deleted"] = array( + 0 => "%s konto jest usunięte", + 1 => "%s konta są usunięte", + 2 => "%s kont jest usuniętych", +); +App::$strings["Account not found"] = "Konto nie znalezione"; +App::$strings["Account '%s' deleted"] = "Usunięto konto '%s'"; +App::$strings["Account '%s' blocked"] = "Konto '%s' zostało zablokowane"; +App::$strings["Account '%s' unblocked"] = "Konto '%s' zostało odblokowane"; +App::$strings["Unverified"] = "Niesprawdzony"; +App::$strings["Expired"] = "Przedawniony"; +App::$strings["Show verified registrations"] = "Pokaż zweryfikowane rejestracje"; +App::$strings["Show all registrations"] = "Pokaż wszystkie rejestracje"; +App::$strings["Select toggle"] = "Wybierz przełącznik"; +App::$strings["Deny selected"] = "Odrzuć wybrane"; +App::$strings["Approve selected"] = "Zatwierdź wybrane"; +App::$strings["All registrations"] = "Wszystkie rejestracje"; +App::$strings["Verified registrations waiting for approval"] = "Zweryfikowane rejestracje czekają na zatwierdzenie"; +App::$strings["Request date"] = "Data wniosku"; +App::$strings["Requests"] = "Wnioski"; +App::$strings["No registrations available"] = "Brak dostępnych wniosków"; +App::$strings["No verified registrations available"] = "Brak dostępnych zweryfikowanych wniosków"; +App::$strings["Verified"] = "Zweryfikowane"; +App::$strings["Not yet verified"] = "Jeszcze nie zweryfikowane"; +App::$strings["ID"] = "ID"; +App::$strings["All channels"] = "Wszystkie kanały"; +App::$strings["Register date"] = "Data rejestracji"; +App::$strings["Last login"] = "Ostatnie logowanie"; +App::$strings["Expires"] = "Wygasa"; +App::$strings["Service class"] = "Klasa usługi"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["Message"] = "Wiadowmość"; +App::$strings["Off"] = "WYŁ"; +App::$strings["On"] = "WŁ"; +App::$strings["Lock feature %s"] = "Blokuj możliwość %s"; +App::$strings["Manage Additional Features"] = "Zarządzaj dodatkowymi możliwościami"; +App::$strings["Queue Statistics"] = "Statystyki kolejki"; +App::$strings["Total Entries"] = "Ogółem wpisów"; +App::$strings["Priority"] = "Priorytet"; +App::$strings["Destination URL"] = "Docelowy URL"; +App::$strings["Mark hub permanently offline"] = "Oznacz serwis na stałe w trybie offline"; +App::$strings["Empty queue for this hub"] = "Pusta kolejka dla tego serwisu"; +App::$strings["Last known contact"] = "Ostatni znany kontakt"; +App::$strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako pomyślna"; +App::$strings["Verification of update %s failed. Check system logs."] = "Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki systemowe."; +App::$strings["Update %s was successfully applied."] = "Aktualizacja %s została pomyślnie zastosowana."; +App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = "Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało."; +App::$strings["Update %s does not contain a verification function."] = "Aktualizacja %s nie zawiera funkcji weryfikacji."; +App::$strings["Update function %s could not be found."] = "Nie można znaleźć funkcji aktualizacji %s."; +App::$strings["Executing update procedure %s failed. Check system logs."] = "Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki systemowe."; +App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało."; +App::$strings["Failed Updates"] = "Nieudane aktualizacje"; +App::$strings["Mark success (if update was manually applied)"] = "Oznacz sukces (jeśli aktualizacja została wykonana ręcznie)"; +App::$strings["Attempt to verify this update if a verification procedure exists"] = "Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji"; +App::$strings["Attempt to execute this update step automatically"] = "Spróbuj automatycznie wykonać ten krok aktualizacji"; +App::$strings["No failed updates."] = "Nie ma nieudanych aktualizacji."; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanał jest ocenzurowany/nieocenzurowany", + 1 => "%s kanały są ocenzurowane/nieocenzurowane", + 2 => "%s kanałów jest ocenzurowanych/nieocenzurowanych", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Kod %s kanału jest dozwolony /niedozwolony", + 1 => "Kod %s kanałów jest dozwolony/niedozwolony", + 2 => "Kod %s kanałów jest dozwolony/niedozwolony", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s kanał został usunięty", + 1 => "%s kanały zostały usunięte", + 2 => "%s kanałów został usuniętych", +); +App::$strings["Channel not found"] = "Kanał nie został znaleziony"; +App::$strings["Channel '%s' deleted"] = "Kanał '%s' został usunięty"; +App::$strings["Channel '%s' censored"] = "Kanał '%s' został ocenzurowany"; +App::$strings["Channel '%s' uncensored"] = "Kanał '%s' jest nieocenzurowany"; +App::$strings["Channel '%s' code allowed"] = "Dozwolony kod kanału '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Niedozwolony kod kanału '%s'"; +App::$strings["select all"] = "wybierz wszystkie"; +App::$strings["Censor"] = "Cenzoruj"; +App::$strings["Uncensor"] = "Usuń cenzurę"; +App::$strings["Allow Code"] = "Zezwalaj na kod"; +App::$strings["Disallow Code"] = "Nie zezwalaj na kod"; +App::$strings["Channel"] = "Kanał"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["Log settings updated."] = "Zaktualizowano ustawienia dziennika."; +App::$strings["Logs"] = "Logi"; +App::$strings["Clear"] = "Wyczyść"; +App::$strings["Debugging"] = "Debugowanie"; +App::$strings["Log file"] = "Plik dziennika"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego serwera WWW."; +App::$strings["Log level"] = "Poziom rejestrowania zdarzeń"; +App::$strings["Password changed for account %d."] = "Hasło zostało zmienione do konta%d."; +App::$strings["Account settings updated."] = "Zaktualizowano ustawienia konta."; +App::$strings["Account not found."] = "Konto nie zostało znalezione."; +App::$strings["Account Edit"] = "Edycja konta"; +App::$strings["New Password"] = "Nowe hasło"; +App::$strings["New Password again"] = "Powtórz nowe hasło"; +App::$strings["Account language (for emails)"] = "Język konta (dla wiadomości e-mail)"; +App::$strings["Plugin %s disabled."] = "Wtyczka %s jest wyłączona."; +App::$strings["Plugin %s enabled."] = "Wtyczka %s jest włączona."; +App::$strings["Addons"] = "Dodatki"; +App::$strings["Minimum project version: "] = "Minimalna wersja projektu: "; +App::$strings["Maximum project version: "] = "Maksymalna wersja projektu: "; +App::$strings["Minimum PHP version: "] = "Minimalna wersja PHP: "; +App::$strings["Compatible Server Roles: "] = "Zgodne role serwera: "; +App::$strings["Requires: "] = "Wymaga: "; +App::$strings["Disabled - version incompatibility"] = "Wyłączone - niezgodność wersji"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Wprowadź adres URL publicznego repozytorium Git dodatków."; +App::$strings["Addon repo git URL"] = "Adres URL repozytorium Git dodatków"; +App::$strings["Custom repo name"] = "Własna nazwa repozytorium"; +App::$strings["(optional)"] = "(opcjonalnie)"; +App::$strings["Download Addon Repo"] = "Pobierz repozytorium dodatków"; +App::$strings["Install new repo"] = "Zainstaluj nowe repozytorium"; +App::$strings["Install"] = "Zainstaluj"; +App::$strings["Manage Repos"] = "Zarządzaj repozytoriami"; +App::$strings["Installed Addon Repositories"] = "Zainstalowane repozytoria dodatków"; +App::$strings["Install a New Addon Repository"] = "Zainstaluj nowe repozytorium dodatków"; +App::$strings["Switch branch"] = "Przełącz gałąź"; +App::$strings["Invalid input"] = "Nieprawidłowe dane"; +App::$strings["Errors"] = "Błędy"; +App::$strings["Site settings updated."] = "Zaktualizowano ustawienia serwisu."; +App::$strings["Default"] = "Domyślnie"; +App::$strings["%s - (Incompatible)"] = "%s - (niekompatybilne)"; +App::$strings["mobile"] = "urządzenie przenośne"; +App::$strings["experimental"] = "eksperymentalne"; +App::$strings["unsupported"] = "nieobsługiwane"; +App::$strings["Yes - with approval"] = "Tak - za zgodą"; +App::$strings["My site is not a public server"] = "Mój serwis nie jest serwerem publicznym"; +App::$strings["My site has paid access only"] = "Mój serwis ma tylko płatny dostęp"; +App::$strings["My site has free access only"] = "Mój serwis ma tylko bezpłatny dostęp"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mój serwis oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami"; +App::$strings["Default permission role for new accounts"] = "Domyślna rola uprawnień dla nowych kont"; +App::$strings["This role will be used for the first channel created after registration."] = "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji."; +App::$strings["Minute(s)"] = "Minuta/Minuty"; +App::$strings["Hour(s)"] = "Godzin/Godziny"; +App::$strings["Day(s)"] = "Dzień.Dni"; +App::$strings["Week(s)"] = "Tydzień/Tygodnie"; +App::$strings["Month(s)"] = "Miesiąc/Miesiące"; +App::$strings["Year(s)"] = "Rok/Lata"; +App::$strings["Register verification delay"] = "Zarejestruj opóźnioną weryfikację"; +App::$strings["Time to wait before a registration can be verified"] = "Czas oczekiwania na weryfikację rejestracji"; +App::$strings["duration up from now"] = "czas oczekiwania od teraz"; +App::$strings["Register verification expiration time"] = "Zarejestruj wygasłą weryfikację"; +App::$strings["Time before an unverified registration will expire"] = "Czas do wygaśnięcia niezweryfikowanej rejestracji"; +App::$strings["Site"] = "Witryna"; +App::$strings["Registration"] = "Rejestracja"; +App::$strings["File upload"] = "Udostępnianie pliku"; +App::$strings["Policies"] = "Zasady"; +App::$strings["Advanced"] = "Zaawansowane"; +App::$strings["Site name"] = "Nazwa witryny internetowej"; +App::$strings["Banner/Logo"] = "Baner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Dozwolony jest niefiltrowany kod HTML/CSS /JS"; +App::$strings["Administrator Information"] = "Informacje o administratorze"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informacje kontaktowe dla administratorów serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; +App::$strings["Site Information"] = "Informacje o serwisie"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Publicznie widoczny opis tego serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; +App::$strings["System language"] = "Język systemu"; +App::$strings["System theme"] = "Motyw systemu"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - zmień ustawienia motywu"; +App::$strings["Allow Feeds as Connections"] = "Zezwalaj na kanały jako połączenia"; +App::$strings["(Heavy system resource usage)"] = "(Duże zużycie zasobów systemowych)"; +App::$strings["Maximum image size"] = "Maksymalny rozmiar obrazu"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza brak ograniczeń."; +App::$strings["Minimum age"] = "Minimalny wiek"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten serwis?"; +App::$strings["This is displayed on the public server site list."] = "Jest to wyświetlane na liście witryn publicznych serwerów."; +App::$strings["Register text"] = "Tekst rejestracyjny"; +App::$strings["This text will be displayed prominently at the registration page"] = "Ten tekst będzie widoczny w widocznym miejscu na stronie rejestracji"; +App::$strings["Does this site allow new member registration?"] = "Czy ta witryna umożliwia rejestrację nowych członków?"; +App::$strings["Configure the registration open days/hours"] = "Skonfiguruj dni i godziny otwarte rejestracji"; +App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na dobę i 7 dni w tygodniu (domyślne ustawienie)"; +App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do myślnikiem '-'. Przykład: 1:800-1200"; +App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: 1:900-1700 2:900-1700"; +App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: 1:800-1200,1300-1700 lub 1-2,4-5:900-1700"; +App::$strings["Advanced examples:"] = "Zaawansowane przykłady:"; +App::$strings["or"] = "lub"; +App::$strings["Check your configuration"] = "Sprawdź swoją konfigurację"; +App::$strings["Max account registrations per day"] = "Maksymalna liczba rejestracji kont dziennie"; +App::$strings["Unlimited if zero or no value - default 50"] = "Nieograniczony, jeśli zero lub brak wartości - domyślnie 50"; +App::$strings["Max account registrations from same IP"] = "Maksymalna liczba rejestracji kont z tego samego adresu IP"; +App::$strings["Unlimited if zero or no value - default 3"] = "Nieograniczona, jeśli zero lub brak wartości - domyślnie 3"; +App::$strings["Auto channel create"] = "Automatyczne tworzenie kanałów"; +App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas procesu rejestracji"; +App::$strings["Require invite code"] = "Wymagany jest kodu zaproszenia"; +App::$strings["Allow invite code"] = "Zezwól na kod zaproszenia"; +App::$strings["Require email address"] = "Wymagany jest adres e-mail"; +App::$strings["The provided email address will be verified (recommended)"] = "Podany adres e-mail zostanie zweryfikowany (zalecane)"; +App::$strings["Abandon account after x days"] = "Konto porzucone po x dniach"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz logowania)"; +App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home.html', aby dołączyć plik."; +App::$strings["Preserve site homepage URL"] = "Zachowaj adres URL strony głównej serwisu"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Przedstaw stronę główną serwisu w ramce w oryginalnej lokalizacji zamiast przekierowywania"; +App::$strings["Allowed friend domains"] = "Dozwolone domeny znajomych"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny"; +App::$strings["Force publish"] = "Wymuś publikację"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili założonych w tym serwisie."; +App::$strings["Import Public Streams"] = "Importuj strumienie publiczne"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych serwisów. Ostrzeżenie: ta zawartość jest niemoderowana."; +App::$strings["Site only Public Streams"] = "Strumienie publiczne tylko z tego portalu"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, jeśli importowane strumienie publiczne są wyłączone."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Zezwól każdemu w internecie na dostęp do strumieni publicznych"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość jest niemoderowana."; +App::$strings["Only import Public stream posts with this text"] = "Importuj tylko wpisy ze strumienia publicznego z tym tekstem"; +App::$strings["Do not import Public stream posts with this text"] = "Nie importuj wpisów ze strumienia publicznego z tym tekstem"; +App::$strings["Login on Homepage"] = "Zaloguj się na stronie głównej"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Przedstaw formularz logowania odwiedzającym na stronie głównej, jeśli nie skonfigurowano żadnych innych treści."; +App::$strings["Enable context help"] = "Włącz pomoc kontekstową"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku pomocy."; +App::$strings["Reply-to email address for system generated email."] = "Zwrotny adres e-mail dla wiadomości wygenerowanych przez system."; +App::$strings["Sender (From) email address for system generated email."] = "Adres e-mail nadawcy (Od) wiadomości e-mail wygenerowanej przez system."; +App::$strings["Name of email sender for system generated email."] = "Nazwa nadawcy wiadomości e-mail wygenerowanej przez system."; +App::$strings["Directory Server URL"] = "Adres URL serwera katalogowego"; +App::$strings["Default directory server"] = "Domyślny serwer katalogowy"; +App::$strings["Enable SSE Notifications"] = "Włącz powiadomienia SSE"; +App::$strings["If disabled, traditional polling will be used. Warning: this setting might not be suited for shared hosting"] = "Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to ustawienie może nie być odpowiednie dla hostingu współdzielonego"; +App::$strings["Proxy user"] = "Użytkownik proxy"; +App::$strings["Proxy URL"] = "URL proxy"; +App::$strings["Network timeout"] = "Limit czasu sieci"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)."; +App::$strings["Delivery interval"] = "Interwał dostaw"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów prywatnych. 0-1 dla dużych serwerów dedykowanych."; +App::$strings["Deliveries per process"] = "Liczba dostaw na proces"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5."; +App::$strings["Queue Threshold"] = "Próg kolejki"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej pozycji niż ta liczba."; +App::$strings["Poll interval"] = "Okres odpytywania"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. Jeśli 0, użyty będzie interwał dostawy."; +App::$strings["Path to ImageMagick convert program"] = "Ścieżka do programu konwertującego ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może wystąpić wyczerpanie pamięci. Przykład: /usr/bin/convert"; +App::$strings["Maximum Load Average"] = "Maksymalne średnie obciążenie"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i odpytywania - domyślnie 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Okres ważności w dniach dla zaimportowanej treści (sieci)"; +App::$strings["0 for no expiration of imported content"] = "0 dla braku wygaśnięcia zaimportowanej treści"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta wartość dni od teraz"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych rejestrujących"; +App::$strings["Create this page first. Default is %s/register"] = "Utwórz najpierw tą stronę. Domyślnie %s/ register"; +App::$strings["Page to display after creating a new channel"] = "Strona do wyświetlenia po utworzeniu nowego kanału"; +App::$strings["Default: profiles"] = "Domyślnie: profile"; +App::$strings["Optional: site location"] = "Opcjonalnie: lokalizacja serwisu"; +App::$strings["Region or country"] = "Region lub kraj"; +App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)"; +App::$strings["New Profile Field"] = "Nowe pole profilu"; +App::$strings["Field nickname"] = "Krótka nazwa pola"; +App::$strings["System name of field"] = "Systemowa nazwa pola"; +App::$strings["Input type"] = "Typ wejścia"; +App::$strings["Field Name"] = "Nazwa Pola"; +App::$strings["Label on profile pages"] = "Etykieta na stronach profilu"; +App::$strings["Help text"] = "Tekst pomocy"; +App::$strings["Additional info (optional)"] = "Dodatkowe informacje (opcjonalnie)"; +App::$strings["Field definition not found"] = "Nie znaleziono definicji pola"; +App::$strings["Edit Profile Field"] = "Edytuj pole profilu"; +App::$strings["Profile Fields"] = "Pola profilu"; +App::$strings["Basic Profile Fields"] = "Podstawowe pola profilu"; +App::$strings["Advanced Profile Fields"] = "Zaawansowane pola profilu"; +App::$strings["(In addition to basic fields)"] = "(Oprócz podstawowych pól)"; +App::$strings["All available fields"] = "Wszystkie dostępne pola"; +App::$strings["Custom Fields"] = "Pola niestandardowe"; +App::$strings["Create Custom Field"] = "Utwórz własne pole"; +App::$strings["No more system notifications."] = "Nigdy więcej powiadomień systemowych."; +App::$strings["System Notifications"] = "Powiadomienia systemowe"; +App::$strings["Permissions denied."] = "Odmowa dostępu."; +App::$strings["Thing updated"] = "Rzecz zaktualizowana"; +App::$strings["Object store: failed"] = "Magazyn obiektów: błąd"; +App::$strings["Thing added"] = "Rzecz dodana"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Wyświetl rzecz"; +App::$strings["item not found."] = "pozycja nie została znaleziona."; +App::$strings["Edit Thing"] = "Edytuj rzecz"; +App::$strings["Select a profile"] = "Wybierz profile"; +App::$strings["Post an activity"] = "Opublikuj aktywność"; +App::$strings["Only sends to viewers of the applicable profile"] = "Wysyłane tylko do osób przeglądających odpowiedni profil"; +App::$strings["Name of thing e.g. something"] = "Nazwa rzeczy, np. coś"; +App::$strings["URL of thing (optional)"] = "URL rzeczy (opcjonalnie)"; +App::$strings["URL for photo of thing (optional)"] = "URL do zdjęcia rzeczy (opcjonalnie)"; +App::$strings["Add Thing to your Profile"] = "Dodaj rzecz do swojego profilu"; +App::$strings["Suggest Channels App"] = "Aplikacja Sugerowane Kanały"; +App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "Propozycje dotyczące kanałów w sieci \$Projectname, które mogą Cię zainteresować"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych propozycji. Jeśli to jest nowy serwis, spróbuj ponownie za 24 godziny."; +App::$strings["Ignore/Hide"] = "Ignoruj/Ukryj"; +App::$strings["Channel Suggestions"] = "Sugerowane Kanały"; +App::$strings["Email Verification Required"] = "Wymagana jest weryfikacja adresu e-mail"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na dostarczenie i jeśli nie widzisz wiadomości, sprawdź folder ze spamem."; +App::$strings["Resend Email"] = "Wyślij ponownie wiadomość e-mail"; +App::$strings["Validation token"] = "Token walidacyjny"; +App::$strings["Notes App"] = "Aplikacja Notatki"; +App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)"; +App::$strings["This channel is limited to %d tokens"] = "Ten kanał jest ograniczony do %d tokenów"; +App::$strings["Name and Password are required."] = "Wymagane są Imię i hasło."; +App::$strings["Token saved."] = "Token został zapisany."; +App::$strings["Guest Access App"] = "Aplikacja Dostęp Gościnny"; +App::$strings["Create access tokens so that non-members can access private content"] = "Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do Twoich treści prywatnych"; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane na listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych poświadczeń, aby uzyskać dostęp do treści prywatnych."; +App::$strings["You may also provide dropbox style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak pokazano na ilustracji. Przykłady:"; +App::$strings["Guest Access Tokens"] = "Token dostępu gościa"; +App::$strings["Login Name"] = "Nazwa logowania"; +App::$strings["Login Password"] = "Hasło logowania"; +App::$strings["Expires (yyyy-mm-dd)"] = "Wygasa (rrrr-mm-dd)"; +App::$strings["Change Order of Pinned Navbar Apps"] = "Zmień kolejność aplikacji przypiętych do paska nawigacyjnego"; +App::$strings["Change Order of App Tray Apps"] = "Zmień kolejność aplikacji na pasku aplikacji"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo (u dołu) na pasku nawigacyjnym"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w zasobniku aplikacji"; +App::$strings["Mark all seen"] = "Oznacz wszystko jako oglądnięte"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Witamy w %s"; +App::$strings["Articles App"] = "Aplikacja Artykuły"; +App::$strings["Create interactive articles"] = "Twórz interaktywne artykuły"; +App::$strings["Add Article"] = "Dodaj artykuł"; +App::$strings["Articles"] = "Artykuły"; +App::$strings["\$Projectname Server - Setup"] = "Serwer \$Projectname - Konfiguracja"; +App::$strings["Could not connect to database."] = "Nie można połączyć się z bazą danych."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Nie można połączyć się z określonym adresem URL serwisu. Możliwy problem z certyfikatem SSL lub DNS."; +App::$strings["Could not create table."] = "Nie udało się utworzyć tabeli."; +App::$strings["Your site database has been installed."] = "Baza danych serwisu została zainstalowana."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą klienta bazy danych."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Zobacz plik \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Sprawdzanie systemu"; +App::$strings["Check again"] = "Sprawdź ponownie"; +App::$strings["Database connection"] = "Połączenie z bazą danych"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Aby zainstalować \$Projectname, musimy wiedzieć, jak połączyć się z twoją bazą danych."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług hostingowych lub administratorem serwisu."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, utwórz ją przed kontynuowaniem."; +App::$strings["Database Server Name"] = "Nazwa serwera bazy danych"; +App::$strings["Default is 127.0.0.1"] = "Domyślnie, 127.0.0.1"; +App::$strings["Database Port"] = "Port bazy danych"; +App::$strings["Communication port number - use 0 for default"] = "Numer portu komunikacyjnego - dla wartości domyślnej użyj 0"; +App::$strings["Database Login Name"] = "Nazwa logowania do bazy danych"; +App::$strings["Database Login Password"] = "Hasło logowania do bazy danych"; +App::$strings["Database Name"] = "Nazwa bazy danych"; +App::$strings["Database Type"] = "Typ bazy danych"; +App::$strings["Site administrator email address"] = "Adres e-mail administratora serwisu"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać z panelu administratora sieci."; +App::$strings["Website URL"] = "Adres URL serwisu"; +App::$strings["Please use SSL (https) URL if available."] = "Użyj adresu URL z SSL (https), jeśli jest dostępny."; +App::$strings["Please select a default timezone for your website"] = "Wybierz domyślną strefę czasową dla swojego serwisu"; +App::$strings["Site settings"] = "Ustawienia serwisu"; +App::$strings["PHP version 7.1 or greater is required."] = "Wymagany jest PHP w wersji 7.1 lub wyższej."; +App::$strings["PHP version"] = "Wersja PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW."; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można uruchomić odpytywania w tle przez cron."; +App::$strings["PHP executable path"] = "Ścieżka do pliku wykonywalnego PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację."; +App::$strings["Command line PHP"] = "PHP CLI"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To jest wymagane."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "PHP CLI w Twoim systemie nie ma włączonego \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Jest to konieczne,, aby dostarczanie wiadomości działało."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc przesłać co najmniej 4 MB na raz."; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. Maksymalny rozmiar jednego pliku do przesłania to %s. Możesz przesłać jednocześnie do %d plików."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Możesz dostosować te ustawienia w pliku php.ini na serwerze."; +App::$strings["PHP upload limits"] = "Limity wysyłania PHP"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Wygeneruj klucze szyfrowania"; +App::$strings["libCurl PHP module"] = "moduł PHP libCurl"; +App::$strings["GD graphics PHP module"] = "Moduł PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL"; +App::$strings["PDO database PHP module"] = "Moduł PHP PDO"; +App::$strings["mb_string PHP module"] = "moduł PHP mb_string PHP"; +App::$strings["xml PHP module"] = "moduł PHP xml"; +App::$strings["zip PHP module"] = "moduł PHP zip"; +App::$strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest zainstalowany."; +App::$strings["exec"] = "exec"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został wyłączony w php.ini"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony w php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany."; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką graficzną ImageMagick, ale nie jest on zainstalowany."; +App::$strings["Error: openssl PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP openssl, ale niezainstalowany."; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "Błąd: w module PHP PDO brakuje sterownika dla mysql lub pgsql."; +App::$strings["Error: PDO database PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP PDO, ale nie jest zainstalowany."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Błąd: wymagany, ale niezainstalowany moduł mb_string PHP."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Błąd: moduł XML PHP wymagany dla DAV, ale nie jest zainstalowany."; +App::$strings["Error: zip PHP module required but not installed."] = "Błąd: wymagany jest moduł PHP zip, ale nie jest on zainstalowany."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php jest możliwy do zapisu"; +App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \".htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić."; +App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w stanie zapisywać plików w Twoim folderze - nawet jeśli możesz."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Dodatkowe informacje można znaleźć w pliku install/INSTALL.txt."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania widoków internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie."; +App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do zapisu w tym folderze."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu tylko do %s - nie do plików szablonów (.tpl), które on zawiera."; +App::$strings["%s is writable"] = "%s jest możliwy do zapisu"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w folderze serwera WWW najwyższego poziomu"; +App::$strings["store is writable"] = "katalog store jest możliwy do zapisu"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https do tej witryny."; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Jeśli masz dostęp https do swojego serwisu internetowego lub zezwalasz na połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na przykład zawierać odniesienia do obrazów na Twoim portalu."; +App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej witrynie, ostrzegający o problemie z bezpieczeństwem."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Może to powodować problemy z użytecznością w innym serwisie (nie tylko na Twoim), więc musimy nalegać na to wymaganie."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez przeglądarki."; +App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one wymagane przez przeglądarki, ale są wymagane do komunikacji między serwerami."; +App::$strings["SSL certificate validation"] = "Walidacja certyfikatu SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. Test: "; +App::$strings["Url rewrite is working"] = "Przepisywanie adresu URL działa"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera WWW."; +App::$strings["Errors encountered creating database tables."] = "Napotkano błędy podczas tworzenia tabel bazy danych."; +App::$strings["

What next?

"] = "

Co następnie?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowanie zadania Cron."; +App::$strings["No default suggestions were found."] = "Nie znaleziono domyślnych propozycji."; +App::$strings["%d rating"] = array( + 0 => "%d ocen", + 1 => "%d oceny", + 2 => "%d ocen", +); +App::$strings["Gender: "] = "Płeć: "; +App::$strings["Status: "] = "Status: "; +App::$strings["Homepage: "] = "Strona główna: "; +App::$strings["Age:"] = "Wiek:"; +App::$strings["Location:"] = "Lokalizacja:"; +App::$strings["Description:"] = "Opis:"; +App::$strings["Hometown:"] = "Miasto pobytu:"; +App::$strings["About:"] = "O mnie:"; +App::$strings["Public Forum:"] = "Forum publiczne:"; +App::$strings["Keywords: "] = "Słowa kluczowe: "; +App::$strings["Don't suggest"] = "Nie sugeruj"; +App::$strings["Common connections (estimated):"] = "Popularne połączenia (oszacowanie):"; +App::$strings["Global Directory"] = "Katalog globalny"; +App::$strings["Local Directory"] = "Katalog lokalny"; +App::$strings["Finding:"] = "Odnaleziono:"; +App::$strings["next page"] = "następna strona"; +App::$strings["previous page"] = "poprzednia strona"; +App::$strings["Sort options"] = "Opcje sortowania"; +App::$strings["Alphabetic"] = "Alfabetycznie"; +App::$strings["Reverse Alphabetic"] = "Odwróć alfabetycznie"; +App::$strings["Newest to Oldest"] = "Od najnowszych do najstarszych"; +App::$strings["Oldest to Newest"] = "Od najstarszych do najnowszych"; +App::$strings["No entries (some entries may be hidden)."] = "Brak wpisów (niektóre wpisy mogą być ukryte)."; +App::$strings["Menu not found."] = "Nie znaleziono menu."; +App::$strings["Unable to create element."] = "Nie można utworzyć elementu."; +App::$strings["Unable to update menu element."] = "Nie można zaktualizować elementu menu."; +App::$strings["Unable to add menu element."] = "Nie można dodać elementu menu."; +App::$strings["Menu Item Permissions"] = "Uprawnienia do pozycji menu"; +App::$strings["(click to open/close)"] = "(kliknij, aby otworzyć/zamknąć)"; +App::$strings["Link Name"] = "Nazwa linku"; +App::$strings["Link or Submenu Target"] = "Link lub element docelowy podmenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Wprowadź adres URL linku lub wybierz nazwę menu, aby utworzyć podmenu"; +App::$strings["Use magic-auth if available"] = "Użyj magicznego uwierzytelniania, jeśli jest dostępne"; +App::$strings["Open link in new window"] = "Otwórz link w nowym oknie"; +App::$strings["Order in list"] = "Porządek listy"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Wyższe liczby spadną na koniec listy"; +App::$strings["Submit and finish"] = "Prześlij i zakończ"; +App::$strings["Submit and continue"] = "Prześlij i kontynuuj"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Cel linku"; +App::$strings["Edit menu"] = "Edytuj menu"; +App::$strings["Edit element"] = "Edytuj element"; +App::$strings["Drop element"] = "Upuść element"; +App::$strings["New element"] = "Nowy element"; +App::$strings["Edit this menu container"] = "Edytuj ten kontener menu"; +App::$strings["Add menu element"] = "Dodaj element menu"; +App::$strings["Delete this menu item"] = "Usuń tę pozycję menu"; +App::$strings["Edit this menu item"] = "Edytuj tę pozycję menu"; +App::$strings["Menu item not found."] = "Nie znaleziono elementu menu."; +App::$strings["Menu item deleted."] = "Usunięto element menu."; +App::$strings["Menu item could not be deleted."] = "Nie można usunąć elementu menu."; +App::$strings["Edit Menu Element"] = "Edytuj element menu"; +App::$strings["Link text"] = "Tekst linku"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s jest %2\$s"; +App::$strings["Mood App"] = "Aplikacja Nastrój"; +App::$strings["Set your current mood and tell your friends"] = "Ustaw swój aktualny nastrój i podziel się tym ze znajomymi"; +App::$strings["Mood"] = "Nastrój"; +App::$strings["Permission category name is required."] = "Wymaga się podania nazwy kategorii uprawnień."; +App::$strings["Permission category saved."] = "Kategoria uprawnień została zapisana."; +App::$strings["Permission Categories App"] = "Aplikacja Kategorie dostępu"; +App::$strings["Create custom connection permission limits"] = "Utwórz własne limity uprawnień do połączeń"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub połączeń."; +App::$strings["Permission Categories"] = "Kategorie uprawnień"; +App::$strings["Permission category name"] = "Nazwa kategorii uprawnień"; +App::$strings["No ratings"] = "Brak ocen"; +App::$strings["Rating: "] = "Ocena: "; +App::$strings["Website: "] = "Serwis: "; +App::$strings["Description: "] = "Opis: "; +App::$strings["Nickname is required."] = "Pseudonim jest wymagany."; +App::$strings["Email address required"] = "Wymagany jest adres e-mail"; +App::$strings["No password provided"] = "Nie podano hasła"; +App::$strings["Passwords do not match"] = "Hasła nie pasują do siebie"; +App::$strings["Terms of Service not accepted"] = "Regulamin serwisu nie został zaakceptowany"; +App::$strings["Invitation code succesfully applied"] = "Kod zaproszenia został pomyślnie zastosowany"; +App::$strings["Invitation not in time or too late"] = "Zaproszenie nie na czas lub za późno"; +App::$strings["Invitation email failed"] = "Wygenerowanie wiadomość e-mail z zaproszeniem nie powiodło się"; +App::$strings["Invitation code failed"] = "Kod zaproszenia nie został wygenerowany"; +App::$strings["Invitations are not available"] = "Zaproszenia nie są dostępne"; +App::$strings["Registration on this hub is by invitation only"] = "Rejestracja w tym serwisie odbywa się wyłącznie za zaproszeniem"; +App::$strings["Registration confirmation for %s"] = "Potwierdzenie rejestracji dla %s"; +App::$strings["New register request"] = "Nowa prośba o rejestrację"; +App::$strings["Error creating dId A"] = "Błąd podczas tworzenia dId A"; +App::$strings["Registration on this hub is disabled."] = "Rejestracja na tym portalu jest wyłączona."; +App::$strings["Registration on this hub is by approval only."] = "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora."; +App::$strings["Register at another affiliated hub in case when prefered"] = "Zarejestruj się w innym stowarzyszonym serwisie w przypadku, gdy potrzebujesz takiego rozwiązania"; +App::$strings["Registration on this hub is by invitation only."] = "Rejestracja na tym portalu wymaga uprzedniego zaproszenia."; +App::$strings["Register at another affiliated hub"] = "Zarejestruj się w innym stowarzyszonym serwisie"; +App::$strings["Terms of Service"] = "Regulamin"; +App::$strings["I accept the %s for this website"] = "Akceptuję % s dla tego serwisu"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Mam ponad % s lat i akceptuję % s dla tego serwisu"; +App::$strings["Your email address"] = "Twój adres e-mail"; +App::$strings["Choose a password"] = "Wybierz hasło"; +App::$strings["Please re-enter your password"] = "Wprowadź ponownie swoje hasło"; +App::$strings["Please enter your invitation code"] = "Wprowadź kod zaproszenia"; +App::$strings["Your name"] = "Twoja nazwa"; +App::$strings["Real name is preferred"] = "Preferowane jest prawdziwe imię i nazwisko"; +App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału"; +App::$strings["Why do you want to join this hub?"] = "Dlaczego chcesz dołączyć do tego serwisu?"; +App::$strings["This will help to review your registration"] = "Pomoże to przejrzeć Twoją rejestrację"; +App::$strings["I have an invite code"] = "Mam kod zaproszenia"; +App::$strings["Register"] = "Zarejestruj się"; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont."; +App::$strings["__ctx:acl__ Profile"] = "Profil"; +App::$strings["network"] = "sieć"; +App::$strings["No feature settings configured"] = "Brak skonfigurowanych ustawień funkcji"; +App::$strings["Addon Settings"] = "Ustawienia dodatków"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Zapisz/prześlij zmiany do dowolnego panelu przed otwarciem kolejnego."; +App::$strings["Not valid email."] = "Nieprawidłowy adres e-mail."; +App::$strings["Protected email address. Cannot change to that email."] = "Chroniony adres e-mail. Nie można zmienić tego adresu e-mail."; +App::$strings["System failure storing new email. Please try again."] = "Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj ponownie."; +App::$strings["Password verification failed."] = "Weryfikacja hasła nie powiodła się."; +App::$strings["Passwords do not match. Password unchanged."] = "Hasła nie pasują do siebie. Nie zmieniono hasła."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Puste hasła są niedozwolone. Nie zmieniono hasła."; +App::$strings["Password changed."] = "Hasło zostało zmienione."; +App::$strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbuj ponownie."; +App::$strings["Account Settings"] = "Ustawienia konta"; +App::$strings["Current Password"] = "Bieżące hasło"; +App::$strings["Enter New Password"] = "Wprowadź nowe hasło"; +App::$strings["Confirm New Password"] = "Potwierdź nowe hasło"; +App::$strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że je zmieniasz"; +App::$strings["DId2 or Email Address:"] = "DId2 lub adres e-mail:"; +App::$strings["Remove this account including all its channels"] = "Usuń to konto wraz ze wszystkimi jego kanałami"; +App::$strings["Events Settings"] = "Ustawienia wydarzeń"; +App::$strings["Profiles Settings"] = "Ustawienia profili"; +App::$strings["Editor Settings"] = "Edytor ustawień"; +App::$strings["Additional Features"] = "Dodatkowe funkcjonalności"; +App::$strings["Channel Manager Settings"] = "Ustawienia menadżera kanałów"; +App::$strings["%s - (Experimental)"] = "%s - (eksperymentalne)"; +App::$strings["Display Settings"] = "Ustawienia wyświetlania"; +App::$strings["Theme Settings"] = "Ustawienia motywu"; +App::$strings["Custom Theme Settings"] = "Ustawienia własnego motywu"; +App::$strings["Content Settings"] = "Ustawienia treści"; +App::$strings["Display Theme:"] = "Wyświetl motyw:"; +App::$strings["Select scheme"] = "Wybierz schemat"; +App::$strings["Preload images before rendering the page"] = "Przeładuj obrazy przed renderowaniem strony"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Subiektywny czas ładowania strony będzie dłuższy, ale strona będzie gotowa po wyświetleniu"; +App::$strings["Enable user zoom on mobile devices"] = "Włącz zoom użytkownika na urządzeniach mobilnych"; +App::$strings["Update browser every xx seconds"] = "Aktualizuj przeglądarkę co xx sekund"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Co najmniej 10 sekund, nie maksimum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maksymalna liczba rozmów do załadowania w dowolnym momencie:"; +App::$strings["Maximum of 30 items"] = "Maksymalnie 30 pozycji"; +App::$strings["Show emoticons (smilies) as images"] = "Pokaż emotikony (uśmieszki) jako obrazy"; +App::$strings["Provide channel menu in navigation bar"] = "Podaj menu kanału na pasku nawigacji"; +App::$strings["Default: channel menu located in app menu"] = "Domyślnie: menu kanału znajduje się w menu aplikacji"; +App::$strings["Link post titles to source"] = "Połącz tytuły wpisów ze źródłem"; +App::$strings["New Member Links"] = "Linki dla nowych członków"; +App::$strings["Display new member quick links menu"] = "Wyświetl menu szybkich łączy dla nowych członków"; +App::$strings["Photos Settings"] = "Ustawienia zdjęć"; +App::$strings["Nobody except yourself"] = "Nikt oprócz ciebie"; +App::$strings["Only those you specifically allow"] = "Tylko te, na które jawnie zezwalasz"; +App::$strings["Approved connections"] = "Zatwierdzone połączenia"; +App::$strings["Any connections"] = "Wszelkie połączenia"; +App::$strings["Anybody on this website"] = "Każdy w tym serwisie"; +App::$strings["Anybody in this network"] = "Każdy w tej sieci"; +App::$strings["Anybody authenticated"] = "Każda uwierzytelniona osoba"; +App::$strings["Anybody on the internet"] = "Każdy w internecie"; +App::$strings["Publish your default profile in the network directory"] = "Opublikuj swój domyślny profil w katalogu sieciowym"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego przyjaciela?"; +App::$strings["Your channel address is"] = "Twój adres kanału to"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Twoje pliki/zdjęcia są dostępne przez WebDAV pod adresem"; +App::$strings["Automatic membership approval"] = "Automatyczne zatwierdzanie członkostwa"; +App::$strings["Channel Settings"] = "Ustawienia kanału"; +App::$strings["Basic Settings"] = "Podstawowe ustawienia"; +App::$strings["Full Name:"] = "Pełna nazwa:"; +App::$strings["Email Address:"] = "Adres e-mail:"; +App::$strings["Your Timezone:"] = "Twoja strefa czasowa:"; +App::$strings["Default Post Location:"] = "Domyślna lokalizacja wpisu:"; +App::$strings["Geographical location to display on your posts"] = "Lokalizacja geograficzna do wyświetlania w Twoich wpisach"; +App::$strings["Use Browser Location:"] = "Użyj lokalizacji przeglądarki:"; +App::$strings["Adult Content"] = "Treść dla dorosłych"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz wszelkie materiały dla dorosłych albo nagość tagiem #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować"; +App::$strings["Hide my online presence"] = "Ukryj moją obecność w Internecie"; +App::$strings["Prevents displaying in your profile that you are online"] = "Zapobiega wyświetlaniu w Twoim profilu, że jesteś online"; +App::$strings["Simple Privacy Settings:"] = "Proste ustawienia prywatności:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do uprawnień w popularnych sieciach społecznościowych, ale z podwyższoną prywatnością)"; +App::$strings["Private - default private, never open or public"] = "Prywatne - domyślnie prywatne, nigdy otwarte ani publiczne"; +App::$strings["Blocked - default blocked to/from everybody"] = "Zablokowane - domyślnie zablokowane dla/od wszystkich"; +App::$strings["Allow others to tag your posts"] = "Pozwól innym oznaczać Twoje wpisy"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą wsteczną"; +App::$strings["Channel Permission Limits"] = "Limity uprawnień kanału"; +App::$strings["Expire other channel content after this many days"] = "Po tej ilości dni wygasają inne treści w kanale"; +App::$strings["0 or blank to use the website limit."] = "0 lub puste, aby użyć limitu serwisu."; +App::$strings["This website expires after %d days."] = "Ta strona wygasa po %d dniach."; +App::$strings["This website does not expire imported content."] = "Na tym serwis internetowym importowanej zawartości nie jest wygaszana."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Limit serwisu ma pierwszeństwo, jeśli jest niższy niż Twój limit."; +App::$strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do znajomych, dziennie:"; +App::$strings["May reduce spam activity"] = "Może zmniejszyć aktywność spamu"; +App::$strings["Default Privacy Group"] = "Domyślna grupa prywatności"; +App::$strings["Use my default audience setting for the type of object published"] = "Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu"; +App::$strings["Default permissions category"] = "Domyślna kategoria uprawnień"; +App::$strings["Maximum private messages per day from unknown people:"] = "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:"; +App::$strings["Useful to reduce spamming"] = "Przydatne do ograniczenia spamowania"; +App::$strings["Notification Settings"] = "Ustawienia powiadomień"; +App::$strings["By default post a status message when:"] = "Domyślnie publikuj komunikat o stanie, gdy:"; +App::$strings["accepting a friend request"] = "zaakceptowano zaproszenia do znajomych"; +App::$strings["joining a forum/community"] = "dołączono do forum/społeczności"; +App::$strings["making an interesting profile change"] = "dokonano interesującej zmiany profilu"; +App::$strings["Send a notification email when:"] = "Wyślij e-mail z powiadomieniem, gdy:"; +App::$strings["You receive a connection request"] = "Otrzymujesz żądanie połączenia"; +App::$strings["Your connections are confirmed"] = "Twoje połączenia są potwierdzone"; +App::$strings["Someone writes on your profile wall"] = "Ktoś pisze na Twojej ścianie profilu"; +App::$strings["Someone writes a followup comment"] = "Ktoś pisze komentarz uzupełniający"; +App::$strings["You receive a private message"] = "Otrzymujesz prywatną wiadomość"; +App::$strings["You receive a friend suggestion"] = "Otrzymasz propozycję znajomości"; +App::$strings["You are tagged in a post"] = "Oznaczono Ciebie tagiem w poście"; +App::$strings["You are poked/prodded/etc. in a post"] = "Zaczepiono Ciebie we wpisie"; +App::$strings["Someone likes your post/comment"] = "Ktoś polubił Twój wpis/komentarz"; +App::$strings["Show visual notifications including:"] = "Pokaż powiadomienia wizualne, w tym:"; +App::$strings["Unseen stream activity"] = "Niewidoczną aktywność na strumieniu"; +App::$strings["Unseen channel activity"] = "Niewidoczną aktywność w kanale"; +App::$strings["Unseen private messages"] = "Niewidoczną wiadomości prywatne"; +App::$strings["Recommended"] = "Zalecane"; +App::$strings["Upcoming events"] = "Nadchodzące wydarzenia"; +App::$strings["Events today"] = "Wydarzenia dzisiejsze"; +App::$strings["Upcoming birthdays"] = "Nadchodzące urodziny"; +App::$strings["Not available in all themes"] = "Niedostępne we wszystkich motywach"; +App::$strings["System (personal) notifications"] = "Powiadomienia systemowe (osobiste)"; +App::$strings["System info messages"] = "Systemowe komunikaty informacyjne"; +App::$strings["System critical alerts"] = "Systemowe alerty krytyczne"; +App::$strings["New connections"] = "Nowe połączenia"; +App::$strings["System Registrations"] = "Rejestracje systemowe"; +App::$strings["Unseen shared files"] = "Niewidoczne udostępnione pliki"; +App::$strings["Unseen public stream activity"] = "Niewidoczna aktywność na publicznym strumieniu"; +App::$strings["Unseen likes and dislikes"] = "Niewidoczne polubienia i dezaprobaty"; +App::$strings["Unseen forum posts"] = "Niewidoczne wpisy na forum"; +App::$strings["Email notification hub (hostname)"] = "Serwer powiadomień e-mail (nazwa hosta)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Jeśli twój kanał jest powielany na wielu serwisach, ustaw to na preferowaną lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i połączenia"; +App::$strings["Notify me of events this many days in advance"] = "Informuj mnie o wydarzeniach z wyprzedzeniem (w dniach)"; +App::$strings["Must be greater than 0"] = "Musi być większa od 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Zaawansowane ustawienia konta/typu strony"; +App::$strings["Change the behaviour of this account for special situations"] = "Zmień zachowanie tego konta w szczególnych sytuacjach"; +App::$strings["Miscellaneous Settings"] = "Różne ustawienia"; +App::$strings["Default photo upload folder"] = "Domyślny folder na przesyłane zdjęcia"; +App::$strings["%Y - current year, %m - current month"] = "%Y - bieżący rok, %m - bieżący miesiąc"; +App::$strings["Default file upload folder"] = "Domyślny folder przesyłania plików"; +App::$strings["Remove this channel."] = "Usuń ten kanał."; +App::$strings["Connections Settings"] = "Ustawienia połączeń"; +App::$strings["Calendar Settings"] = "Ustawienia kalendarza"; +App::$strings["Directory Settings"] = "Ustawienia katalogu"; +App::$strings["Max height of content (in pixels)"] = "Maksymalna wysokość pola treści (w pikselach)"; +App::$strings["Click to expand content exceeding this height"] = "Kliknij, aby rozwinąć treść przekraczającą tę wysokość"; +App::$strings["Personal menu to display in your channel pages"] = "Menu osobiste do wyświetlania na stronach Twojego kanał"; +App::$strings["Channel Home Settings"] = "Ustawienia strony głównej kanału"; +App::$strings["Stream Settings"] = "Ustawienia strumienia"; +App::$strings["Settings saved."] = "Ustawienia zapisane."; +App::$strings["Settings saved. Reload page please."] = "Ustawienia zapisane. Proszę ponownie załadować stronę."; +App::$strings["Conversation Settings"] = "Ustawienia rozmów"; +App::$strings["Remote Diagnostics App"] = "Aplikacja Zdalna Diagnostyka"; +App::$strings["Perform diagnostics on remote channels"] = "Przeprowadź diagnostykę zdalnych kanałów"; +App::$strings["Invite App"] = "Aplikacja Zaproszenie"; +App::$strings["Register is closed"] = "Rejestracja zamknięta"; +App::$strings["Note, the invitation code is valid up to"] = "Uwaga: kod zaproszenia jest ważny do"; +App::$strings["Too many recipients for one invitation (max %d)"] = "Zbyt wielu adresatów na jedno zaproszenie (maks.%d)"; +App::$strings["No recipients for this invitation"] = "Brak adresatów tego zaproszenia"; +App::$strings["(%s) : Not a valid email address"] = "(% s): Nieprawidłowy adres e-mail"; +App::$strings["(%s) : Not a real email address"] = "(%s) : To nie jest prawdziwy adres e-mail"; +App::$strings["(%s) : Not allowed email address"] = "(%s) : Niedozwolony adres e-mail"; +App::$strings["(%s) : email address already in use"] = "(%s) : Ten adres e-mail jest już używany"; +App::$strings["(%s) : Accepted email address"] = "(%s) : Zaakceptowany adres e-mail"; +App::$strings["%s : Message delivery failed."] = "%s: dostarczenie wiadomości nie powiodło się."; +App::$strings["To %s : Message delivery success."] = "To %s : Dostarczenie wiadomości powiodło się."; +App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "Wysłano %1\$d wiadomości, %2\$d błędy poczty"; +App::$strings["Invites not proposed by configuration"] = "Zaproszenia nie zostały skonfigurowane"; +App::$strings["Contact the site admin"] = "Skontaktuj się z administratorem witryny"; +App::$strings["Invites by users not enabled"] = "Zaproszenia od użytkowników nie są włączone"; +App::$strings["You have no more invitations available"] = "Nie masz więcej dostępnych zaproszeń"; +App::$strings["Not on xchan"] = "Nie na xchan"; +App::$strings["All users invitation limit exceeded."] = "Przekroczono limit zaproszeń wszystkich użytkowników."; +App::$strings["Invitation expires after"] = "Zaproszenie wygasa po"; +App::$strings["Invitation"] = "Zaproszenie"; +App::$strings["Send invitations"] = "Wyślij zaproszenia"; +App::$strings["Invitations I am using"] = "Zaproszenia, których używam"; +App::$strings["Invitations we are using"] = "Zaproszenia, z których korzystamy"; +App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych"; +App::$strings["Enter email addresses, one per line:"] = "Wprowadź adresy e-mail, po jednym w każdym wierszu:"; +App::$strings["Your message:"] = "Twoja wiadomość:"; +App::$strings["Invite template"] = "Szablon zaproszenia"; +App::$strings["Subject:"] = "Temat:"; +App::$strings["Here you may enter personal notes to the recipient(s)"] = "Tutaj możesz wprowadzić osobiste notatki do odbiorcy/odbiorców"; +App::$strings["About this site"] = "O tym serwisie"; +App::$strings["Site Name"] = "Nazwa witryny"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["Software and Project information"] = "Informacje o oprogramowaniu i projekcie"; +App::$strings["This site is powered by \$Projectname"] = "Ta witryna jest oparta na \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące protokół Zot"; +App::$strings["Additional federated transport protocols:"] = "Dodatkowe protokoły transportu federacyjnego:"; +App::$strings["Version %s"] = "Wersja %s"; +App::$strings["Project homepage"] = "Strona główna projektu"; +App::$strings["Developer homepage"] = "Strona główna developerów"; +App::$strings["No service class restrictions found."] = "Nie znaleziono ograniczeń klasy usług."; +App::$strings["Select a bookmark folder"] = "Wybierz folder zakładek"; +App::$strings["Save Bookmark"] = "Zapisz zakładkę"; +App::$strings["URL of bookmark"] = "URL zakładki"; +App::$strings["Or enter new bookmark folder name"] = "Lub wprowadź nową nazwę folderu zakładek"; +App::$strings["Language App"] = "Aplikacja Język"; +App::$strings["Change UI language"] = "Zmień język interfejsu użytkownika"; +App::$strings["Welcome to Hubzilla!"] = "Witamy w Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "Nie masz żadnych nieoglądniętych wpisów..."; +App::$strings["Cover Photos"] = "Zdjęcia na okładkę"; +App::$strings["female"] = "kobieta"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s zaktualizował ją %2\$s"; +App::$strings["male"] = "mężczyzna"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s zaktualizował jego %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s zaktualizował swoje %2\$s"; +App::$strings["cover photo"] = "zdjęcie okładkowe"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "Twoje zdjęcie okładkowe może być widoczne dla każdego w internecie"; +App::$strings["Change Cover Photo"] = "Zmień zdjęcie na okładkę"; +App::$strings["Unable to update menu."] = "Nie można zaktualizować menu."; +App::$strings["Unable to create menu."] = "Nie można utworzyć menu."; +App::$strings["Menu Name"] = "Nazwa menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unikalna nazwa (niewidoczna na stronie) - wymagana"; +App::$strings["Menu Title"] = "Tytuł menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Widoczne na stronie - pozostaw puste bez tytułu"; +App::$strings["Allow Bookmarks"] = "Zezwalaj na zakładki"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu może służyć do przechowywania zapisanych zakładek"; +App::$strings["Submit and proceed"] = "Prześlij i kontynuuj"; +App::$strings["Menus"] = "Menu"; +App::$strings["Bookmarks allowed"] = "Zakładki są dozwolone"; +App::$strings["Delete this menu"] = "Usuń to menu"; +App::$strings["Edit menu contents"] = "Edytuj zawartość menu"; +App::$strings["Edit this menu"] = "Edytuj to menu"; +App::$strings["Menu could not be deleted."] = "Nie udało się usunąć menu."; +App::$strings["Edit Menu"] = "Edytuj menu"; +App::$strings["Add or remove entries to this menu"] = "Dodaj lub usuń wpisy w tym menu"; +App::$strings["Menu name"] = "Nazwa menu"; +App::$strings["Must be unique, only seen by you"] = "Musi być wyjątkowy, widoczny tylko dla Ciebie"; +App::$strings["Menu title"] = "Tytuł menu"; +App::$strings["Menu title as seen by others"] = "Tytuł menu widziany przez innych"; +App::$strings["Allow bookmarks"] = "Zezwalaj na zakładki"; +App::$strings["Failed to create source. No channel selected."] = "Nie udało się utworzyć źródła. Nie wybrano kanału."; +App::$strings["Source created."] = "Utworzono źródło."; +App::$strings["Source updated."] = "Źródło zaktualizowane."; +App::$strings["Sources App"] = "Aplikacja Źródła"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatycznie importuj zawartość kanału z innych kanałów lub źródeł"; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Źródła"; +App::$strings["Manage remote sources of content for your channel."] = "Zarządzaj zdalnymi źródłami treści na swoim kanale."; +App::$strings["New Source"] = "Nowe źródło"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału i rozpowszechniaj je zgodnie z ustawieniami kanału."; +App::$strings["Only import content with these words (one per line)"] = "Importuj tylko zawartość z tymi słowami (po jednym w każdym wierszu)"; +App::$strings["Leave blank to import all public content"] = "Pozostaw puste, aby zaimportować całą zawartość publiczną"; +App::$strings["Channel Name"] = "Nazwa kanału"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone przecinkami)"; +App::$strings["Resend posts with this channel as author"] = "Wyślij ponownie wpisy z tym kanałem jako autorem"; +App::$strings["Copyrights may apply"] = "Mogą obowiązywać prawa autorskie"; +App::$strings["Source not found."] = "Nie znaleziono źródła."; +App::$strings["Edit Source"] = "Edytuj źródło"; +App::$strings["Delete Source"] = "Usuń źródło"; +App::$strings["Source removed"] = "Źródło zostało usunięte"; +App::$strings["Unable to remove source."] = "Nie można usunąć źródła."; +App::$strings["Poke App"] = "Aplikacja kuksaniec"; +App::$strings["Poke somebody in your addressbook"] = "Zaczep kogoś w swojej książce adresowej"; +App::$strings["Poke"] = "Zaczep"; +App::$strings["Poke somebody"] = "Zaczep kogoś"; +App::$strings["Poke/Prod"] = "Zaczepka"; +App::$strings["Poke, prod or do other things to somebody"] = "Zaczepić, sprawdzić lub robić z kimś podobne rzeczy"; +App::$strings["Recipient"] = "Odbiorca"; +App::$strings["Choose what you wish to do to recipient"] = "Wybierz, co chcesz zrobić odbiorcy"; +App::$strings["Make this post private"] = "Ustaw ten wpis jako prywatny"; +App::$strings["No such group"] = "Nie ma takiej grupy"; +App::$strings["No such channel"] = "Nie ma takiego kanału"; +App::$strings["Privacy group is empty"] = "Grupa prywatności jest pusta"; +App::$strings["Privacy group: "] = "Grupa prywatności: "; +App::$strings["Invalid channel."] = "Zły kanał."; +App::$strings["Can not copy folder into itself."] = "Nie można skopiować folderu do siebie."; +App::$strings["Can not move folder \"%s\" into itself."] = "Nie można przenieść folderu \"%s\" do samego siebie."; +App::$strings["item"] = "element"; +App::$strings["Remote privacy information not available."] = "Zdalne informacje o prywatności nie są dostępne."; +App::$strings["Visible to:"] = "Widoczne dla:"; +App::$strings["Change filename to"] = "Zmień nazwę pliku na"; +App::$strings["Select a target location"] = "Wybierz lokalizację docelową"; +App::$strings["Copy to target location"] = "Skopiuj do lokalizacji docelowej"; +App::$strings["Set permissions for all files and sub folders"] = "Ustaw uprawnienia dla wszystkich plików i podfolderów"; +App::$strings["Notify your contacts about this file"] = "Powiadom swoje kontakty o tym pliku"; +App::$strings["File category"] = "Kategoria plików"; +App::$strings["Total"] = "Ogólnie"; +App::$strings["Shared"] = "Udostępnione"; +App::$strings["Add Files"] = "Dodaj pliki"; +App::$strings["Admin Delete"] = "Usunięte przez administratora"; +App::$strings["parent"] = "rodzic"; +App::$strings["Select All"] = "Zaznacz wszystko"; +App::$strings["Bulk Actions"] = "Działania masowe"; +App::$strings["Adjust Permissions"] = "Dostosuj uprawnienia"; +App::$strings["Move or Copy"] = "Przenieś lub skopiuj"; +App::$strings["Info"] = "Informacje"; +App::$strings["Rename"] = "Zień nazwę"; +App::$strings["Post"] = "Wpis"; +App::$strings["Attachment BBcode"] = "Załącz tekst BBcode"; +App::$strings["Embed BBcode"] = "Osadź tekst BBcode"; +App::$strings["Link BBcode"] = "Połącz do tekstu BBcode"; +App::$strings["You are using %1\$s of your available file storage."] = "Używasz %1\$s dostępnego miejsca na pliki."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Używasz %1\$s z %2\$s dostępnego miejsca na pliki. (%3\$s %)"; +App::$strings["WARNING:"] = "OSTRZEŻENIE:"; +App::$strings["Create new folder"] = "Stwórz nowy folder"; +App::$strings["Upload file"] = "Przesyłanie pliku"; +App::$strings["Drop files here to immediately upload"] = "Upuść pliki tutaj, aby natychmiast przesłać"; +App::$strings["You can select files via the upload button or drop them right here or into an existing folder."] = "Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do istniejącego folderu."; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. Wyloguj się i spróbuj ponownie."; +App::$strings["Welcome %s. Remote authentication successful."] = "Witaj %s. Zdalne uwierzytelnianie powiodło się."; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące elementów mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie tego chciałeś, utwórz kolejną grupę o innej nazwie."; +App::$strings["Add new connections to this privacy group"] = "Dodaj nowe połączenia do tej grupy prywatności"; +App::$strings["edit"] = "edutuj"; +App::$strings["Edit group"] = "Edytuj grupę"; +App::$strings["Add privacy group"] = "Dodaj grupę prywatności"; +App::$strings["Channels not in any privacy group"] = "Kanały spoza jakiejkolwiek grupy prywatności"; +App::$strings["add"] = "dodaj"; +App::$strings["Channel is blocked on this site."] = "Kanał jest zablokowany na tej stronie."; +App::$strings["Channel location missing."] = "Brak lokalizacji kanału."; +App::$strings["Remote channel or protocol unavailable."] = "Zdalny kanał lub protokół jest niedostępny."; +App::$strings["Channel discovery failed."] = "Wyszukanie kanału nie powiodło się."; +App::$strings["Protocol disabled."] = "Protokół wyłączony."; +App::$strings["Cannot connect to yourself."] = "Nie można połączyć się ze sobą."; +App::$strings["error saving data"] = "błąd podczas zapisywania danych"; +App::$strings["Apps"] = "Aplikacje"; +App::$strings["Affinity Tool"] = "Narzędzie Zaprzyjaźnienia"; +App::$strings["Site Admin"] = "Administrator serwisu"; +App::$strings["Report Bug"] = "Raport błędów"; +App::$strings["Bookmarks"] = "Zakładki"; +App::$strings["Chatrooms"] = "Czaty"; +App::$strings["Content Filter"] = "Filtr treści"; +App::$strings["Content Import"] = "Import treści"; +App::$strings["Remote Diagnostics"] = "Zdalna diagnostyka"; +App::$strings["Suggest Channels"] = "Zaproponuj kanały"; +App::$strings["Login"] = "Zaloguj się"; +App::$strings["Stream"] = "Strumień"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Channel Home"] = "Strona główna kanału"; +App::$strings["Calendar"] = "Kalendarz"; +App::$strings["Directory"] = "Katalog"; +App::$strings["Mail"] = "Poczta"; +App::$strings["Chat"] = "Czat"; +App::$strings["Probe"] = "Sonda"; +App::$strings["Suggest"] = "Prpozycja"; +App::$strings["Random Channel"] = "Losowy kanał"; +App::$strings["Invite"] = "Zaproszenie"; +App::$strings["Features"] = "Możliwości"; +App::$strings["Language"] = "Język"; +App::$strings["Profile Photo"] = "Zdjęcie profilowe"; +App::$strings["Profiles"] = "Profile"; +App::$strings["Notifications"] = "Powiadomienie"; +App::$strings["Order Apps"] = "Kolejność aplikacji"; +App::$strings["CardDAV"] = "CardDAV"; +App::$strings["Guest Access"] = "Dostęp gościa"; +App::$strings["Notes"] = "Notatki"; +App::$strings["OAuth Apps Manager"] = "Menadżer aplikacji OAuth"; +App::$strings["OAuth2 Apps Manager"] = "Menadżer aplikacji OAuth2"; +App::$strings["PDL Editor"] = "Edytor PDL"; +App::$strings["My Chatrooms"] = "Moje czaty"; +App::$strings["Channel Export"] = "Eksport kanału"; +App::$strings["Purchase"] = "Zakup"; +App::$strings["Undelete"] = "Cofnij usunięcie"; +App::$strings["Add to app-tray"] = "Dodaj do zasobnika aplikacji"; +App::$strings["Remove from app-tray"] = "Usuń z zasobnika aplikacji"; +App::$strings["Pin to navbar"] = "Przypnij do paska nawigacyjnego"; +App::$strings["Unpin from navbar"] = "Odepnij od paska nawigacyjnego"; +App::$strings["Source code of failed update: "] = "Kod źródłowy nieudanej aktualizacji: "; +App::$strings["Update Error at %s"] = "Błąd aktualizacji na %s"; +App::$strings["Update %s failed. See error logs."] = "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów."; +App::$strings["A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you intended, please create another list with a different name."] = "Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące elementów mogą dotyczyć tej listy i wszystkich przyszłych członków. Jeśli nie tego chciałeś, utwórz kolejną listę z inną nazwą."; +App::$strings["Add new connections to this access list"] = "Dodaj nowe połączenia do tej listy dostępu"; +App::$strings["Lists"] = "Listy"; +App::$strings["Edit list"] = "Edytuj listę"; +App::$strings["Create new list"] = "Utwórz nową listę"; +App::$strings["Channels not in any access list"] = "Kanały, których nie ma na żadnej liście dostępu"; +App::$strings["Missing room name"] = "Brak nazwy pokoju"; +App::$strings["Duplicate room name"] = "Powielona nazwa pokoju"; +App::$strings["Invalid room specifier."] = "Nieprawidłowy specyfikator pokoju."; +App::$strings["Room not found."] = "Nie znaleziono pokoju."; +App::$strings["Room is full"] = "Pokój jest pełny"; +App::$strings["0. Beginner/Basic"] = "0. Początkujący/Podstawowy"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Nowicjusz - nie ma umiejętności, ale chętnie się uczy"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Średnio zaawansowany - dość wygodne"; +App::$strings["3. Advanced - very comfortable"] = "3. Zaawansowany - bardzo wygodne"; +App::$strings["4. Expert - I can write computer code"] = "4. Ekspert - umiem pisać kod komputerowy"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Czarodziej - prawdopodobnie wiem więcej niż Ty"; +App::$strings["\$Projectname Notification"] = "Powiadomienie \$Projectname"; +App::$strings["\$projectname"] = "\$Projectname"; +App::$strings["Thank You,"] = "Dziękujemy,"; +App::$strings["%s Administrator"] = "Administrator %s"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Ta wiadomość e-mail została wysłana przez %1\$s z %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Aby nie otrzymywać tych wiadomości, zmień %s."; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Otrzymano nową pocztę na %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s wysłał Ci nową prywatną wiadomość na %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s wysłał Ci %2\$s."; +App::$strings["a private message"] = "prywatna wiadomość"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości."; +App::$strings["commented on"] = "skomentował"; +App::$strings["liked"] = "polubił"; +App::$strings["disliked"] = "nie polubił"; +App::$strings["voted on"] = "głosował"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]Twój %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Moderowany komentarz do rozmowy #%1\$d przez %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Komentarz do rozmowy #%1\$d przez %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s skomentował obserwowany element/rozmowa."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s, aby wyświetlić albo włączyć się do rozmowy."; +App::$strings["Please visit %s to approve or reject this comment."] = "Odwiedź %s, aby zaakceptować lub odrzucić ten komentarz."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s polubił [zrl=%2\$s]Twój %3\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Polubienie wysłane dla rozmowy #%1\$d przez %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s polubił utworzony przez Ciebie element/rozmowę."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify]%s opublikowany na Twojej ścianie profilu"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s opublikowano na ścianie Twojego profilu pod adresem %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s opublikował na [zrl=%2\$s]Twojej ścianie[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify]%s oznaczył Cię tagiem"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczył Cię tagiem %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]oznaczył Cię tagiem[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s zaczepił Cię"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]zaczepił Cię[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s oznaczył tagiem Twój wpis"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s oznaczył tagiem Twój wpis na %2\$s"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s tagged [zrl=%2\$s]Twój wpis[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Otrzymano prośbę o połączenie"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) nowe żądanie połączenia od „%1\$s” na %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s]nowe żądanie połączenia [/zrl] od %2\$s."; +App::$strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Odwiedź %s, aby zatwierdzić lub odrzucić prośbę o połączenie."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Otrzymano propozycję znajomości"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) propozycję znajomości od „%1\$s” na %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s] propozycję znajomości[/ zrl] dla %2\$s od %3\$s."; +App::$strings["Name:"] = "Nazwa:"; +App::$strings["Photo:"] = "Zdjęcie:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź %s, aby zaakceptować lub odrzucić popozycję."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notify]"; +App::$strings["created a new poll"] = "utworzył nową ankietę"; +App::$strings["created a new post"] = "utworzył nowy wpis"; +App::$strings["voted on %s's poll"] = "głosował w ankiecie %s"; +App::$strings["commented on %s's post"] = "skomentował wpis %s"; +App::$strings["repeated %s's post"] = "powtórzony wpis %s"; +App::$strings["edited a post dated %s"] = "edytował wpis z dnia %s"; +App::$strings["edited a comment dated %s"] = "edytował komentarz z dnia %s"; +App::$strings["created an event"] = "utworzono wydarzenie"; +App::$strings["status verified"] = "status został zweryfikowany"; +App::$strings["Unable to verify site signature for %s"] = "Nie można zweryfikować podpisu witryny dla %s"; +App::$strings["(No Title)"] = "(Brak tytułu)"; +App::$strings["Wiki page create failed."] = "Tworzenie strony Wiki nie powiodło się."; +App::$strings["Wiki not found."] = "Nie znaleziono wiki."; +App::$strings["Destination name already exists"] = "Nazwa celu już istnieje"; +App::$strings["Page not found"] = "Strona nie znaleziona"; +App::$strings["Error reading page content"] = "Błąd podczas odczytu zawartości strony"; +App::$strings["Error reading wiki"] = "Błąd podczas odczytu wiki"; +App::$strings["Page update failed."] = "Aktualizacja strony nie powiodła się."; +App::$strings["Nothing deleted"] = "Nic nie zostało usunięte"; +App::$strings["Compare: object not found."] = "Porównaj: nie znaleziono obiektu."; +App::$strings["Page updated"] = "Strona została zaktualizowana"; +App::$strings["Untitled"] = "Bez tytułu"; +App::$strings["Wiki resource_id required for git commit"] = "Identyfikator zasobu Wiki wymagany do zatwierdzenia przez Git"; +App::$strings["__ctx:wiki_history__ Message"] = "Wiadomość"; +App::$strings["Date"] = "Data"; +App::$strings["Compare"] = "Porównaj"; +App::$strings["Different viewers will see this text differently"] = "Różni widzowie będą inaczej widzieć ten tekst"; +App::$strings["Private Message"] = "Wiadomość prywatna"; +App::$strings["Privacy conflict. Discretion advised."] = "Konflikt prywatności. Zalecana dyskrecja."; +App::$strings["Select"] = "Wybierz"; +App::$strings["I will attend"] = "Będę uczestniczył"; +App::$strings["I will not attend"] = "Nie będę uczestniczył"; +App::$strings["I might attend"] = "Mogę wziąć udział"; +App::$strings["I agree"] = "Zgadzam się"; +App::$strings["I disagree"] = "Nie zgadzam się"; +App::$strings["I abstain"] = "Wstrzymuję się"; +App::$strings["Toggle Star Status"] = "Przełącz stan gwiazdki"; +App::$strings["Message signature validated"] = "Podpis wiadomości został zatwierdzony"; +App::$strings["Message signature incorrect"] = "Niepoprawny podpis wiadomości"; +App::$strings["Conversation Tools"] = "Narzędzia do konwersacji"; +App::$strings["like"] = "lubi"; +App::$strings["dislike"] = "nie lubi"; +App::$strings["Reply on this comment"] = "Odpowiedz na ten komentarz"; +App::$strings["reply"] = "odpowiedz"; +App::$strings["Reply to"] = "Odpowiedź dla"; +App::$strings["Share This"] = "Udostępnij to"; +App::$strings["share"] = "udostępnij"; +App::$strings["Delivery Report"] = "Raport dostawy"; +App::$strings["%d comment"] = array( + 0 => "%d komentarz", + 1 => "%d komentarze", + 2 => "%d komentarzy", +); +App::$strings["%d unseen"] = "%d nie zobaczone"; +App::$strings["to"] = "do"; +App::$strings["via"] = "poprzez"; +App::$strings["Wall-to-Wall"] = "Rozwinięcie"; +App::$strings["via Wall-To-Wall:"] = "poprzez rozwinięcie:"; +App::$strings["from %s"] = "od %s"; +App::$strings["last edited: %s"] = "ostatnio edytowane: %s"; +App::$strings["Expires: %s"] = "Wygasa: %s"; +App::$strings["Attend"] = "Uczestnicz"; +App::$strings["Attendance Options"] = "Opcje uczestnictwa"; +App::$strings["Vote"] = "Głosuj"; +App::$strings["Voting Options"] = "Opcje głosowania"; +App::$strings["Go to previous comment"] = "Przejdź do poprzedniego komentarza"; +App::$strings["Pinned post"] = "Wpis przypięty"; +App::$strings["Unpin from the top"] = "Odepnij od góry"; +App::$strings["Pin to the top"] = "Przypnij u góry"; +App::$strings["Save Bookmarks"] = "Zapisz zakładki"; +App::$strings["Add to Calendar"] = "Dodaj do kalendarza"; +App::$strings["This is an unsaved preview"] = "Ten podgląd nie został zapisany"; +App::$strings["%s show all"] = "%s pokaż wszystko"; +App::$strings["Bold"] = "Grube"; +App::$strings["Italic"] = "Pochyłe"; +App::$strings["Underline"] = "Podkreślone"; +App::$strings["Quote"] = "Cytat"; +App::$strings["Code"] = "Kod"; +App::$strings["Image"] = "Obraz"; +App::$strings["Attach/Upload file"] = "Załącz/Prześlij plik"; +App::$strings["Insert Link"] = "Wstaw link"; +App::$strings["Video"] = "Wideo"; +App::$strings["Your full name (required)"] = "Twoja imię i nazwisko lub pełna nazwa (wymagane)"; +App::$strings["Your email address (required)"] = "Twój adres e-mail (wymagane)"; +App::$strings["Your website URL (optional)"] = "Adres URL Twojej witryny (opcjonalnie)"; +App::$strings["Likes %1\$s's %2\$s"] = "Lubi %2\$s %1\$s"; +App::$strings["Doesn't like %1\$s's %2\$s"] = "Nie lubi %2\$s %1\$s"; +App::$strings["Will attend %s's event"] = "Weźmie udział w wydarzeniu %s"; +App::$strings["Will not attend %s's event"] = "Nie weźmie udziału w wydarzeniu %s"; +App::$strings["May attend %s's event"] = "Może uczestniczyć w wydarzeniu %s"; +App::$strings["May not attend %s's event"] = "Nie może uczestniczyć w wydarzeniu %s"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["Wiki updated successfully"] = "Wiki zaktualizowane pomyślnie"; +App::$strings["Wiki files deleted successfully"] = "Pliki Wiki zostały pomyślnie usunięte"; +App::$strings["Directory Options"] = "Opcje katalogu"; +App::$strings["Safe Mode"] = "Tryb bezpieczny"; +App::$strings["Public Forums Only"] = "Tylko fora publiczne"; +App::$strings["This Website Only"] = "Tylko ten serwis"; +App::$strings["__ctx:permcat__ default"] = "domyślnie"; +App::$strings["__ctx:permcat__ follower"] = "obserwujący"; +App::$strings["__ctx:permcat__ contributor"] = "współpracownik"; +App::$strings["__ctx:permcat__ publisher"] = "wydawca"; +App::$strings["Unable to verify channel signature"] = "Nie można zweryfikować podpisu kanału"; +App::$strings["Visible to your default audience"] = "Widoczne dla domyślnych odbiorców"; +App::$strings["Only me"] = "Tylko ja"; +App::$strings["Public"] = "Publiczny"; +App::$strings["Anybody in the \$Projectname network"] = "Każdy w sieci \$Projectname"; +App::$strings["Any account on %s"] = "Dowolne konto na %s"; +App::$strings["Any of my connections"] = "Wszystkie moje połączenia"; +App::$strings["Only connections I specifically allow"] = "Tylko połączenia, na które wyraźnie zezwalam"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Każdy uwierzytelniony (może obejmować odwiedzających z innych sieci)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzone"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów."; +App::$strings["This is your default setting for who can view your default channel profile"] = "To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny profil kanału"; +App::$strings["This is your default setting for who can view your connections"] = "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i zdjęć"; +App::$strings["This is your default setting for the audience of your webpages"] = "To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych"; +App::$strings["Everything"] = "Wszystko"; +App::$strings["Select Channel"] = "Wybierz kanał"; +App::$strings["Read-write"] = "Czytanie i zapis"; +App::$strings["Read-only"] = "Tylko odczyt"; +App::$strings["Channel Calendar"] = "Kalendarz kanału"; +App::$strings["Shared CalDAV Calendars"] = "Udostępnione kalendarze CalDAV"; +App::$strings["Share this calendar"] = "Udostępnij ten kalendarz"; +App::$strings["Calendar name and color"] = "Nazwa kalendarza i kolor"; +App::$strings["Create new CalDAV calendar"] = "Utwórz nowy kalendarz CalDAV"; +App::$strings["Calendar Name"] = "Nazwa kalendarza"; +App::$strings["Calendar Tools"] = "Narzędzia kalendarza"; +App::$strings["Import calendar"] = "Importuj kalendarz"; +App::$strings["Select a calendar to import to"] = "Wybierz kalendarz do zaimportowania"; +App::$strings["Addressbooks"] = "Książki adresowe"; +App::$strings["Addressbook name"] = "Nazwa książki adresowej"; +App::$strings["Create new addressbook"] = "Utwórz nową książkę adresową"; +App::$strings["Addressbook Name"] = "Nazwa książki adresowej"; +App::$strings["Addressbook Tools"] = "Narzędzia książki adresowej"; +App::$strings["Import addressbook"] = "Importuj książkę adresową"; +App::$strings["Select an addressbook to import to"] = "Wybierz książkę adresową do zaimportowania"; +App::$strings["Saved Folders"] = "Zapisywane foldery"; +App::$strings["Tags"] = "Tagi"; +App::$strings["Archives"] = "Archiwa"; +App::$strings["Chat Members"] = "Członkowie czatu"; +App::$strings["Rating Tools"] = "Narzędzia"; +App::$strings["Rate Me"] = "Oceń mnie"; +App::$strings["View Ratings"] = "Pokaż oceny"; +App::$strings["Add new page"] = "Dodaj nową stronę"; +App::$strings["Wiki Pages"] = "Strony wiki"; +App::$strings["Page name"] = "Nazwa strony"; +App::$strings["Bookmarked Chatrooms"] = "Czaty dodane do zakładek"; +App::$strings["photo/image"] = "zdjęcie/obraz"; +App::$strings["Forums"] = "Fora"; +App::$strings["Remove term"] = "Usuń termin"; +App::$strings["Saved Searches"] = "Zapisywane wyszukiwanie"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Masz %1$.0f z %2$.0f dozwolonych połączeń."; +App::$strings["Add New Connection"] = "Dodaj nowe połączenie"; +App::$strings["Enter channel address"] = "Wprowadź adres kanału"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Przykłady: bob@example.com, https://example.com/barbara"; +App::$strings["Suggestions"] = "Propozycje"; +App::$strings["See more..."] = "Zobacz więcej..."; +App::$strings["Tasks"] = "Zadania"; +App::$strings["Member registrations waiting for confirmation"] = "Rejestracja członków czeka na potwierdzenie"; +App::$strings["Inspect queue"] = "Sprawdź kolejkę"; +App::$strings["DB updates"] = "Aktualizacje bazy danych"; +App::$strings["Admin"] = "Admin"; +App::$strings["Addon Features"] = "Dodatkowe możliwości"; +App::$strings["Overview"] = "Przegląd"; +App::$strings["App Collections"] = "Kolekcja aplikacji"; +App::$strings["Installed apps"] = "Zainstalowane aplikacje"; +App::$strings["Commented Date"] = "Data skomentowania"; +App::$strings["Order by last commented date"] = "Sortuj według najnowszej daty skomentowania"; +App::$strings["Posted Date"] = "Data opublikowania"; +App::$strings["Order by last posted date"] = "Sortuj według najnowszej daty publikacji"; +App::$strings["Date Unthreaded"] = "Data zakończenia wątku"; +App::$strings["Order unthreaded by date"] = "Sortuj według daty zakończenia wątku"; +App::$strings["Stream Order"] = "Kolejność strumienia"; +App::$strings["Private Mail Menu"] = "Menu prywatnej poczty"; +App::$strings["Combined View"] = "Widok łączony"; +App::$strings["Inbox"] = "Skrzynka odbiorcza"; +App::$strings["Outbox"] = "Skrzynka nadawcza"; +App::$strings["New Message"] = "Nowy komunikat"; +App::$strings["Refresh"] = "Odśwież"; +App::$strings["HQ Control Panel"] = "Panel kontrolny HQ"; +App::$strings["Create a new post"] = "Utwórz nowy wpis"; +App::$strings["Events Tools"] = "Narzędzia wydarzeń"; +App::$strings["Export Calendar"] = "Eksport kalendarza"; +App::$strings["Import Calendar"] = "Import kalendarza"; +App::$strings["Direct Messages"] = "Bezpośrednie wiadomości"; +App::$strings["Show direct (private) messages"] = "Pokaż bezpośrednie (prywatne) wiadomości"; +App::$strings["Events"] = "Wydarzenia"; +App::$strings["Show posts that include events"] = "Pokaż wpisy zawierające wydarzenia"; +App::$strings["Polls"] = "Ankiety"; +App::$strings["Show posts that include polls"] = "Pokaż wpisy zawierające ankiety"; +App::$strings["Show posts related to the %s privacy group"] = "Pokaż wpisy związane z grupą prywatności %s"; +App::$strings["Show my privacy groups"] = "Pokaż moje grupy prywatności"; +App::$strings["Show posts to this forum"] = "Pokaż wpisy na tym forum"; +App::$strings["Show forums"] = "Pokaż fora"; +App::$strings["Starred Posts"] = "Wyróżnione wpisy"; +App::$strings["Show posts that I have starred"] = "Pokaż wpisy, które oznaczyłem gwiazdką"; +App::$strings["Personal Posts"] = "Osobiste wpisy"; +App::$strings["Show posts that mention or involve me"] = "Pokaż wpisy, które wspominają o mnie lub mnie dotyczą"; +App::$strings["Show posts that I have filed to %s"] = "Pokaż wpisy przesłane przeze mnie do %s"; +App::$strings["Show filed post categories"] = "Pokaż wprowadzone kategorie wpisów"; +App::$strings["Panel search"] = "Przeszukiwanie panelu"; +App::$strings["Filter by name"] = "Filtruj wg nazwy"; +App::$strings["Remove active filter"] = "Usuń aktywny filtr"; +App::$strings["Stream Filters"] = "Filtry strumienia"; +App::$strings["__ctx:widget__ Activity"] = "Aktywność"; +App::$strings["New Network Activity"] = "Nowa aktywność sieciowa"; +App::$strings["New Network Activity Notifications"] = "Powiadomienia o nowej aktywności sieciowej"; +App::$strings["View your network activity"] = "Wyświetl swoją aktywność w sieci"; +App::$strings["Mark all notifications read"] = "Oznacz wszystkie powiadomienia jako przeczytane"; +App::$strings["Show new posts only"] = "Pokaż tylko nowe wpisy"; +App::$strings["Filter by name or address"] = "Filtruj według nazwy lub adresu"; +App::$strings["New Home Activity"] = "Nowa aktywność domowa"; +App::$strings["New Home Activity Notifications"] = "Powiadomienia o nowej aktywności domowej"; +App::$strings["View your home activity"] = "Wyświetl swoją aktywność domową"; +App::$strings["Mark all notifications seen"] = "Oznacz wszystkie powiadomienia jako oglądnięte"; +App::$strings["New Direct Messages"] = "Nowe bezpośrednie wiadomości"; +App::$strings["New Direct Messages Notifications"] = "Powiadomienia o nowych wiadomościach bezpośrednich"; +App::$strings["View your direct messages"] = "Wyświetl swoje bezpośrednie wiadomości"; +App::$strings["New Mails"] = "Nowe wiadomości e-mail"; +App::$strings["New Mails Notifications"] = "Powiadomienia o nowych wiadomościach e-mail"; +App::$strings["View your private mails"] = "Zobacz swoje prywatne wiadomości"; +App::$strings["Mark all messages seen"] = "Oznacz wszystkie wiadomości jako oglądnięte"; +App::$strings["New Events"] = "Nowe wydarzenia"; +App::$strings["New Events Notifications"] = "Powiadomienia o nowych wydarzeniach"; +App::$strings["View events"] = "Pokaż wydarzenia"; +App::$strings["Mark all events seen"] = "Oznacza wydarzenia jako oglądnięte"; +App::$strings["New Connections Notifications"] = "Powiadomienia o nowych połączeniach"; +App::$strings["View all connections"] = "Pokaż wszystkie połączenia"; +App::$strings["New Files"] = "Nowe pliki"; +App::$strings["New Files Notifications"] = "Powiadomienia o nowych plikach"; +App::$strings["Notices"] = "Powiadomienia"; +App::$strings["View all notices"] = "Pokaż wszystkie powiadomienia"; +App::$strings["Mark all notices seen"] = "Oznacz wszystkie powiadomienia jako oglądnięte"; +App::$strings["New Registrations"] = "Nowe rejestracje"; +App::$strings["New Registrations Notifications"] = "Powiadomienia o nowych rejestracjach"; +App::$strings["Public Stream Notifications"] = "Powiadomienia o strumieniu publicznym"; +App::$strings["View the public stream"] = "Pokaż strumień publiczny"; +App::$strings["Sorry, you have got no notifications at the moment"] = "W tej chwili nie masz żadnych powiadomień"; +App::$strings["View %s's profile - %s"] = "Pokaż profile %s - %s"; +App::$strings["Don't show"] = "Nie pokazuj"; +App::$strings["Account settings"] = "Ustawienia konta"; +App::$strings["Channel settings"] = "Ustawienia kanału"; +App::$strings["Display settings"] = "Ustawienia wyświetlania"; +App::$strings["Manage locations"] = "Zarządzaj lokalizacjami"; +App::$strings["Suggested Chatrooms"] = "Sugerowane czaty"; +App::$strings["Received Messages"] = "Otrzymane wiadomości"; +App::$strings["Sent Messages"] = "Wysłane wiadomości"; +App::$strings["Conversations"] = "Rozmowy"; +App::$strings["No messages."] = "Brak wiadomości."; +App::$strings["Delete conversation"] = "Usuń rozmowę"; +App::$strings["Profile Creation"] = "Tworzenie profilu"; +App::$strings["Upload profile photo"] = "Prześlij zdjęcie profilowe"; +App::$strings["Upload cover photo"] = "Prześlij zdjęcie okładkowe"; +App::$strings["Edit your profile"] = "Edytuj swój profil"; +App::$strings["Find and Connect with others"] = "Znajdź i połącz się z innymi"; +App::$strings["View the directory"] = "Pokaż katalog"; +App::$strings["Manage your connections"] = "Zarządzaj swoimi połączeniami"; +App::$strings["Communicate"] = "Komunikuj się"; +App::$strings["View your channel homepage"] = "Wyświetl stronę główną swojego kanału"; +App::$strings["View your network stream"] = "Wyświetl swój strumień sieciowy"; +App::$strings["Documentation"] = "Dokumentacja"; +App::$strings["Missing Features?"] = "Brakuje funkcji?"; +App::$strings["Pin apps to navigation bar"] = "Przypinaj aplikacje do paska nawigacji"; +App::$strings["Install more apps"] = "Zainstaluj więcej aplikacji"; +App::$strings["View public stream"] = "Pokaż publiczny strumień"; +App::$strings["Click to show more"] = "Kliknij, aby pokazać więcej"; +App::$strings["Source channel not found."] = "Nie znaleziono kanału źródłowego."; +App::$strings["%d invitation available"] = array( + 0 => "%d dostępne zaproszenie", + 1 => "%d dostępne zaproszenia", + 2 => "%d dostępnych zaproszeń", +); +App::$strings["Find Channels"] = "Znajdź kanały"; +App::$strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; +App::$strings["Connect/Follow"] = "Połącz/Obserwuj"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Przykłady: Robert Morgenstein, łowienie ryb"; +App::$strings["Random Profile"] = "Losowy profil"; +App::$strings["Invite Friends"] = "Zaproś przyjaciół"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Zaawansowany przykład: name=fredeki country=poland"; +App::$strings["Common Connections"] = "Popularne połączenia"; +App::$strings["View all %d common connections"] = "Wyświetl wszystkie %d popularne połączenia"; +App::$strings["likes %1\$s's %2\$s"] = "polubił %2\$s %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "nie polubił %1\$s %2\$s"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s jest teraz połączony z %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s zaczepił %2\$s"; +App::$strings["poked"] = "zaczepiony"; +App::$strings["View %s's profile @ %s"] = "Pokaż profil @ %s %s"; +App::$strings["Categories:"] = "Kategorie:"; +App::$strings["Filed under:"] = "Złożone pod:"; +App::$strings["View in context"] = "Zobacz w kontekście"; +App::$strings["remove"] = "usuń"; +App::$strings["Loading..."] = "Ładowanie ..."; +App::$strings["Delete Selected Items"] = "Usuń wybrane elementy"; +App::$strings["View Source"] = "Pokaż źródło"; +App::$strings["Follow Thread"] = "Obserwuj wątek"; +App::$strings["Unfollow Thread"] = "Przestań obserwować wątek"; +App::$strings["Edit Connection"] = "Edytuj połączenie"; +App::$strings["%s likes this."] = "%s lubi to."; +App::$strings["%s doesn't like this."] = "%s nie lubi tego."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d osoba lubi to.", + 1 => "%2\$d osoby lubią tego.", + 2 => "%2\$d osób lubi tego.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d osoba nie lubi to.", + 1 => "%2\$d osoby nie lubią tego.", + 2 => "%2\$d osób nie lubią tego.", +); +App::$strings["and"] = "i"; +App::$strings[", and %d other people"] = array( + 0 => ", oraz %d inna osoba", + 1 => ", oraz %d inne osoby", + 2 => ", oraz %d innych osób", +); +App::$strings["%s like this."] = "%s lubi to."; +App::$strings["%s don't like this."] = "%s nie lubi tego."; +App::$strings["Set your location"] = "Ustaw swoją lokalizację"; +App::$strings["Clear browser location"] = "Wyczyść lokalizację przeglądarki"; +App::$strings["Embed (existing) photo from your photo albums"] = "Osadź (istniejące) zdjęcie z albumów ze zdjęciami"; +App::$strings["Tag term:"] = "Termin tagu:"; +App::$strings["Where are you right now?"] = "Gdzie teraz jesteś?"; +App::$strings["Choose a different album..."] = "Wybierz inny album..."; +App::$strings["Comments enabled"] = "Włączone komentowanie"; +App::$strings["Comments disabled"] = "Wyłączone komentowanie"; +App::$strings["Page link name"] = "Nazwa linku do strony"; +App::$strings["Post as"] = "Opublikuj jako"; +App::$strings["Toggle voting"] = "Przełącz głosowanie"; +App::$strings["Toggle poll"] = "Przełącz ankietę"; +App::$strings["Option"] = "Opcja"; +App::$strings["Add option"] = "Dodaj opcję"; +App::$strings["Minutes"] = "Minuty"; +App::$strings["Hours"] = "Godziny"; +App::$strings["Days"] = "Dni"; +App::$strings["Allow multiple answers"] = "Zezwalaj na wiele odpowiedzi"; +App::$strings["Disable comments"] = "Wyłącz komentarze"; +App::$strings["Toggle comments"] = "Przełącz komentarze"; +App::$strings["Summary (optional)"] = "Streszczenie (opcjonalnie)"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorie (opcjonalnie, lista rozdzielana przecinkami)"; +App::$strings["Other networks and post services"] = "Inne sieci i usługi społecznościowe"; +App::$strings["Set expiration date"] = "Ustaw datę wygaśnięcia"; +App::$strings["Set publish date"] = "Ustaw datę publikacji"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Uczestniczy", + 1 => "Uczestniczy", + 2 => "Uczestniczy", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Nie uczestniczy", + 1 => "Nie uczestniczy", + 2 => "Nie uczestniczy", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Niezdecydowany", + 1 => "Niezdecydowane", + 2 => "Niezdecydowanych", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Zgadza się", + 1 => "Zgadają się", + 2 => "Zgadza się", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Nie zgadza się", + 1 => "Nie zgadzają się", + 2 => "Nie zgadza się", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Wstrzymuje się", + 1 => "Wstrzymują się", + 2 => "Wstrzymuje się", +); +App::$strings["Unable to obtain identity information from database"] = "Nie można uzyskać informacji z bazy danych o tożsamości"; +App::$strings["Empty name"] = "Pusta nazwa"; +App::$strings["Name too long"] = "Nazwa jest za długa"; +App::$strings["No account identifier"] = "Brak identyfikatora konta"; +App::$strings["Unable to retrieve created identity"] = "Nie można pobrać utworzonej tożsamości"; +App::$strings["Default Profile"] = "Domyślny profil"; +App::$strings["Unable to retrieve modified identity"] = "Nie można pobrać zmodyfikowanej tożsamości"; +App::$strings["Requested channel is not available."] = "Żądany kanał nie jest dostępny."; +App::$strings["Create New Profile"] = "Utwórz nowy profil"; +App::$strings["Edit Profile"] = "Edytuj profil"; +App::$strings["Visible to everybody"] = "Widoczne dla każdego"; +App::$strings["Gender:"] = "Płeć:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Strona domowa:"; +App::$strings["Online Now"] = "Teraz online"; +App::$strings["Change your profile photo"] = "Zmień swoje zdjęcie profilowe"; +App::$strings["Female"] = "Kobieta"; +App::$strings["Male"] = "Mężczyzna"; +App::$strings["Trans"] = "Trans"; +App::$strings["Neuter"] = "Osoba aseksualna"; +App::$strings["Non-specific"] = "Nie określono"; +App::$strings["Like this channel"] = "Polub ten kanał"; +App::$strings["j F, Y"] = "d M, R"; +App::$strings["j F"] = "d M"; +App::$strings["Birthday:"] = "Urodziny:"; +App::$strings["for %1\$d %2\$s"] = "dla %1\$d %2\$s"; +App::$strings["Tags:"] = "Tagi:"; +App::$strings["Sexual Preference:"] = "Preferencje seksualne:"; +App::$strings["Political Views:"] = "Poglądy polityczne:"; +App::$strings["Religion:"] = "Religia:"; +App::$strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; +App::$strings["Likes:"] = "Polubień:"; +App::$strings["Dislikes:"] = "Niepolubień:"; +App::$strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społecznościowe:"; +App::$strings["My other channels:"] = "Moje inne kanały:"; +App::$strings["Musical interests:"] = "Zainteresowania muzyczne:"; +App::$strings["Books, literature:"] = "Książki, literatura:"; +App::$strings["Television:"] = "Telewizja:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka:"; +App::$strings["Love/Romance:"] = "Miłość/Romans:"; +App::$strings["Work/employment:"] = "Praca/Zatrudnienie:"; +App::$strings["School/education:"] = "Szkoła/Wykształcenie:"; +App::$strings["Like this thing"] = "Podobne do tej rzeczy"; +App::$strings["Start calendar week on Monday"] = "Rozpocznij tydzień kalendarzowy w poniedziałek"; +App::$strings["Default is Sunday"] = "Domyślnie jest to niedziela"; +App::$strings["Event Timezone Selection"] = "Wybór strefy czasowej wydarzenia"; +App::$strings["Allow event creation in timezones other than your own."] = "Zezwalaj na tworzenie wydarzeń w strefach czasowych innych niż Twoja."; +App::$strings["Search by Date"] = "Wyszukaj po dacie"; +App::$strings["Ability to select posts by date ranges"] = "Możliwość wyboru wpisów według zakresów dat"; +App::$strings["Tag Cloud"] = "Chmura tagów"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Udostępnij osobistą chmurę tagów na stronie swojego kanału"; +App::$strings["Use blog/list mode"] = "Użyj trybu blog/list"; +App::$strings["Comments will be displayed separately"] = "Komentarze będą wyświetlane osobno"; +App::$strings["Connection Filtering"] = "Filtrowanie połączeń"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści"; +App::$strings["Conversation"] = "Rozmowa"; +App::$strings["Emoji Reactions"] = "Reakcje emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Dodaje możliwość wstawiania reakcji emoji we wpisach"; +App::$strings["Dislike Posts"] = "Nielubienie wpisu"; +App::$strings["Ability to dislike posts/comments"] = "Możliwość oznaczania wpisów i komentarzy jako nielubiane"; +App::$strings["Star Posts"] = "Wyróżnienie wpisu"; +App::$strings["Ability to mark special posts with a star indicator"] = "Możliwość oznaczania wyróżnionych wpisów wskaźnikiem gwiazdki"; +App::$strings["Reply on comment"] = "Odpowiadanie na komentarze"; +App::$strings["Ability to reply on selected comment"] = "Możliwość udzielenia odpowiedzi na wybrany komentarz"; +App::$strings["Advanced Directory Search"] = "Zaawansowane przeszukiwanie katalogu"; +App::$strings["Allows creation of complex directory search queries"] = "Umożliwia tworzenie złożonych zapytań wyszukiwania w katalogu"; +App::$strings["Editor"] = "Edytor"; +App::$strings["Post Categories"] = "Kategorie wpisów"; +App::$strings["Add categories to your posts"] = "Dodawanie kategorii do swoich wpisów"; +App::$strings["Large Photos"] = "Duże zdjęcia"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie jest to włączone, można używać tylko małych miniatur (640 px)"; +App::$strings["Even More Encryption"] = "Jeszcze więcej szyfrowania"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego tajnego klucza"; +App::$strings["Disable Comments"] = "Wyłączanie komentarzy"; +App::$strings["Provide the option to disable comments for a post"] = "Zapewnia możliwość wyłączenia komentowania wpisu"; +App::$strings["Delayed Posting"] = "Opóźnione publikowanie"; +App::$strings["Allow posts to be published at a later date"] = "Pozwala na publikację wpisów w późniejszym terminie"; +App::$strings["Content Expiration"] = "Wygasanie treści"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Usuwanie wpisów i komentarzy lub prywatnych wiadomości w przyszłości"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Pomijaj zduplikowane wpisy i komentarze"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie minuty między przesłaniami."; +App::$strings["Auto-save drafts of posts and comments"] = "Automatyczne zapisywanie wersji roboczych wpisów i komentarzy"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Automatycznie zapisuje wersje robocze wpisów i komentarzy w lokalnej pamięci przeglądarki, aby zapobiec przypadkowej utracie kompozycji"; +App::$strings["Manage"] = "Zarządzanie"; +App::$strings["Navigation Channel Select"] = "Wybór kanału przez nawigację"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Zmiana kanału bezpośrednio z rozwijanego menu nawigacji"; +App::$strings["Events Filter"] = "Filtr wydarzeń"; +App::$strings["Ability to display only events"] = "Możliwość wyświetlania tylko wydarzeń"; +App::$strings["Polls Filter"] = "Filtr ankiet"; +App::$strings["Ability to display only polls"] = "Możliwość wyświetlania tylko ankiet"; +App::$strings["Save search terms for re-use"] = "Zapisywanie wyszukiwanych haseł do ponownego wykorzystania"; +App::$strings["Ability to file posts under folders"] = "Możliwość umieszczania wpisów w folderach"; +App::$strings["Alternate Stream Order"] = "Alternatywna kolejność strumienia"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty ostatniego komentarza lub nieprzeczytanych aktywności"; +App::$strings["Contact Filter"] = "Filtr kontaktów"; +App::$strings["Ability to display only posts of a selected contact"] = "Możliwość wyświetlania wpisów autorstwa tylko wybranego kontaktu"; +App::$strings["Forum Filter"] = "Filtr forów"; +App::$strings["Ability to display only posts of a specific forum"] = "Możliwość wyświetlania wpisów tylko z określonego forum"; +App::$strings["Personal Posts Filter"] = "Filtr wpisów osobistych"; +App::$strings["Ability to display only posts that you've interacted on"] = "Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję"; +App::$strings["Photo Location"] = "Lokalizacja zdjęcia"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą."; +App::$strings["Advanced Profiles"] = "Profile zaawansowane"; +App::$strings["Additional profile sections and selections"] = "Dodatkowe sekcje i pola wyboru profilu"; +App::$strings["Profile Import/Export"] = "Import/Eksport profilu"; +App::$strings["Save and load profile details across sites/channels"] = "Zapisz i wczytaj szczegóły profilu z różnych witryn i kanałów"; +App::$strings["Multiple Profiles"] = "Wiele profili"; +App::$strings["Ability to create multiple profiles"] = "Możliwość tworzenia wielu profili"; +App::$strings["Delegation session ended."] = "Sesja delegacji zakończyła się."; +App::$strings["Logged out."] = "Wylogowano."; +App::$strings["Email validation is incomplete. Please check your email."] = "Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email."; +App::$strings["Failed authentication"] = "Uwierzytelnianie nie powiodło się"; +App::$strings["Login failed."] = "Logowanie nie powiodło się."; +App::$strings["prev"] = "poprzedni"; +App::$strings["first"] = "pierwszy"; +App::$strings["last"] = "ostatni"; +App::$strings["next"] = "następny"; +App::$strings["older"] = "starszy"; +App::$strings["newer"] = "nowszy"; +App::$strings["No connections"] = "Brak połączeń"; +App::$strings["View all %s connections"] = "Wyświetl wszystkie połączenia %s"; +App::$strings["Network: %s"] = "Sieć: %s"; +App::$strings["poke"] = "zaczepiać"; +App::$strings["ping"] = "spingować"; +App::$strings["pinged"] = "spingowany"; +App::$strings["prod"] = "sprawdzać"; +App::$strings["prodded"] = "zaczepiony"; +App::$strings["slap"] = "spoliczkować"; +App::$strings["slapped"] = "spoliczkowany"; +App::$strings["finger"] = "dotknąć"; +App::$strings["fingered"] = "dotknięty"; +App::$strings["rebuff"] = "odprawiać"; +App::$strings["rebuffed"] = "odprawiony"; +App::$strings["happy"] = "szczęśliwy"; +App::$strings["sad"] = "smutny"; +App::$strings["mellow"] = "łagodny"; +App::$strings["tired"] = "zmęczony"; +App::$strings["perky"] = "dziarski"; +App::$strings["angry"] = "gniewny"; +App::$strings["stupefied"] = "oszołomiony"; +App::$strings["puzzled"] = "zdziwiony"; +App::$strings["interested"] = "zainteresowany"; +App::$strings["bitter"] = "gorzki"; +App::$strings["cheerful"] = "wesoły"; +App::$strings["alive"] = "żywy"; +App::$strings["annoyed"] = "zirytowany"; +App::$strings["anxious"] = "niespokojny"; +App::$strings["cranky"] = "zepsuty"; +App::$strings["disturbed"] = "zaniepokojony"; +App::$strings["frustrated"] = "sfrustrowany"; +App::$strings["depressed"] = "przygnębiony"; +App::$strings["motivated"] = "zmotywowany"; +App::$strings["relaxed"] = "zThese permissions set who is allowed to view the post."] = "Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu wpisu.
Te uprawnienia określają, kto może oglądać wpis."; +App::$strings["This is the home page of %s."] = "To jest strona główna %s."; +App::$strings["Trending"] = "Trendy"; +App::$strings["Keywords"] = "Słowa kluczowe"; +App::$strings["have"] = "ma"; +App::$strings["has"] = "mają"; +App::$strings["want"] = "chce"; +App::$strings["wants"] = "chcą"; +App::$strings["likes"] = "lubią"; +App::$strings["dislikes"] = "nie lubią"; +App::$strings["Unable to import a removed channel."] = "Nie można zaimportować usuniętego kanału."; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import nieudany."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Nie można utworzyć unikalnego adresu kanału. Import nieudany."; +App::$strings["Cloned channel not found. Import failed."] = "Nie znaleziono sklonowanego kanału. Import nieudany."; +App::$strings["Remote authentication"] = "Zdalne uwierzytelnianie"; +App::$strings["Click to authenticate to your home hub"] = "Kliknij, aby uwierzytelnić się na swoim głównym portalu"; +App::$strings["Manage your channels"] = "Zarządzaj swoimi kanałami"; +App::$strings["Manage your privacy groups"] = "Zarządzaj swoimi grupami prywatności"; +App::$strings["Account/Channel Settings"] = "Ustawienia kanału/konta"; +App::$strings["Logout"] = "Wyloguj się"; +App::$strings["End this session"] = "Zakończ tą sesję"; +App::$strings["Your profile page"] = "Strona Twojego profilu"; +App::$strings["Manage/Edit profiles"] = "Zarządzaj/edytuj profile"; +App::$strings["Sign in"] = "Zaloguj się"; +App::$strings["Take me home"] = "Zabierz mnie do domu"; +App::$strings["Log me out of this site"] = "Wyloguj mnie z tej witryny"; +App::$strings["Create an account"] = "Utwórz konto"; +App::$strings["Help and documentation"] = "Pomoc i dokumentacja"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Szukaj w witrynie @name, !forum, #tag, ?docs, content"; +App::$strings["Site Setup and Configuration"] = "Instalacja i konfiguracja witryny"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@name, !forum, #tag, ?doc, content"; +App::$strings["Please wait..."] = "Proszę czekać ..."; +App::$strings["Add Apps"] = "Dodaj aplikacje"; +App::$strings["Arrange Apps"] = "Rozmieść aplikacje"; +App::$strings["Toggle System Apps"] = "Przełącz aplikacje systemowe"; +App::$strings["Status Messages and Posts"] = "Komunikaty o stanie i wpisy"; +App::$strings["Profile Details"] = "Szczegóły profilu"; +App::$strings["Photo Albums"] = "Albumy zdjęć"; +App::$strings["Files and Storage"] = "Pliki i ich magazyn"; +App::$strings["Saved Bookmarks"] = "Zapisane zakładki"; +App::$strings["View Cards"] = "Wyświetl karty"; +App::$strings["View Articles"] = "Wyświetl artykuły"; +App::$strings["View Webpages"] = "Wyświetl witryny internetowe"; +App::$strings["Select an alternate language"] = "Wybierz alternatywny język"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s wita %2\$s"; +App::$strings["%1\$s's bookmarks"] = "zakładki %1\$s"; +App::$strings[" and "] = " i "; +App::$strings["public profile"] = "profil publiczny"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s zmienił %2\$s na „%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Odwiedź %2\$s %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ma zaktualizowane %2\$s, zmieniając %3\$s."; +App::$strings["INVALID EVENT DISMISSED!"] = "ODRZUCONO NIEPRAWIDŁOWE WYDARZENIE!"; +App::$strings["Summary: "] = "Podsumowanie: "; +App::$strings["Date: "] = "Data: "; +App::$strings["Reason: "] = "Powód: "; +App::$strings["INVALID CARD DISMISSED!"] = "ODRZUCONO NIEPRAWIDŁOWĄ KARTĘ!"; +App::$strings["Name: "] = "Nazwa: "; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Obraz przekracza limit rozmiaru witryny wynoszący %lu bajtów"; +App::$strings["Image file is empty."] = "Plik obrazu jest pusty."; +App::$strings["Photo storage failed."] = "Zapis zdjęcia nie powiódł się."; +App::$strings["a new photo"] = "nowe zdjęcie"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s wysłał %2\$s do %3\$s"; +App::$strings["Upload New Photos"] = "Prześlij nowe zdjęcia"; +App::$strings["Delete this item?"] = "Usunąć tą pozycję?"; +App::$strings["%s show less"] = "%s pokaż mniej"; +App::$strings["%s expand"] = "%s rozwiń"; +App::$strings["%s collapse"] = "%s zwiń"; +App::$strings["Password too short"] = "Hasło jest za krótkie"; +App::$strings["everybody"] = "wszyscy"; +App::$strings["Secret Passphrase"] = "Tajna hasło"; +App::$strings["Passphrase hint"] = "Wskazówka dotycząca hasła"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Uwaga: uprawnienia uległy zmianie, ale nie zostały jeszcze przesłane."; +App::$strings["close all"] = "zamknij wszystko"; +App::$strings["Nothing new here"] = "Nic nowego tutaj"; +App::$strings["Rate This Channel (this is public)"] = "Oceń ten kanał (to jest publiczne)"; +App::$strings["Describe (optional)"] = "Opisz (opcjonalnie)"; +App::$strings["Please enter a link URL"] = "Proszę wprowadzić URL linku"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niezapisane zmiany. Czy na pewno chcesz opuścić tę stronę?"; +App::$strings["lovely"] = "śliczne"; +App::$strings["wonderful"] = "wspaniałe"; +App::$strings["fantastic"] = "fantastyczne"; +App::$strings["great"] = "świetne"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej prpozycji ("; +App::$strings[") or enter a new one."] = ") lub wprowadź nowy."; +App::$strings["Thank you, this nickname is valid."] = "Dziękuję, ten pseudonim jest prawidłowy."; +App::$strings["A channel name is required."] = "Wymagana jest nazwa kanału."; +App::$strings["This is a "] = "To jest "; +App::$strings[" channel name"] = " nazwa kanału"; +App::$strings["Back to reply"] = "Wróć do odpowiedzi"; +App::$strings["Pinned"] = "Przypięte"; +App::$strings["%d minutes"] = array( + 0 => "%d minuta", + 1 => "%d minuty", + 2 => "%d minut", +); +App::$strings["about %d hours"] = array( + 0 => "około %d godziny", + 1 => "około %d godzin", + 2 => "około %d godzin", +); +App::$strings["%d days"] = array( + 0 => "%d dzień", + 1 => "%d dni", + 2 => "%d dni", +); +App::$strings["%d months"] = array( + 0 => "%d miesiąc", + 1 => "%d miesiące", + 2 => "%d miesięcy", +); +App::$strings["%d years"] = array( + 0 => "%d rok", + 1 => "%d lata", + 2 => "%d lat", +); +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "od"; +App::$strings["timeago.suffixAgo"] = "temu"; +App::$strings["timeago.suffixFromNow"] = "temu"; +App::$strings["less than a minute"] = "mniej niż minutę"; +App::$strings["about a minute"] = "około minuty"; +App::$strings["about an hour"] = "około godziny"; +App::$strings["a day"] = "dzień"; +App::$strings["about a month"] = "około miesiąca"; +App::$strings["about a year"] = "około roku"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "Maj"; +App::$strings["Jan"] = "Sty"; +App::$strings["Feb"] = "Lut"; +App::$strings["Mar"] = "Mar"; +App::$strings["Apr"] = "Kwi"; +App::$strings["__ctx:short__ May"] = "Maj"; +App::$strings["Jun"] = "Cze"; +App::$strings["Jul"] = "Lop"; +App::$strings["Aug"] = "Sie"; +App::$strings["Sep"] = "Wrz"; +App::$strings["Oct"] = "Paź"; +App::$strings["Nov"] = "Lis"; +App::$strings["Dec"] = "Gru"; +App::$strings["Sun"] = "Nie"; +App::$strings["Mon"] = "Pon"; +App::$strings["Tue"] = "Wto"; +App::$strings["Wed"] = "Śro"; +App::$strings["Thu"] = "Czw"; +App::$strings["Fri"] = "Pią"; +App::$strings["Sat"] = "Sob"; +App::$strings["__ctx:calendar__ today"] = "dzisiaj"; +App::$strings["__ctx:calendar__ month"] = "miesiąc"; +App::$strings["__ctx:calendar__ week"] = "tydzień"; +App::$strings["__ctx:calendar__ day"] = "dzień"; +App::$strings["__ctx:calendar__ All day"] = "Cały dzień"; +App::$strings["Please stand by while your download is being prepared."] = "Proszę czekać, aż pobieranie zostanie zakończone."; +App::$strings["Email address not valid"] = "Adres e-mail jest nieprawidłowy"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się tak, ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem."; +App::$strings["Profile to assign new connections"] = "Profil do przypisywania nowych połączeń"; +App::$strings["Frequently"] = "Często"; +App::$strings["Hourly"] = "Co godzinnę"; +App::$strings["Twice daily"] = "Dwa razy dziennie"; +App::$strings["Daily"] = "Co dzień"; +App::$strings["Weekly"] = "Co tydzień"; +App::$strings["Monthly"] = "Co miesiąc"; +App::$strings["Currently Male"] = "Obecnie mężczyzna"; +App::$strings["Currently Female"] = "Obecnie kobieta"; +App::$strings["Mostly Male"] = "Głównie mężczyźna"; +App::$strings["Mostly Female"] = "Głównie kobieta"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interpłciowość"; +App::$strings["Transsexual"] = "Transseksualność"; +App::$strings["Hermaphrodite"] = "Hermafrodyta"; +App::$strings["Undecided"] = "Niezdecydowano"; +App::$strings["Males"] = "Mężczyżni"; +App::$strings["Females"] = "Kobiety"; +App::$strings["Gay"] = "Homoseksualista"; +App::$strings["Lesbian"] = "Lesbijka"; +App::$strings["No Preference"] = "Bez preferencji"; +App::$strings["Bisexual"] = "Biseksualne"; +App::$strings["Autosexual"] = "Autoseksualne"; +App::$strings["Abstinent"] = "Abstyncja"; +App::$strings["Virgin"] = "Dziewice"; +App::$strings["Deviant"] = "Dewiant"; +App::$strings["Fetish"] = "Fetysz"; +App::$strings["Oodles"] = "Wszystko"; +App::$strings["Nonsexual"] = "Osoba aseksualna"; +App::$strings["Single"] = "Singiel"; +App::$strings["Lonely"] = "Osoba samotna"; +App::$strings["Available"] = "Osoba dostępna"; +App::$strings["Unavailable"] = "Osoba niedostępna"; +App::$strings["Has crush"] = "Osoba zadłużona"; +App::$strings["Infatuated"] = "Osoba zakochana"; +App::$strings["Dating"] = "Randkowicz"; +App::$strings["Unfaithful"] = "Osoba niewierna"; +App::$strings["Sex Addict"] = "Osoba uzależniona od seksu"; +App::$strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; +App::$strings["Casual"] = "Przygodnie"; +App::$strings["Engaged"] = "Osoba zaręczona"; +App::$strings["Married"] = "Osoba zaślubiona"; +App::$strings["Imaginarily married"] = "Małżeństwo pomysłowe"; +App::$strings["Partners"] = "Partnerstwo"; +App::$strings["Cohabiting"] = "Konkubinat"; +App::$strings["Common law"] = "Prawo zwyczajowe"; +App::$strings["Happy"] = "Osoba szczęśliwa"; +App::$strings["Not looking"] = "Osoba nie szukająca"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Osoba zdradzona"; +App::$strings["Separated"] = "W separacji"; +App::$strings["Unstable"] = "Związek niestabilny"; +App::$strings["Divorced"] = "Osoba rozwiedziona"; +App::$strings["Imaginarily divorced"] = "Osoba rozwiedziona umownie"; +App::$strings["Widowed"] = "Osoba owdowiała"; +App::$strings["Uncertain"] = "Osoba niezdecydowana"; +App::$strings["It's complicated"] = "To skomplikowane"; +App::$strings["Don't care"] = "Nie obchodzi mnie to"; +App::$strings["Ask me"] = "Zapytaj mnie"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["The provided email address is not valid"] = "Podany adres e-mail jest nieprawidłowy"; +App::$strings["The provided email domain is not among those allowed on this site"] = "Podana domena e-mail nie należy do domen dozwolonych w tym serwisie"; +App::$strings["The provided email address is already registered at this site"] = "Podany adres e-mail jest już zarejestrowany w tej witrynie"; +App::$strings["There is a pending registration for this address - click \"Register\" to continue verification"] = "Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby kontynuować weryfikację"; +App::$strings["An invitation is required."] = "Wymagane jest zaproszenie."; +App::$strings["Invitation could not be verified."] = "Nie udało się zweryfikować zaproszenia."; +App::$strings["Please enter the required information."] = "Proszę wprowadzić wymagane informacje."; +App::$strings["Failed to store account information."] = "Nie udało się zapisać informacji o koncie."; +App::$strings["Registration request at %s"] = "Wniosek o rejestrację na %s"; +App::$strings["your registration password"] = "hasło rejestracyjne"; +App::$strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; +App::$strings["Account approved."] = "Konto zostało zatwierdzone."; +App::$strings["Registration revoked for %s"] = "Rejestracja cofnięta dla %s"; +App::$strings["Could not revoke registration for %s"] = "Nie można unieważnić rejestracji dla % s"; +App::$strings["Click here to upgrade."] = "Kliknij tutaj, aby zaktualizować."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Ta czynność wykracza poza limity określone w planie subskrypcji."; +App::$strings["This action is not available under your subscription plan."] = "Ta czynność nie jest dostępna w ramach Twojego planu subskrypcji."; +App::$strings["open"] = "otwórz"; +App::$strings["closed"] = "zamknięte"; +App::$strings["Registration is currently"] = "Rejestracja trwa"; +App::$strings["please come back"] = "proszę wrócić"; +App::$strings["Help:"] = "Pomoc:"; +App::$strings["Not Found"] = "Nie znaleziono"; +App::$strings["Item was not found."] = "Nie znaleziono elementu."; +App::$strings["Unknown error."] = "Nieznany błąd."; +App::$strings["No source file."] = "Brak pliku źródłowego."; +App::$strings["Cannot locate file to replace"] = "Nie można znaleźć pliku do zastąpienia"; +App::$strings["Cannot locate file to revise/update"] = "Nie można zlokalizować pliku do poprawienia/aktualizacji"; +App::$strings["File exceeds size limit of %d"] = "Plik przekracza limit rozmiaru %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Osiągnięty został limit %1$.0f MB miejsca na załączniki."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub działanie zakończone."; +App::$strings["Stored file could not be verified. Upload failed."] = "Nie można zweryfikować zapisanego pliku. Przesyłanie nie powiodło się."; +App::$strings["Path not available."] = "Ścieżka niedostępna."; +App::$strings["Empty pathname"] = "Pusta ścieżka"; +App::$strings["duplicate filename or path"] = "zduplikowana nazwa pliku lub ścieżka"; +App::$strings["Path not found."] = "Ścieżka nie znaleziona."; +App::$strings["mkdir failed."] = "mkdir zakończył się błędem."; +App::$strings["database storage failed."] = "zapis w bazie danych nie powiódł się."; +App::$strings["Empty path"] = "Pusta ścieżka"; +App::$strings["%s shared a %s with you"] = "%s udostępnił Ci %s"; +App::$strings["file"] = "plik"; +App::$strings["New window"] = "Nowe okno"; +App::$strings["Open the selected location in a different window or browser tab"] = "Otwórz wybraną lokalizację w innym oknie lub karcie przeglądarki"; +App::$strings["Home, Voice"] = "Dom, głosowy"; +App::$strings["Home, Fax"] = "Dom, fax"; +App::$strings["Work, Voice"] = "Praca, głosowy"; +App::$strings["Work, Fax"] = "Praca, fax"; +App::$strings["View PDF"] = "Wyświetl PDF"; +App::$strings[" by "] = " przez "; +App::$strings[" on "] = " na "; +App::$strings["Embedded content"] = "Osadzone treści"; +App::$strings["Embedding disabled"] = "Osadzanie wyłączone"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Rozpoczętych:"; +App::$strings["Finishes:"] = "Zakończonych:"; +App::$strings["l F d, Y"] = "l F d, Y"; +App::$strings["Start:"] = "Rozpoczęto:"; +App::$strings["End:"] = "Zakończono:"; +App::$strings["Timezone"] = "Strefa czasowa"; +App::$strings["This event has been added to your calendar."] = "To wydarzenie zostało dodane do Twojego kalendarza."; +App::$strings["Not specified"] = "Nieokreślone"; +App::$strings["Needs Action"] = "Wymaga działania"; +App::$strings["Completed"] = "Zakończone"; +App::$strings["In Process"] = "W trakcie"; +App::$strings["Cancelled"] = "Usuniete"; +App::$strings["Birthday"] = "Urodziny"; +App::$strings["Age: "] = "Wiek: "; +App::$strings["YYYY-MM-DD or MM-DD"] = "RRRR-MM-DD lub MM-DD"; +App::$strings["never"] = "nigdy"; +App::$strings["less than a second ago"] = "mniej niż sekundę temu"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s temu"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "rok", + 1 => "lata", + 2 => "lat", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "miesiąc", + 1 => "miesiące", + 2 => "miesięcy", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "tydzień", + 1 => "tygodnie", + 2 => "tygodni", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dzień", + 1 => "dni", + 2 => "dni", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "godziny", + 1 => "godzin", + 2 => "godzin", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuta", + 1 => "minuty", + 2 => "minut", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "sekunda", + 1 => "sekundy", + 2 => "sekund", +); +App::$strings["%1\$s's birthday"] = "urodziny %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "%1\$s, wszystkiego najlepszego z okazji urodzin"; +App::$strings["(Unknown)"] = "(Nieznane)"; +App::$strings["Visible to anybody on the internet."] = "Widoczne dla każdego w internecie."; +App::$strings["Visible to you only."] = "Widoczne tylko dla Ciebie."; +App::$strings["Visible to anybody in this network."] = "Widoczne dla każdego w tej sieci."; +App::$strings["Visible to anybody authenticated."] = "Widoczne dla każdego uwierzytelnionego."; +App::$strings["Visible to anybody on %s."] = "Widoczne dla wszystkich na %s."; +App::$strings["Visible to all connections."] = "Widoczny dla wszystkich połączeń."; +App::$strings["Visible to approved connections."] = "Widoczny dla zatwierdzonych połączeń."; +App::$strings["Visible to specific connections."] = "Widoczny dla określonych połączeń."; +App::$strings["Privacy group is empty."] = "Grupa prywatności jest pusta."; +App::$strings["Privacy group: %s"] = "Grupa prywatności: %s"; +App::$strings["Connection not found."] = "Nie znaleziono połączenia."; +App::$strings["profile photo"] = "zdjęcie profilowe"; +App::$strings["[Edited %s]"] = "[Edytowane %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "Wpis"; +App::$strings["__ctx:edit_activity__ Comment"] = "Komentarz"; +App::$strings["Response from remote channel was incomplete."] = "Odpowiedź z kanału zdalnego była niekompletna."; +App::$strings["Premium channel - please visit:"] = "Kanał premium - odwiedź:"; +App::$strings["Channel was deleted and no longer exists."] = "Kanał został usunięty i już nie istnieje."; +App::$strings["Invalid data packet"] = "Nieprawidłowy pakiet danych"; +App::$strings["invalid target signature"] = "nieprawidłowy podpis docelowy"; +App::$strings["Image/photo"] = "Obraz/zdjęcie"; +App::$strings["Encrypted content"] = "Zaszyfrowana treść"; +App::$strings["Install %1\$s element %2\$s"] = "Zainstaluj element %1\$s %2\$s"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do zainstalowania go w tym serwisie."; +App::$strings["card"] = "karta"; +App::$strings["article"] = "artykuł"; +App::$strings["Click to open/close"] = "Kliknij, aby otworzyć/zamknąć"; +App::$strings["View article"] = "Wyświetl artykuł"; +App::$strings["View summary"] = "Wyświetl podsumowanie"; +App::$strings["$1 wrote:"] = "$1 napisał:"; +App::$strings["Follow"] = "Obserwuj"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s obserwujesz teraz %2\$s"; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; +App::$strings["GNU-Social Protocol App"] = "Aplikacja Protokół GNU-Social"; +App::$strings["GNU-Social Protocol"] = "GNU-Social Protocol"; +App::$strings["QR code"] = "Kod QR"; +App::$strings["QR Generator"] = "Generator QR"; +App::$strings["Enter some text"] = "Wprowadź jakiś tekst"; +App::$strings["Popular Channels"] = "Popularne kanały"; +App::$strings["Channels to auto connect"] = "Kanały do automatycznego podłączenia"; +App::$strings["Comma separated list"] = "Lista rozdzielana przecinkami"; +App::$strings["IRC Settings"] = "Ustawienia IRC"; +App::$strings["IRC settings saved."] = "Zapisano ustawienia IRC."; +App::$strings["IRC Chatroom"] = "Pokój rozmów IRC"; +App::$strings["Send email to all members"] = "Wyślij e-mail do wszystkich członków"; +App::$strings["No recipients found."] = "Nie znaleziono adresatów."; +App::$strings["%1\$d of %2\$d messages sent."] = "Wysłano %1\$d wiadomości z %2\$d zadysponowanych."; +App::$strings["Send email to all hub members."] = "Wyślij wiadomość e-mail do wszystkich członków serwisu."; +App::$strings["Message subject"] = "Temat wiadomości"; +App::$strings["Sender Email address"] = "Adres e-mail nadawcy"; +App::$strings["Test mode (only send to hub administrator)"] = "Tryb testowy (wysyłaj tylko do administratora serwisu)"; +App::$strings["Your Webbie:"] = "Twój Webbie:"; +App::$strings["Fontsize (px):"] = "Wielkość czcionki (px):"; +App::$strings["Link:"] = "Link:"; +App::$strings["Like us on Hubzilla"] = "Polub nas na Hubzilli"; +App::$strings["Embed:"] = "Osadzone:"; +App::$strings["Save Settings"] = "Zapisz ustawienia"; +App::$strings["text to include in all outgoing posts from this site"] = "tekst do umieszczania we wszystkich wpisach wychodzących z tej witryny"; +App::$strings["lonely"] = "samotny"; +App::$strings["drunk"] = "pijany"; +App::$strings["horny"] = "seksualnie podniecony"; +App::$strings["stoned"] = "zjarany"; +App::$strings["fucked up"] = "spieprzone"; +App::$strings["clusterfucked"] = "klasterfucked"; +App::$strings["crazy"] = "zwariowany"; +App::$strings["hurt"] = "ból"; +App::$strings["sleepy"] = "senny"; +App::$strings["grumpy"] = "gderliwy"; +App::$strings["high"] = "wysoki"; +App::$strings["semi-conscious"] = "półprzytomny"; +App::$strings["in love"] = "zakochany"; +App::$strings["in lust"] = "w pożądaniu"; +App::$strings["naked"] = "nagi"; +App::$strings["stinky"] = "śmierdzący"; +App::$strings["sweaty"] = "spocony"; +App::$strings["bleeding out"] = "wykrwawiać się"; +App::$strings["victorious"] = "zwycięski"; +App::$strings["defeated"] = "pokonany"; +App::$strings["envious"] = "zazdrosny"; +App::$strings["jealous"] = "zazdrosny"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych wizyt na stronie (rezygnacja)."; +App::$strings["Piwik Base URL"] = "Bazowy adres URL Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym ukośnikiem)"; +App::$strings["Site ID"] = "ID witryny"; +App::$strings["Show opt-out cookie link?"] = "Pokazać link do rezygnacji z pliku cookie?"; +App::$strings["Asynchronous tracking"] = "Śledzenie asynchroniczne"; +App::$strings["Enable frontend JavaScript error tracking"] = "Włącz śledzenie błędów JavaScript w interfejsie użytkownika"; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Ta funkcjonalność wymaga Piwik >= 2.2.0"; +App::$strings["Access Denied"] = "Dostęp zabroniony"; +App::$strings["Enable Community Moderation"] = "Włącz moderację społecznościową"; +App::$strings["Reputation automatically given to new members"] = "Reputacja przyznawana automatycznie nowym członkom"; +App::$strings["Reputation will never fall below this value"] = "Reputacja nigdy nie spadnie poniżej tej wartości"; +App::$strings["Minimum reputation before posting is allowed"] = "Dozwolona jest minimalna reputacja przed rozpoczęciem wpisów"; +App::$strings["Minimum reputation before commenting is allowed"] = "Dozwolona jest minimalna reputacja przed rozpoczęciem komentowania"; +App::$strings["Minimum reputation before a member is able to moderate other posts"] = "Minimalna reputacja, zanim członek będzie mógł moderować inne wpisy"; +App::$strings["Max ratio of moderator's reputation that can be added to/deducted from reputation of person being moderated"] = "Maksymalny współczynnik reputacji moderatora, który można dodać do reputacji moderowanej osoby lub od niej odjąć"; +App::$strings["Reputation \"cost\" to post"] = "\"Koszt\" reputacji dla wpisu"; +App::$strings["Reputation \"cost\" to comment"] = "\"Koszt\" reputacji dla komentarza"; +App::$strings["Reputation automatically recovers at this rate per hour until it reaches minimum_to_post"] = "Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie osiągnie minimum_to_post"; +App::$strings["When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this rate per hour"] = "Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na jest z taką szybkością na godzinę"; +App::$strings["Community Moderation Settings"] = "Ustawienia moderowania społecznościowego"; +App::$strings["Channel Reputation"] = "Reputacja kanału"; +App::$strings["An Error has occurred."] = "Wystąpił błąd."; +App::$strings["Upvote"] = "Głosuj za"; +App::$strings["Downvote"] = "Głosuj przeciw"; +App::$strings["Can moderate reputation on my channel."] = "Mogę moderować reputację na moim kanale."; +App::$strings["Errors encountered deleting database table "] = "Napotkano błędy podczas usuwania tabeli bazy danych "; +App::$strings["Submit Settings"] = "Prześlij ustawienia"; +App::$strings["Drop tables when uninstalling?"] = "Usunąć tabele podczas odinstalowywania?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele z bazy danych Rendezvous."; +App::$strings["Mapbox Access Token"] = "Token dostępu Mapbox"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap."; +App::$strings["Rendezvous"] = "Rendezvous"; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby zarejestrować nową tożsamość. Możesz użyć tej samej nazwy."; +App::$strings["Welcome to Rendezvous!"] = "Witamy w Rendezvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni będą mogli Cię zobaczyć na mapie."; +App::$strings["Let's meet here"] = "Spotkajmy się tutaj"; +App::$strings["New marker"] = "Nowy znacznik"; +App::$strings["Edit marker"] = "Edytuj znacznik"; +App::$strings["New identity"] = "Nowa tożsamość"; +App::$strings["Delete marker"] = "Usuń znacznik"; +App::$strings["Delete member"] = "Usuń członka"; +App::$strings["Edit proximity alert"] = "Edytuj alert zbliżeniowy"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby wyłączyć):"; +App::$strings["distance"] = "odległość"; +App::$strings["Proximity alert distance (meters)"] = "Odległość ostrzeżenia o bliskości (metry)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym promieniu od lokalizacji znacznika.

Wprowadź promień w metrach (0, aby wyłączyć):"; +App::$strings["Marker proximity alert"] = "Ostrzeżenie o bliskości znacznika"; +App::$strings["Reminder note"] = "Notatka przypominająca"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej odległości ..."; +App::$strings["Add new rendezvous"] = "Dodaj nowe spotkanie"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą wyświetlać lokalizacje innych członków, dodawać znaczniki do mapy lub udostępniać własne lokalizacje grupie."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Nie masz spotkania. Naciśnij przycisk powyżej, aby utworzyć spotkanie!"; +App::$strings["Skeleton App"] = "Aplikacja Szkielet"; +App::$strings["A skeleton for addons, you can copy/paste"] = "Szkielet dodatków, który można skopiować i wkleić"; +App::$strings["Some setting"] = "Jakieś ustawienie"; +App::$strings["A setting"] = "Ustawienie"; +App::$strings["Skeleton Settings"] = "Ustawienia Szkieletu"; +App::$strings["Post to Hubzilla"] = "Wyślij do kanału Hubzilli"; +App::$strings["Channel is required."] = "Wymagane jest podanie kanału."; +App::$strings["Hubzilla Crosspost Connector Settings saved."] = "Ustawienia Konektora Hubzilla zostały zapisane."; +App::$strings["Hubzilla Crosspost Connector App"] = "Aplikacja Konektor Hubzilla"; +App::$strings["Relay public postings to another Hubzilla channel"] = "Przekaż publiczne wpisy na inny kanał Hubzilla"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Domyślnie wysyłaj publiczne wpisy do kanału Hubzilla"; +App::$strings["Hubzilla API Path"] = "Ścieżka API Hubzilla"; +App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; +App::$strings["Hubzilla login name"] = "Nazwa logowania Hubzilla"; +App::$strings["Hubzilla channel name"] = "Nazwa kanału Hubzilla"; +App::$strings["Nickname"] = "Pseudonim"; +App::$strings["Hubzilla password"] = "Hasło Hubzilla"; +App::$strings["Hubzilla Crosspost Connector"] = "Konektor Hubzilla"; +App::$strings["TOTP Two-Step Verification"] = "Weryfikacja dwuetapowa TOTP"; +App::$strings["Enter the 2-step verification generated by your authenticator app:"] = "Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:"; +App::$strings["Success!"] = "Powodzenie!"; +App::$strings["Invalid code, please try again."] = "Nieprawidłowy kod, proszę spróbować ponownie."; +App::$strings["Too many invalid codes..."] = "Za dużo nieprawidłowych kodów ..."; +App::$strings["Verify"] = "Zweryfikuj"; +App::$strings["You haven't set a TOTP secret yet.\nPlease click the button below to generate one and register this site\nwith your preferred authenticator app."] = "Nie ustawiłeś jeszcze sekretu TOTP.\nKliknij przycisk poniżej, aby to wygenerować i zarejestrować witrynę\nw preferowanej aplikacji uwierzytelniającej."; +App::$strings["Your TOTP secret is"] = "Twój sekret TOTP to"; +App::$strings["Be sure to save it somewhere in case you lose or replace your mobile device.\nUse your mobile device to scan the QR code below to register this site\nwith your preferred authenticator app."] = "Zapisz go gdzieś na wypadek zgubienia lub wymiany urządzenia mobilnego.\nUżyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą witrynę\nw preferowanej aplikacji uwierzytelniającej."; +App::$strings["Test"] = "Test"; +App::$strings["Generate New Secret"] = "Generowanie nowego sekretu"; +App::$strings["Go"] = "Idź dalej"; +App::$strings["Enter your password"] = "Wprowadź swoje hasło"; +App::$strings["enter TOTP code from your device"] = "wprowadź kod TOTP z urządzenia"; +App::$strings["Pass!"] = "Przeszło!"; +App::$strings["Fail"] = "Błąd"; +App::$strings["Incorrect password, try again."] = "Nieprawidłowe hasło, spróbuj ponownie."; +App::$strings["Record your new TOTP secret and rescan the QR code above."] = "Zapisz swój nowy sekret TOTP i ponownie przeskanuj powyższy kod QR."; +App::$strings["TOTP Settings"] = "Ustawienia TOTP"; +App::$strings["Your account on %s will expire in a few days."] = "Twoje konto na %s wygaśnie za kilka dni."; +App::$strings["Your $Productname test account is about to expire."] = "Twoje konto testowe $Productname wkrótce wygaśnie."; +App::$strings["An account has been created for you."] = "Konto zostało dla Ciebie utworzone."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta jest wyłączone."; +App::$strings["DB Cleanup Failure"] = "Błąd czyszczenia bazy danych"; +App::$strings["[cart] Item Added"] = "[koszyk] Dodano element"; +App::$strings["Order already checked out."] = "Zamówienie już jest wyrejestrowane."; +App::$strings["Drop database tables when uninstalling."] = "Usuń tabele bazy danych podczas odinstalowywania."; +App::$strings["Cart Settings"] = "Ustawienia koszyka"; +App::$strings["Shop"] = "Sklep"; +App::$strings["Order Not Found"] = "Nie znaleziono zamówienia"; +App::$strings["Cart utilities for orders and payments"] = "Narzędzia koszyka do zamówień i płatności"; +App::$strings["You must be logged into the Grid to shop."] = "Aby robić zakupy, musisz być zalogowany do sieci."; +App::$strings["Order not found."] = "Nie znaleziono zamówienia."; +App::$strings["Access denied."] = "Dostęp zabroniony."; +App::$strings["No Order Found"] = "Nie znaleziono zamówienia"; +App::$strings["An unknown error has occurred Please start again."] = "Wystąpił nieznany błąd. Zacznij od nowa."; +App::$strings["Requirements not met."] = "Nie spełnia wymagań."; +App::$strings["Review your order and complete any needed requirements."] = "Przejrzyj swoje zamówienie i spełnij wszystkie wymagania."; +App::$strings["Invalid Payment Type. Please start again."] = "Nieprawidłowy typ płatności. Zacznij od nowa."; +App::$strings["Order not found"] = "Nie znaleziono zamówienia"; +App::$strings["Enable Order/Item Options"] = "Włącz opcję Zamówienie/Element"; +App::$strings["Label"] = "Etykieta"; +App::$strings["Instructions"] = "Instukcje"; +App::$strings["Enable Hubzilla Services Module"] = "Włącz moduł usług Hubzilla"; +App::$strings["New Sku"] = "Nowy SKU"; +App::$strings["Cannot save edits to locked item."] = "Nie można zapisać zmian w zablokowanym elemencie."; +App::$strings["SKU not found."] = "Nie znaleziono SKU."; +App::$strings["Invalid Activation Directive."] = "Nieprawidłowa dyrektywa aktywacyjna."; +App::$strings["Invalid Deactivation Directive."] = "Nieprawidłowa dyrektywa dezaktywacyjna."; +App::$strings["Add to this privacy group"] = "Dodaj do tej grupy prywatności"; +App::$strings["Set user service class"] = "Ustaw klasę usług użytkownika"; +App::$strings["You must be using a local account to purchase this service."] = "Aby kupić tę usługę, musisz korzystać z konta lokalnego."; +App::$strings["Changes Locked"] = "Zmiany zablokowane"; +App::$strings["Item available for purchase."] = "Element dostępny do zakupu."; +App::$strings["Price"] = "Cena"; +App::$strings["Photo URL"] = "Adres URL zdjęcia"; +App::$strings["Add buyer to privacy group"] = "Dodaj kupującego do grupy prywatności"; +App::$strings["Add buyer as connection"] = "Dodaj kupującego jako połączenie"; +App::$strings["Set Service Class"] = "Ustaw klasę usługi"; +App::$strings["Enable Subscription Management Module"] = "Włącz moduł zarządzania subskrypcjami"; +App::$strings["Cannot include subscription items with different terms in the same order."] = "Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej kolejności."; +App::$strings["Select Subscription to Edit"] = "Wybierz subskrypcję do edycji"; +App::$strings["Edit Subscriptions"] = "Edytuj subskrypcje"; +App::$strings["Subscription SKU"] = "Subskrypcja SKU"; +App::$strings["Catalog Description"] = "Opis katalogu"; +App::$strings["Subscription available for purchase."] = "Subskrypcja dostępna do zakupu."; +App::$strings["Maximum active subscriptions to this item per account."] = "Maksymalna liczba aktywnych subskrypcji tego elementu na konto."; +App::$strings["Subscription price."] = "Cena subskrypcji."; +App::$strings["Quantity"] = "Ilość"; +App::$strings["Term"] = "Termin"; +App::$strings["Enable Paypal Button Module (API-v2)"] = "Włącz moduł przycisków Paypal (API-v2)"; +App::$strings["Use Production Key"] = "Użyj klucza produkcyjnego"; +App::$strings["Paypal Sandbox Client Key"] = "Klucz klienta Paypal Sandbox"; +App::$strings["Paypal Sandbox Secret Key"] = "Tajny klucz Paypal Sandbox"; +App::$strings["Paypal Production Client Key"] = "Klucz klienta produkcyjny Paypal"; +App::$strings["Paypal Production Secret Key"] = "Tajny klucz produkcyjny Paypal"; +App::$strings["Paypal button payments are not enabled."] = "Płatności za pomocą przycisku PayPal nie są włączone."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz inną opcję płatności."; +App::$strings["Enable Paypal Button Module"] = "Włącz moduł przycisku Paypal"; +App::$strings["Enable Manual Cart Module"] = "Włącz moduł ręcznego koszyka"; +App::$strings["Access Denied."] = "Dostęp zabroniony."; +App::$strings["Invalid Item"] = "Zła pozycja"; +App::$strings["Error: order mismatch. Please try again."] = "Błąd: niezgodność zamówienia. Proszę spróbuj ponownie."; +App::$strings["Manual payments are not enabled."] = "Płatności ręczne nie są włączone."; +App::$strings["Finished"] = "Zakończone"; +App::$strings["Enable Test Catalog"] = "Włącz katalog testów"; +App::$strings["Enable Manual Payments"] = "Włącz płatności ręczne"; +App::$strings["Base Merchant Currency"] = "Podstawowa waluta sprzedawcy"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Napotkaliśmy problem podczas logowania za pomocą podanego przez Ciebie identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora."; +App::$strings["The error message was:"] = "Komunikat o błędzie brzmi:"; +App::$strings["First Name"] = "Imię"; +App::$strings["Last Name"] = "Nazwisko"; +App::$strings["Full Name"] = "Pełna nazwa"; +App::$strings["Profile Photo 16px"] = "Zdjęcie profilowe 16px"; +App::$strings["Profile Photo 32px"] = "Zdjęcie profilowe 32px"; +App::$strings["Profile Photo 48px"] = "Zdjęcie profilowe 48px"; +App::$strings["Profile Photo 64px"] = "Zdjęcie profilowe 64px"; +App::$strings["Profile Photo 80px"] = "Zdjęcie profilowe 80px"; +App::$strings["Profile Photo 128px"] = "Zdjęcie profilowe 128px"; +App::$strings["Birth Year"] = "Rok urodzenia"; +App::$strings["Birth Month"] = "Miesiąc urodzenia"; +App::$strings["Birth Day"] = "Dzień urodzenia"; +App::$strings["Birthdate"] = "Data urodzenia"; +App::$strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Brak identyfikatora."; +App::$strings["Hubzilla File Storage Import"] = "Import z magazynu plików Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu Hubzilla."; +App::$strings["Hubzilla Server base URL"] = "Bazowy adres URL serwera Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Od daty modyfikacji rrrr-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Do daty modyfikacji rrrr-mm-dd"; +App::$strings["Diaspora Protocol Settings updated."] = "Zaktualizowano ustawienia protokołu Diaspora."; +App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; +App::$strings["Diaspora Protocol App"] = "Aplikacja Protokół Diaspora"; +App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy"; +App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować lub aprobować Twoje publiczne wpisy"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Zapobiegaj przekierowywaniu hasztagów do innych witryn"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Podpisuj i przesyłaj dalej wpisy i komentarze bez podpisu Diaspory"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Obserwowane hasztagi (oddzielone przecinkami, nie dodawaj #)"; +App::$strings["Diaspora Protocol"] = "Protokół Diaspora"; +App::$strings["No username found in import file."] = "W pliku importu nie znaleziono nazwy użytkownika."; +App::$strings["%1\$s dislikes %2\$s's %3\$s"] = "%1\$s niepolubień %2\$s %3\$s"; +App::$strings["Please install the statistics addon to be able to configure a diaspora relay"] = "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory"; +App::$strings["Diaspora Relay Handle"] = "Uchwyt konektora Diaspory"; +App::$strings["Address of a diaspora relay. Example: relay@diasporarelay.tld"] = "Adres konektora diaspory. Przykład: relay@diasporarelay.tld"; +App::$strings["Diaspora relay could not be imported"] = "Nie można zaimportować konektora diaspory"; +App::$strings["Hubzilla Directory Stats"] = "Statystyki katalogowe Hubzilla"; +App::$strings["Total Hubs"] = "Razem"; +App::$strings["Hubzilla Hubs"] = "Portale (huby) Hubzilla"; +App::$strings["Friendica Hubs"] = "Portale (węzły) Friendica"; +App::$strings["Diaspora Pods"] = "Portale (pody) Diaspora"; +App::$strings["Hubzilla Channels"] = "Kanały Hubzilla"; +App::$strings["Friendica Channels"] = "Kanały Friendica"; +App::$strings["Diaspora Channels"] = "Kanały Diaspora"; +App::$strings["Aged 35 and above"] = "W wieku 35 lat i więcej"; +App::$strings["Aged 34 and under"] = "W wieku 34 lat i poniżej"; +App::$strings["Average Age"] = "Średni wiek"; +App::$strings["Known Chatrooms"] = "Znane czaty"; +App::$strings["Known Tags"] = "Znane tagi"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to również czatów,"; +App::$strings["Show Upload Limits"] = "Pokaż limity przesyłania"; +App::$strings["Hubzilla configured maximum size: "] = "Maksymalny rozmiar skonfigurowany w Hubzilli: "; +App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (musi być większe od upload_max_filesize): "; +App::$strings["Hide Aside App"] = "Aplikacja Hide Aside"; +App::$strings["Fade out aside areas after a while when using endless scroll"] = "Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania"; +App::$strings["Installed"] = "Zainstalowane"; +App::$strings["You're welcome."] = "Proszę bardzo."; +App::$strings["Ah shucks..."] = "O cholera ..."; +App::$strings["Don't mention it."] = "Nie wspominaj o tym."; +App::$strings["<blush>"] = "<rumieniec>"; +App::$strings["View Larger"] = "Zobacz większe"; +App::$strings["Tile Server URL"] = "Adres URL serwera kafelków rastrowych"; +App::$strings["A list of public tile servers"] = "Lista publicznych serwerów kafelków"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "Adres URL serwera Nominatim (odwrotne geokodowanie)"; +App::$strings["A list of Nominatim servers"] = "Lista serwerów Nominatim"; +App::$strings["Default zoom"] = "Powiększenie domyślne"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od serwera kafelków)"; +App::$strings["Include marker on map"] = "Uwzględnij znacznik na mapie"; +App::$strings["Include a marker on the map."] = "Umieść znacznik na tej mapie."; +App::$strings["Livejournal Crosspost Connector App"] = "Aplikacja Konektor Wpisów do Livejournal"; +App::$strings["Relay public posts to Livejournal"] = "Przekazuj publiczne wpisy do Livejournal"; +App::$strings["Livejournal username"] = "Nazwa użytkownika w Livejournal"; +App::$strings["Livejournal password"] = "Hasło do Livejournal"; +App::$strings["Post to Livejournal by default"] = "Domyślnie wysyłaj do Livejournal"; +App::$strings["Send wall-to-wall posts to Livejournal"] = "Wysyłaj \"rozwinięte\" wpisy do Livejournal"; +App::$strings["Add link to original post"] = "Dodaj odnośnik do oryginalnego wpisu"; +App::$strings["Livejournal Crosspost Connector"] = "Konektor Livejournal"; +App::$strings["Post to Livejournal"] = "Publikuj w Livejournal"; +App::$strings["Posted by"] = "Wysłane przez"; +App::$strings["Workflow user."] = "Przepływ pracy użytkownika."; +App::$strings["This channel"] = "Ten kanał"; +App::$strings["Workflow"] = "Przepływ pracy"; +App::$strings["No Workflows Available"] = "Żaden przepływ nie jest dostępny"; +App::$strings["Add item to which workflow"] = "Dodaj element do przepływu pracy"; +App::$strings["Create Workflow Item"] = "Utwórz element przepływu pracy"; +App::$strings["Link"] = "Link"; +App::$strings["Web link."] = "Link do strony internetowej."; +App::$strings["Brief description or title"] = "Krótki opis lub tytuł"; +App::$strings["Notes and Info"] = "Uwagi i informacje"; +App::$strings["Body"] = "Ciało"; +App::$strings["Workflow Settings"] = "Ustawienia przepływu pracy"; +App::$strings["Jabber BOSH host"] = "Host Jabber BOSH"; +App::$strings["Use central userbase"] = "Użyj centralnej bazy użytkowników"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Jeśli jest włączone, członkowie będą automatycznie logować się do serwera ejabberd, który musi być zainstalowany na tym komputerze z zsynchronizowanymi danymi uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”."; +App::$strings["XMPP settings updated."] = "Zaktualizowano ustawienia XMPP."; +App::$strings["XMPP App"] = "Aplikacja XMPP"; +App::$strings["Embedded XMPP (Jabber) client"] = "Osadzony klient XMPP (Jabber)"; +App::$strings["Individual credentials"] = "Indywidualne poświadczenia"; +App::$strings["Jabber BOSH server"] = "Serwer Jabber BOSH"; +App::$strings["XMPP Settings"] = "Ustawienia XMPP"; +App::$strings["Superblock App"] = "Aplikacja Superblock"; +App::$strings["Block channels"] = "Blokuj kanał"; +App::$strings["superblock settings updated"] = "zaktualizowano ustawienia superbloku"; +App::$strings["Currently blocked"] = "Obecnie zablokowane"; +App::$strings["No channels currently blocked"] = "Obecnie żadne kanały nie są zablokowane"; +App::$strings["Block Completely"] = "Zablokuj całkowicie"; +App::$strings["Random Planet App"] = "Aplikacja Losowa Planeta"; +App::$strings["Set a random planet from the Star Wars Empire as your location when posting"] = "Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych Wojen"; +App::$strings["Possible adult content"] = "Możliwe treści dla dorosłych"; +App::$strings["%s - view"] = "%s - widok"; +App::$strings["NSFW Settings saved."] = "Zapisano ustawienia NSFW."; +App::$strings["NSFW App"] = "Aplikacja NSFW"; +App::$strings["Collapse content that contains predefined words"] = "Zwija treść zawierającą określone słowa"; +App::$strings["This app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie treści zawierające te słowa kluczowe, aby nie były wyświetlane w nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich treści zawierających nagość tagiem #NSFW. Ten filtr może również pasować do dowolnego innego określonego słowa lub tekstu, dzięki czemu może być używany jako filtr treści ogólnego przeznaczenia."; +App::$strings["Comma separated list of keywords to hide"] = "Lista słów kluczowych rozdzielona przecinkami"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Słowo, /wyrażenie regularne/, lang=xx, lang!=xx"; +App::$strings["NSFW"] = "NSFW"; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Tic-Tac-Toe"; +App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +App::$strings["New game"] = "Nowa gra"; +App::$strings["New game with handicap"] = "Nowa gra z handicapem"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. "; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym poziomie, a także w górę, w dół i po przekątnej na różnych poziomach."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz zajmujący to pole często ma nieuczciwą przewagę."; +App::$strings["You go first..."] = "Ty pierwszy ..."; +App::$strings["I'm going first this time..."] = "Tym razem idę pierwszy ..."; +App::$strings["You won!"] = "Wygrałeś!"; +App::$strings["\"Cat\" game!"] = "Gra \"Kot\"!"; +App::$strings["I won!"] = "Wygrałem!"; +App::$strings["Photo Cache settings saved."] = "Zapisano ustawienia pamięci podręcznej zdjęć."; +App::$strings["Photo Cache addon saves a copy of images from external sites locally to increase your anonymity in the web."] = "Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby zwiększyć Twoją anonimowość w sieci."; +App::$strings["Photo Cache App"] = "Aplikacja Bufor zdjęć"; +App::$strings["Minimal photo size for caching"] = "Minimalny rozmiar zdjęcia do buforowania"; +App::$strings["In pixels. From 1 up to 1024, 0 will be replaced with system default."] = "W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami systemowymi."; +App::$strings["Photo Cache"] = "Bufor zdjęć"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Szukaj %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = "Szukaj w \$Projectname"; +App::$strings["Libertree Crosspost Connector Settings saved."] = "Zapisano ustawienia Libertree Crosspost Connector."; +App::$strings["Libertree Crosspost Connector App"] = "Konektora Wpisów do Libertree"; +App::$strings["Relay public posts to Libertree"] = "Przekazuj publiczne posty do Libertree"; +App::$strings["Libertree API token"] = "Token API Libertree"; +App::$strings["Libertree site URL"] = "Adres URL witrny Libertree"; +App::$strings["Post to Libertree by default"] = "Domyślnie publikuj w Libertree"; +App::$strings["Libertree Crosspost Connector"] = "Libertree Crosspost Connector"; +App::$strings["Post to Libertree"] = "Publikuj w Libertree"; +App::$strings["Flag Adult Photos"] = "Oznaczanie zdjęć dla dorosłych"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w domyślnym widoku albumu"; +App::$strings["Post to GNU social"] = "Publikuj w serwisie społecznościowym GNU"; +App::$strings["API URL"] = "Adres URL API"; +App::$strings["Application name"] = "Nazwa aplikacji"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API jest nieprawidłowy."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce."; +App::$strings["GNU social settings updated."] = "Ustawienia społecznościowe GNU zostały zaktualizowane."; +App::$strings["Relay public postings to a connected GNU social account (formerly StatusNet)"] = "Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU (dawniej StatusNet)"; +App::$strings["Globally Available GNU social OAuthKeys"] = "Globalnie dostępne klucze OAuthKey społecznościowe GNU"; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń.
Jeśli nie możesz połączyć się z inną instancją społecznościową GNU (patrz poniżej)."; +App::$strings["Provide your own OAuth Credentials"] = "Podaj własne dane logowania OAuth"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie społecznościowym GNU, skopiuj tutaj parę kluczy klienta i wprowadź podstawowy katalog główny API.
Przed zarejestrowaniem własnej pary kluczy OAuth zapytaj administratora, czy istnieje już para kluczy dla tej instalacji Hubzilli w Twojej ulubionej instalacji społecznościowej GNU."; +App::$strings["OAuth Consumer Key"] = "Klucz klienta OAuth"; +App::$strings["OAuth Consumer Secret"] = "Tajny klucz klienta OAuth"; +App::$strings["Base API Path"] = "Podstawowa ścieżka API"; +App::$strings["Remember the trailing /"] = "Zapamiętaj końcowy ukośnik /"; +App::$strings["GNU social application name"] = "Nazwa aplikacji społecznościowej GNU"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje publiczne wpisy będą publikowane w społecznościach GNU."; +App::$strings["Log in with GNU social"] = "Zaloguj się za pomocą serwisu społecznościowego GNU"; +App::$strings["Copy the security code from GNU social here"] = "Skopiuj tutaj kod bezpieczeństwa z GNU Social"; +App::$strings["Cancel Connection Process"] = "Anuluj proces łączenia"; +App::$strings["Current GNU social API is"] = "Obecne API społecznościowe GNU to"; +App::$strings["Cancel GNU social Connection"] = "Anuluj połączenie społecznościowe GNU"; +App::$strings["Currently connected to: "] = "Obecnie połączony z: "; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik (Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, będzie kierował odwiedzającego na pustą stronę z informacją dla odwiedzającego, że dostęp do Twojego profilu został ograniczony."; +App::$strings["Post to GNU social by default"] = "Wysyłaj domyślnie do społeczności GNU"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na powiązane konto społecznościowe GNU"; +App::$strings["Clear OAuth configuration"] = "Wyczyść konfigurację OAuth"; +App::$strings["GNU-Social Crosspost Connector"] = "GNU-Social Crosspost Connector"; +App::$strings["Who likes me?"] = "Kto mnie lubi?"; +App::$strings["ActivityPub Protocol Settings updated."] = "Zaktualizowano ustawienia ActivityPub Protocol."; +App::$strings["The activitypub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów."; +App::$strings["Activitypub Protocol App"] = "Aplikacja Protokół Activitypub"; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Dostarcz do odbiorców ActivityPub w grupach prywatności"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej grupy prywatności"; +App::$strings["Send multi-media HTML articles"] = "Wysyłaj multimedialne artykuły HTML"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Nieobsługiwane przez niektóre usługi mikroblogów, takie jak Mastodon"; +App::$strings["Activitypub Protocol"] = "Activitypub Protocol"; +App::$strings["Post to Insane Journal"] = "Publikuj w Insane Journal"; +App::$strings["Insane Journal Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Insane Journal."; +App::$strings["Insane Journal Crosspost Connector App"] = "Aplikacja Konektor Insane Journal"; +App::$strings["Relay public postings to Insane Journal"] = "Przekaż publiczne wpisy do Insane Journal"; +App::$strings["InsaneJournal username"] = "Nazwa użytkownika InsaneJournal"; +App::$strings["InsaneJournal password"] = "Hasło InsaneJournal"; +App::$strings["Post to InsaneJournal by default"] = "Domyślnie publikuj w InsaneJournal"; +App::$strings["Insane Journal Crosspost Connector"] = "Konektor Insane Journal"; +App::$strings["Max queueworker threads"] = "Maksymalna liczba wątków w kolejce"; +App::$strings["Minimum 4, default 4"] = "Minimum 4, domyślnie 4"; +App::$strings["Assume workers dead after"] = "Załóż, że workery wygasają po"; +App::$strings["Minimum 120, default 300 seconds"] = "Minimum 120, domyślnie 300 sekund"; +App::$strings["Pause before starting next task"] = "Zatrzymaj się przed rozpoczęciem następnego zadania"; +App::$strings["Minimum 100, default 100 microseconds"] = "Minimum 100, domyślnie 100 mikrosekund"; +App::$strings["Queueworker Settings"] = "Ustawienia Queueworkera"; +App::$strings["Not allowed."] = "Niedozwolone."; +App::$strings["generic profile image"] = "ogólne zdjęcie profilowe"; +App::$strings["random geometric pattern"] = "losowy wzór geometryczny"; +App::$strings["monster face"] = "twarz potwora"; +App::$strings["computer generated face"] = "wygenerowana komputerowo twarz"; +App::$strings["retro arcade style face"] = "twarz w stylu retro arcade"; +App::$strings["Hub default profile photo"] = "Domyślne zdjęcie profilowe serwisu"; +App::$strings["Information"] = "Informacje"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara."; +App::$strings["Default avatar image"] = "Domyślny obraz awatara"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. Zobacz README"; +App::$strings["Rating of images"] = "Ocena zdjęć"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Wybierz odpowiednią ocenę awatara dla swojej witryny. Zobacz README"; +App::$strings["Gravatar settings updated."] = "Zaktualizowano ustawienia Gravatara."; +App::$strings["Network error"] = "Błąd sieci"; +App::$strings["API error"] = "Błąd API"; +App::$strings["Unknown issue"] = "Nieznany problem"; +App::$strings["Unable to login using email address "] = "Nie można zalogować się przy użyciu adresu e-mail "; +App::$strings["Sign in to Hubzilla using a social account"] = "Zaloguj się do Hubzilli za pomocą konta społecznościowego"; +App::$strings["Social Authentication using your social media account"] = "Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych"; +App::$strings["This app enables one or more social provider sign-in buttons on the login page."] = "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego przycisku logowania dostawcy usług społecznościowych."; +App::$strings["Add an identity provider"] = "Dodaj dostawcę tożsamości"; +App::$strings["Enable "] = "Włącz "; +App::$strings["Key"] = "Klucz"; +App::$strings["Word"] = "Słowo"; +App::$strings["Secret"] = "Sekret"; +App::$strings["Add a custom provider"] = "Dodaj własnego dostawcę"; +App::$strings["Remove an identity provider"] = "Usuń dostawcę tożsamości"; +App::$strings["Social authentication"] = "Uwierzytelnianie społecznościowe"; +App::$strings["Error while saving provider settings"] = "Błąd podczas zapisywania ustawień dostawcy"; +App::$strings["Custom provider already exists"] = "Własny dostawca już istnieje"; +App::$strings["Social authentication settings saved."] = "Zapisano ustawienia uwierzytelniania społecznościowego."; +App::$strings["Send your identity to all websites"] = "Wyślij swoją tożsamość do wszystkich witryn internetowych"; +App::$strings["Sendzid App"] = "Aplikacja Sendzid"; +App::$strings["Send ZID"] = "Wyślij ZID"; +App::$strings["Photos imported"] = "Zdjęcia zaimportowane"; +App::$strings["Redmatrix Photo Album Import"] = "Import albumu fotograficznego Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego kanału."; +App::$strings["Redmatrix Server base URL"] = "Podstawowy adres URL serwera Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Nazwa użytkownika logowania w Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Hasło logowania do Redmatrix"; +App::$strings["Import just this album"] = "Zaimportuj tylko ten album"; +App::$strings["Leave blank to import all albums"] = "Pozostaw puste, aby zaimportować wszystkie albumy"; +App::$strings["Maximum count to import"] = "Maksymalna liczba albumów do zaimportowania"; +App::$strings["0 or blank to import all available"] = "0 lub puste, aby zaimportować wszystkie dostępne"; +App::$strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera."; +App::$strings["Twitter Crosspost Connector App"] = "Aplikacja Twitter Crosspost Connector"; +App::$strings["Relay public posts to Twitter"] = "Przekazuj publiczne wpisy na Twitter"; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z administratorem witryny."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane tylko Twoje publiczne wpisy."; +App::$strings["Log in with Twitter"] = "Zaloguj się za pomocą Twittera"; +App::$strings["Copy the PIN from Twitter here"] = "Skopiuj tutaj PIN z Twittera"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = " Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj szczegóły swojego profilu przed nieznanymi widzami?) ten link, potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, będzie prowadził odwiedzającego do pustej strony informującej gościa, że dostęp do Twojego profilu został ograniczony."; +App::$strings["Twitter post length"] = "Długość wpisu na Twitterze"; +App::$strings["Maximum tweet length"] = "Maksymalna długość tweeta"; +App::$strings["Send public postings to Twitter by default"] = "Domyślnie wysyłaj publiczne wpisy na Twitter"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane na powiązanym koncie Twittera"; +App::$strings["Twitter Crosspost Connector"] = "Twitter Crosspost Connector"; +App::$strings["Post to Twitter"] = "Opublikuj na Twitterze"; +App::$strings["Project Servers and Resources"] = "Serwery projektów i zasoby"; +App::$strings["Project Creator and Tech Lead"] = "Twórca projektu i kierownik techniczny"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, którzy poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za usługi, którymi dzielą się z innymi."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych - Ty tak )."; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości internetowej i prywatności."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także pomagają nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju."; +App::$strings["Donate"] = "Wspomóż"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową darowizną"; +App::$strings["Donate Now"] = "Wpłać teraz"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "lub zostań sponsorem projektu (tylko Projekt Hubzilla)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej liście sponsorów"; +App::$strings["Sponsor"] = "Sponsor"; +App::$strings["Special thanks to: "] = "Specjalne podziękowania dla: "; +App::$strings["Dreamwidth Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Dreamwidth."; +App::$strings["Dreamwidth Crosspost Connector App"] = "Aplikacja Konektor Dreamwidth"; +App::$strings["Relay public posts to Dreamwidth"] = "Przekazuj publiczne wpisy do Dreamwidth"; +App::$strings["Dreamwidth username"] = "Nazwa użytkownika Dreamwidth"; +App::$strings["Dreamwidth password"] = "Hasło Dreamwidth"; +App::$strings["Post to Dreamwidth by default"] = "Domyślnie publikuj na Dreamwidth"; +App::$strings["Link description (default:"] = "Opis odnośnika (domyślnie:"; +App::$strings["Dreamwidth Crosspost Connector"] = "Konektor Dreamwidth"; +App::$strings["Post to Dreamwidth"] = "Publikuj na Dreamwidth"; +App::$strings["nofed Settings saved."] = "nofed - zapisano ustawienie."; +App::$strings["No Federation App"] = "Aplikacja Bez Federalizacji"; +App::$strings["Prevent posting from being federated to anybody. It will exist only on your channel page."] = "Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na stronie Twojego kanału."; +App::$strings["Federate posts by default"] = "Domyślnie, wpisy federacyjne"; +App::$strings["No Federation"] = "Brak Federalizacji"; +App::$strings["Federate"] = "Federalizacja"; +App::$strings["WYSIWYG status editor"] = "Edytor aplikacji WYSIWYG Status"; +App::$strings["WYSIWYG Status App"] = "Aplikacja WYSIWYG Status"; +App::$strings["WYSIWYG Status"] = "WYSIWYG Status"; +App::$strings["No server specified"] = "Nie określono serwera"; +App::$strings["Posts imported"] = "Zaimportowano wpisy"; +App::$strings["Files imported"] = "Zaimportowano pliki"; +App::$strings["This addon app copies existing content and file storage to a cloned/copied channel. Once the app is installed, visit the newly installed app. This will allow you to set the location of your original channel and an optional date range of files/conversations to copy."] = "Ten dodatek kopiuje istniejące treści i magazyn plików do sklonowanego lub skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego zakresu dat plików lub konwersacji do skopiowania."; +App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = "Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli masz dużo wpisów lun plików."; +App::$strings["Include posts"] = "Dołącz wpisy"; +App::$strings["Conversations, Articles, Cards, and other posted content"] = "Rozmowy, artykuły, karty i inne opublikowane treści"; +App::$strings["Include files"] = "Dołącz pliki"; +App::$strings["Files, Photos and other cloud storage"] = "Pliki, zdjęcia i inne przechowywane w chmurze rzeczy"; +App::$strings["Original Server base URL"] = "Oryginalny podstawowy adres URL serwera"; +App::$strings["Your channel has been upgraded to \$Projectname version"] = "Twój kanał został uaktualniony do wersji \$Projectname"; +App::$strings["Please have a look at the"] = "Proszę spojrzeć na"; +App::$strings["git history"] = "historia repozytorium Git"; +App::$strings["change log"] = "dziennik zmian"; +App::$strings["for further info."] = "po dalsze informacje."; +App::$strings["Upgrade Info"] = "Informacja o aktualizacji"; +App::$strings["Do not show this again"] = "Nie pokazuj tego ponownie"; +App::$strings["pageheader Settings saved."] = "pageheader - zapisano ustawienie."; +App::$strings["Page Header App"] = "Aplikacja Nagłówek Strony"; +App::$strings["Inserts a page header"] = "Wstawia nagłówek strony"; +App::$strings["Message to display on every page on this server"] = "Wiadomość do wyświetlenia na każdej stronie na tym serwerze"; +App::$strings["Page Header"] = "Nagłówek Strony"; +App::$strings["Who viewed my channel/profile"] = "Kto oglądał mój kanał lub profil"; +App::$strings["Recent Channel/Profile Viewers"] = "Ostatnio wyświetlający mój kanał lub profil"; +App::$strings["No entries."] = "Brak wpisów."; +App::$strings["Messages"] = "Wiadomości"; +App::$strings["message"] = "wiadomość"; +App::$strings["Message recalled."] = "Wiadomość przywołana."; +App::$strings["Conversation removed."] = "Rozmowa został usunięty."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Wygasa YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Żądanego kanału nie ma w tej sieci"; +App::$strings["Send Private Message"] = "Wyślij prywatną wiadomość"; +App::$strings["To:"] = "Do:"; +App::$strings["Attach file"] = "Dołącz plik"; +App::$strings["Send"] = "Wyślij"; +App::$strings["Delete message"] = "Usuń wiadomość"; +App::$strings["Delivery report"] = "Raport dostawy"; +App::$strings["Recall message"] = "Odwołaj wiadomość"; +App::$strings["Message has been recalled."] = "Wiadomość została odwołana."; +App::$strings["Delete Conversation"] = "Usuń rozmowę"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony profilu nadawcy."; +App::$strings["Send Reply"] = "Wyślij odpowiedź"; +App::$strings["Your message for %s (%s):"] = "Twoja wiadomość dla %s (%s):"; +App::$strings["Unable to lookup recipient."] = "Nie można znaleźć adresata."; +App::$strings["Unable to communicate with requested channel."] = "Nie można skomunikować się z żądanym kanałem."; +App::$strings["Cannot verify requested channel."] = "Nie można zweryfikować żądanego kanału."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie powiodło się."; +App::$strings["System defaults:"] = "Domyślne wartości systemowe:"; +App::$strings["Preferred Clipart IDs"] = "Identyfikatory preferowanych clipartów"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Lista identyfikatorów preferowanych clipartów."; +App::$strings["Default Search Term"] = "Domyślna fraza wyszukiwania"; +App::$strings["The default search term. These will be shown second."] = "Domyślna fraza wyszukiwania. Będzie ona wyświetlana jako druga."; +App::$strings["Return After"] = "Wróć po"; +App::$strings["Page to load after image selection."] = "Strona do załadowania po wybraniu obrazu."; +App::$strings["Profile List"] = "Lista profili"; +App::$strings["Order of Preferred"] = "Kolejność preferowanych"; +App::$strings["Sort order of preferred clipart ids."] = "Sortuj preferowane identyfikatory clipart."; +App::$strings["Newest first"] = "Od najnowszych"; +App::$strings["As entered"] = "Jak wprowadzono"; +App::$strings["Order of other"] = "Kolejność innych"; +App::$strings["Sort order of other clipart ids."] = "Kolejność sortowania innych identyfikatorów clipartów."; +App::$strings["Most downloaded first"] = "Najczęściej pobierane jako pierwsze"; +App::$strings["Most liked first"] = "Najbardziej lubiane jako pierwsze"; +App::$strings["Preferred IDs Message"] = "Komunikat o preferowanych identyfikatorach"; +App::$strings["Message to display above preferred results."] = "Wiadomość do wyświetlenia powyżej preferowanych wyników."; +App::$strings["Uploaded by: "] = "Przesłane przez: "; +App::$strings["Drawn by: "] = "Narysowane przez: "; +App::$strings["Use this image"] = "Użyj tego obrazu"; +App::$strings["Or select from a free OpenClipart.org image:"] = "Lub wybierz bezpłatny obraz z OpenClipart.org:"; +App::$strings["Search Term"] = "Fraza wyszukiwania"; +App::$strings["Unknown error. Please try again later."] = "Nieznany błąd. Spróbuj ponownie później."; +App::$strings["Profile photo updated successfully."] = "Zdjęcie profilowe zostało pomyślnie zaktualizowane."; +App::$strings["Gallery"] = "Galeria"; +App::$strings["Photo Gallery"] = "Galeria zdjęć"; +App::$strings["Gallery App"] = "Aplikacja Galeria"; +App::$strings["A simple gallery for your photo albums"] = "Prosta galeria dla albumów ze zdjęciami"; +App::$strings["Smileybutton App"] = "Aplikacja Smileybutton"; +App::$strings["Adds a smileybutton to the jot editor"] = "Dodaje przycisk emotikonów do edytora jot"; +App::$strings["Hide the button and show the smilies directly."] = "Ukryj przycisk i bezpośrednio wyświetlaj emotikony."; +App::$strings["Smileybutton Settings"] = "Ustawienia Smileybutton"; +App::$strings["Post to Friendica"] = "Opublikuj w sieci Friendica"; +App::$strings["Friendica Crosspost Connector Settings saved."] = "Zapisano ustawienia Konektora Friendica."; +App::$strings["Friendica Crosspost Connector App"] = "Aplikacja Konektor Friendica"; +App::$strings["Relay public postings to a connected Friendica account"] = "Przekazywanie publicznych wpisów do połączonego konta Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Domyślnie wysyłaj publiczne wpisy na kanał Hubzilla"; +App::$strings["Friendica API Path"] = "Ścieżka API Friendica"; +App::$strings["Friendica login name"] = "Nazwa logowania w Friendica"; +App::$strings["Friendica password"] = "Hasło Friendica"; +App::$strings["Friendica Crosspost Connector"] = "Konektor Friendica"; +App::$strings["Logfile archive directory"] = "Katalog archiwum plików dziennika zdarzeń"; +App::$strings["Directory to store rotated logs"] = "Katalog do przechowywania rotowanych dzienników zdarzeń"; +App::$strings["Logfile size in bytes before rotating"] = "Rozmiar pliku dziennika w bajtach przed dokonaniem odnowienia"; +App::$strings["Number of logfiles to retain"] = "Liczba plików dziennika do przechowania"; +App::$strings["Post to WordPress"] = "Publikowanie w WordPress"; +App::$strings["Wordpress Settings saved."] = "Zapisano ustawienia Wordpress."; +App::$strings["Wordpress Post App"] = "Aplikacja Publikowanie w Wordpress"; +App::$strings["Post to WordPress or anything else which uses the wordpress XMLRPC API"] = "Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC WordPress"; +App::$strings["WordPress username"] = "Nazwa użytkownika WordPress"; +App::$strings["WordPress password"] = "Hasło WordPress"; +App::$strings["WordPress API URL"] = "Adres URL API WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Zwykle https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = "Identyfikator blogu WordPress"; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie pozostaw puste"; +App::$strings["Post to WordPress by default"] = "Domyślnie publikuj na WordPress"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Przekazywanie komentarzy (wymaga wtyczki hubzilla_wp)"; +App::$strings["Wordpress Post"] = "Publikowanie w Wordpress"; +App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Zezwalaj na magiczne uwierzytelnianie tylko w serwisach internetowych Twoich bezpośrednich połączeń"; +App::$strings["Authchoose App"] = "Aplikacja Magiczne uwierzytelnianie"; +App::$strings["Authchoose"] = "Magiczne uwierzytelnianie"; +App::$strings["bitchslap"] = "bitchslap"; +App::$strings["bitchslapped"] = "bitchslapped"; +App::$strings["shag"] = "shag"; +App::$strings["shagged"] = "shagged"; +App::$strings["patent"] = "patent"; +App::$strings["patented"] = "opatentowany"; +App::$strings["hug"] = "przytulić"; +App::$strings["hugged"] = "przytulony"; +App::$strings["murder"] = "zamordować"; +App::$strings["murdered"] = "zamordowany"; +App::$strings["worship"] = "uwielbiać"; +App::$strings["worshipped"] = "uwielbiany"; +App::$strings["kiss"] = "pocałować"; +App::$strings["kissed"] = "pocałowany"; +App::$strings["tempt"] = "kusić"; +App::$strings["tempted"] = "skuszony"; +App::$strings["raise eyebrows at"] = "unieść brwi"; +App::$strings["raised their eyebrows at"] = "uniósł brwi"; +App::$strings["insult"] = "znieważyć"; +App::$strings["insulted"] = "znieważony"; +App::$strings["praise"] = "pochwalić"; +App::$strings["praised"] = "pochwalony"; +App::$strings["be dubious of"] = "mieć wątpliwości"; +App::$strings["was dubious of"] = "zwątpiony"; +App::$strings["eat"] = "zjeść"; +App::$strings["ate"] = "zjedli"; +App::$strings["giggle and fawn at"] = "chichotać i płakać ze śmiechu"; +App::$strings["giggled and fawned at"] = "zchichotany i zapłakany od śmiechu"; +App::$strings["doubt"] = "wątpić"; +App::$strings["doubted"] = "zwątpił"; +App::$strings["glare"] = "piorunujące spojrzenie"; +App::$strings["glared at"] = "obrzucił spojrzeniem"; +App::$strings["fuck"] = "pierdolić"; +App::$strings["fucked"] = "przejebane"; +App::$strings["bonk"] = "rżnąć"; +App::$strings["bonked"] = "zerżnięty"; +App::$strings["declare undying love for"] = "deklaruj wieczną miłość"; +App::$strings["declared undying love for"] = "zadeklarował wieczną miłość"; +App::$strings["New registration"] = "Nowa rejestracja"; +App::$strings["Message sent to %s. New account registration: %s"] = "Wiadomość wysłana do%s. Rejestracja nowego konta: %s"; +App::$strings["Pump.io Settings saved."] = "Ustawienia Pump.io zostały zapisane."; +App::$strings["Pump.io Crosspost Connector App"] = "Aplikacja Pump.io Crosspost Connector"; +App::$strings["Relay public posts to pump.io"] = "Przekazuj publiczne wpisy do Pump.io"; +App::$strings["Pump.io servername"] = "Nazwa serwera Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Bez \"http: //\" lub \"https: //\""; +App::$strings["Pump.io username"] = "Nazwa użytkownika Pump.io"; +App::$strings["Without the servername"] = "Bez nazwy serwera"; +App::$strings["You are not authenticated to pumpio"] = "Nie jesteś uwierzytelniony w pumpio"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "(Ponownie) Uwierzytelnij swoje połączenie pump.io"; +App::$strings["Post to pump.io by default"] = "Publikuj domyślnie w pump.io"; +App::$strings["Should posts be public"] = "Wpisy powinny być publiczne"; +App::$strings["Mirror all public posts"] = "Powielaj wszystkie wpisy publiczne"; +App::$strings["Pump.io Crosspost Connector"] = "Pump.io Crosspost Connector"; +App::$strings["You are now authenticated to pumpio."] = "Jesteś teraz uwierzytelniony w pumpio."; +App::$strings["return to the featured settings page"] = "wróć do polecanej strony ustawień"; +App::$strings["Post to Pump.io"] = "Opublikuj na Pump.io"; +App::$strings["NSA Bait App"] = "Aplikacja NSA Bait"; +App::$strings["Make yourself a political target"] = "Stań się celem politycznym"; +App::$strings["Add some colour to tag clouds"] = "Dodaj jakiś kolor do oznaczania chmur"; +App::$strings["Rainbow Tag App"] = "Aplikacja Rainbow Tag"; +App::$strings["Rainbow Tag"] = "Rainbow Tag"; +App::$strings["Send test email"] = "Wyślij testową wiadomość e-mail"; +App::$strings["Mail sent."] = "Mail wysłany."; +App::$strings["Sending of mail failed."] = "Wysyłanie poczty nie powiodło się."; +App::$strings["Mail Test"] = "Test poczty"; +App::$strings["Redmatrix File Storage Import"] = "Import magazyn plików Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału."; +App::$strings["Use markdown for editing posts"] = "Użyj markdown do edycji wpisów"; +App::$strings["Fuzzloc Settings updated."] = "Zaktualizowano ustawienia Fuzzloc."; +App::$strings["Fuzzy Location App"] = "Aplikacja Zamazywanie Lokalizacji"; +App::$strings["Blur your precise location if your channel uses browser location mapping"] = "Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji w przeglądarce"; +App::$strings["Minimum offset in meters"] = "Minimalne przesunięcie w metrach"; +App::$strings["Maximum offset in meters"] = "Maksymalne przesunięcie w metrach"; +App::$strings["Fuzzy Location"] = "Zamazywanie Lokalizacji"; +App::$strings["Startpage App"] = "Aplikacja Strona początkowa"; +App::$strings["Set a preferred page to load on login from home page"] = "Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej"; +App::$strings["Page to load after login"] = "Strona do załadowania po zalogowaniu"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja prywatności), "kanał" lub "powiadomienie/system" (pozostaw puste dla domyślnej strony sieci."; +App::$strings["Startpage"] = "Strona początkowa"; +App::$strings["Focus (Hubzilla default)"] = "Fokus (domyślny w Hubzilla)"; +App::$strings["Theme settings"] = "Ustawienia motywu"; +App::$strings["Narrow navbar"] = "Wąski pasek nawigacyjny"; +App::$strings["Navigation bar background color"] = "Kolor tła paska nawigacji"; +App::$strings["Navigation bar icon color "] = "Kolor ikony paska nawigacji "; +App::$strings["Navigation bar active icon color "] = "Kolor ikony aktywnego paska nawigacji "; +App::$strings["Link color"] = "Kolor odnośnika"; +App::$strings["Set font-color for banner"] = "Ustaw kolor czcionki na banerze"; +App::$strings["Set the background color"] = "Ustaw kolor tła"; +App::$strings["Set the background image"] = "Ustaw obraz tła"; +App::$strings["Set the background color of items"] = "Ustaw kolor tła elementów"; +App::$strings["Set the background color of comments"] = "Ustaw kolor tła komentarzy"; +App::$strings["Set font-size for the entire application"] = "Ustaw rozmiar czcionki dla całej aplikacji"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Przykłady: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Ustaw kolor czcionki dla wpisów i komentarzy"; +App::$strings["Set radius of corners"] = "Ustaw promień narożników"; +App::$strings["Example: 4px"] = "Przykład: 4px"; +App::$strings["Set shadow depth of photos"] = "Ustaw głębię cienia zdjęć"; +App::$strings["Set maximum width of content region in pixel"] = "Ustaw maksymalną szerokość obszaru treści w pikselach"; +App::$strings["Leave empty for default width"] = "Pozostaw puste dla domyślnej szerokości"; +App::$strings["Set size of conversation author photo"] = "Ustaw rozmiar zdjęcia autora rozmowy"; +App::$strings["Set size of followup author photos"] = "Ustaw rozmiar kolejnych zdjęć autora"; +App::$strings["Show advanced settings"] = "Pokaż ustawienia zaawansowane"; +App::$strings["Create an account to access services and applications"] = "Utwórz konto, aby uzyskać dostęp do usług i aplikacji"; +App::$strings["Login/Email"] = "Login/Email"; +App::$strings["Password"] = "Hasło"; +App::$strings["Remember me"] = "Zapamiętaj mnie"; +App::$strings["Forgot your password?"] = "Nie pamiętasz hasła?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Błąd SSL witryny internetowej dla %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "Certyfikat SSL witryny jest nieprawidłowy. Proszę popraw."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Zadania Crona nie działają na %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Zadania Crona (zaplanowane) nie działają."; -- cgit v1.2.3 From 64181c7cf164f4d2eeed67243ea07de84f1012ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Wed, 26 May 2021 17:15:09 +0200 Subject: Next fixes. It already looks very nice, but it's not end work yet for this translation. --- doc/pl/about/about.bb | 4 +- doc/pl/accounts_profiles_channels_basics.bb | 4 +- view/pl/hmessages.mo | Bin 304989 -> 304893 bytes view/pl/hmessages.po | 1306 +++++++++++++-------------- view/pl/hstrings.php | 242 ++--- 5 files changed, 730 insertions(+), 826 deletions(-) diff --git a/doc/pl/about/about.bb b/doc/pl/about/about.bb index 661d29487..45a4de04a 100644 --- a/doc/pl/about/about.bb +++ b/doc/pl/about/about.bb @@ -33,7 +33,7 @@ oraz innych narzędzi zewnętrznych. [*= klon ([i]ang. clone[/i])] Kanały mogą mieć klony innych na innych niezależnych portalach. Komunikacja współdzielona z kanałem jest synchronizowana między klonami kanału, co umożliwia kanałowi wysyłanie i odbieranie wiadomości oraz dostęp do współdzielonych treści z wielu portali. Zapewnia to odporność na awarie sieci i sprzętu, które mogą stanowić poważny problem w przypadku serwerów WWW utrzymywanych na prywatnych serwerach w hostingu współdzielonym lub o ograniczonych zasobach. Klonowanie umożliwia też całkowite przeniesienie kanału z jednego portalu na drugi, z zabraniem wszystkich danych i połączeń. Zobacz "tożsamość nomadyczna". -[*= konto ([i]ang. account[/i])] Umowny rejestr zawierajacy dane rejestracyjne i ewentualnie inne dane użytkownika serwisu internetowego, ściśle związane z umową jaką zwiera użytkownik z operatorem (właścicielem) serwisu o świadczenie usług drogą internetową. Posiadanie konta umożliwia użytkownikowi korzystanie z usług serwisu. Nie jest to pojęcie specyficzne dla platformy Hubzilla ale ma tu znaczenie węższe i należy go odróżniać od profilu lub tożsamości użytkownika. W Hubzilla, użytkownik (w ramach swojego konta) może mieć wiele tożsamości i te tożsamości utrzymywać na wielu odrębnych serwisach w sieci Zotm, w sposób zsynchronizowany. Na tych serwisach użytkownik musi mieć odrębne konta. +[*= konto ([i]ang. account[/i])] Umowny rejestr zawierajacy dane rejestracyjne i ewentualnie inne dane użytkownika serwisu internetowego (portalu), ściśle związane z umową jaką zwiera użytkownik z operatorem (właścicielem) serwisu o świadczenie usług drogą internetową. Posiadanie konta umożliwia użytkownikowi korzystanie z usług serwisu. Nie jest to pojęcie specyficzne dla platformy Hubzilla ale ma tu znaczenie węższe i należy go odróżniać od profilu lub tożsamości użytkownika. W Hubzilla, użytkownik (w ramach swojego konta) może mieć wiele tożsamości i te tożsamości utrzymywać na wielu odrębnych portalach w sieci Zot, w sposób zsynchronizowany. Na tych portalach użytkownik musi mieć odrębne konta. [*= tożsamość nomadyczna ([i]ang. nomadic identity[/i])] Możliwość uwierzytelniania i łatwej migracji tożsamości pomiędzy niezależnymi portalami i domenami internetowymi. Tożsamość nomadyczna zapewnia prawdziwą własność tożsamości internetową, ponieważ tożsamości kontrolowane przez konto na portalu nie są ściśle związane z tym portalem. Portal bardziej przypomina "hosta" kanałów. W serwisie $Projectname nie masz "konta" na serwerze, tak jak na typowych serwisach internetowych - posiadasz tożsamość, którą możesz przenosić w całej sieci za pomocą mechanizmu klonowania. @@ -160,7 +160,7 @@ $Projectname oferuje interesujące nowe możliwości prywatności. Więcej infor Obowiązują pewne zastrzeżenia. Aby uzyskać pełne wyjaśnienie klonowania tożsamości, przeczytaj stronę "JAK SKLONOWAĆ SWOJĄ TOŻSAMOŚĆ". [h4]Wiele profili[/h4] -Można utworzyć dowolną liczbę profili zawierających różne informacje, które mogą być widoczne dla niektórych Twoich kontaktów i znajomych. Profil "domyślny" może być widoczny dla każdego i może zawierać ograniczone informacje, a więcej informacji jest dostępnych dla wybranych grup lub osób. Oznacza to, że profil (i zawartość witryny), który widzą Twoi znajomi pijący piwo, może być inny niż to, co widzą Twoi współpracownicy, a także zupełnie inny niż to, co jest widoczne dla ogółu społeczeństwa. +Można utworzyć dowolną liczbę profili zawierających różne informacje, które mogą być widoczne dla niektórych Twoich kontaktów i znajomych. Profil "domyślny" może być widoczny dla każdego i zawierać tylko ograniczone informacje o Tobie. Natomiast dodatkowe profile, dostępne dla wybranych grup lub osób, mogą juz zawierać dodatkowe informacje. Oznacza to, że profil (i przypisane mu treści), który widzą Twoi znajomi pijący piwo, może być inny niż to, co widzą Twoi współpracownicy, a także zupełnie inny niż to, co jest widoczne dla ogółu internautów. [h4]Kopia zapasowa konta[/h4] diff --git a/doc/pl/accounts_profiles_channels_basics.bb b/doc/pl/accounts_profiles_channels_basics.bb index 32803fcec..034c2fa23 100644 --- a/doc/pl/accounts_profiles_channels_basics.bb +++ b/doc/pl/accounts_profiles_channels_basics.bb @@ -5,7 +5,7 @@ Po zarejestrowaniu [i]konta[/i], trzeba również utworzyć [i]profil[/i] i [i]k [b]Konto[/b] W serwisie &Projectname masz [i]jedno[/i] konto. Składa się z Twojego konta e-mail i hasła. Za pomocą swojego konta uzyskujesz dostęp do swojego profilu i kanału. -[i]Pomyśl o swoim koncie jak o sposobie uwierzytelniania w jednym serwisie $Projectname. Pozwala to na takie rzeczy, jak tworzenie profili i kanałów, za pomocą których możesz łączyć się z innymi osobami.[/i] +[i]Pomyśl o swoim koncie jak o sposobie uwierzytelniania na jakimś portalu $Projectname. Pozwala ono na takie rzeczy, jak tworzenie profili i kanałów, za pomocą których możesz łączyć się z innymi osobami.[/i] [b]Profil[/b] Z pewnością masz już doświadczenie w rejestrowaniu się w jakichś usługach internetowych, takich jak fora lub społeczności internetowe. We wszystkich przypadkach trzeba było podać pewne informacje o sobie, takie jak data urodzenia, kraj, wiek i upodobania. [observer=1]Jeśli chcesz, możesz zobaczyć swój profil tutaj: [baseurl]/profile/[observer.webname] i edytować go, klikając ikonę ołówka obok swojego awatara.[/observer] @@ -13,7 +13,7 @@ W przeciwieństwie do innych usług, $Projectname oferuje Ci możliwość tworze [i]Potraktuj swój profil jako podstawowe informacje o sobie, które przekazujesz innym osobom.[/i] [b]Kanał[/b] -Podczas rejestracji tworzysz swój pierwszy [i]kanał[/i]. Podobnie jak w przypadku profili, możesz mieć kilka kanałów. Na początku może to być nieco zagmatwane, ale wyjaśnijmy to. Masz już jeden kanał. Możesz używać go dla publicznie, aby komunikować się z ludźmi w codziennym życiu. Ale być może jesteś zapalonym czytelnikiem książek i wielu ludzi się tym nudzi. Otwierasz więc [i]drugi kanał[/i] tylko dla miłośników książek, na którym wszyscy mogą rozmawiać o książkach tyle, ile chcesz. Oczywiście jest to nowy strumień wpisów, z nowym profilem (... lub nowymi profilami ...) i zupełnie innymi kontaktami. Niektóre połączenia mogą istnieć w obu kanałach, ale będą takie, które dotyczą tylko jednego z nich. Ty sam po prostu przełączasz się między nimi, tak jak w prawdziwym życiu, kiedy rozmawiasz z ludźmi, których spotykasz na ulicy lub z osobami, które spotykasz specjalnie, aby porozmawiać o książkach. Możesz nawet połączyć się ze sobą lub lepiej: z innym kanałem. :) +Podczas rejestracji tworzysz swój pierwszy [i]kanał[/i]. Zostaje on przyporządkowany do domyślnego profilu. Podobnie jak w przypadku profili, możesz mieć kilka kanałów (jeśli parametry konta to dopuszczają). Na początku może to być nieco zagmatwane, ale wyjaśnijmy to. Masz już jeden kanał. Możesz używać go publicznie, aby komunikować się z osobami w codziennym życiu. Ale być może, jesteś zapalonym czytelnikiem książek i wielu ludzi się tym nudzi. Otwierasz więc [i]drugi kanał[/i] tylko dla miłośników książek, na którym wszyscy mogą rozmawiać o książkach tyle, ile chcesz. Oczywiście jest to nowy strumień wpisów, z nowym profilem (... lub nowymi profilami ...) i zupełnie innymi kontaktami. Niektóre połączenia mogą istnieć w obu kanałach, ale będą takie, które dotyczą tylko jednego z nich. Ty sam po prostu przełączasz się między nimi, tak jak w prawdziwym życiu, kiedy rozmawiasz z ludźmi, których spotykasz na ulicy lub z osobami, które spotykasz specjalnie, aby porozmawiać o książkach. Możesz nawet połączyć się ze sobą lub lepiej: z innym kanałem. :) [i]Pomyśl o kanale jako o różnych przestrzeniach poświęconych różnym tematom, w których spotykasz się z różnymi ludźmi.[/i] #include doc/macros/pl/main_footer.bb; diff --git a/view/pl/hmessages.mo b/view/pl/hmessages.mo index 821306629..e5ec6d689 100644 Binary files a/view/pl/hmessages.mo and b/view/pl/hmessages.mo differ diff --git a/view/pl/hmessages.po b/view/pl/hmessages.po index 799e35680..a0e293e0c 100644 --- a/view/pl/hmessages.po +++ b/view/pl/hmessages.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 5.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-05-23 21:08+0200\n" -"PO-Revision-Date: 2021-05-24 17:06+0200\n" +"PO-Revision-Date: 2021-05-26 16:02+0200\n" "Last-Translator: Andrzej Budziński \n" "Language-Team: \n" "Language: pl\n" @@ -152,13 +152,12 @@ msgstr "Specjalne - celebryckie i mównice" msgid "Special - Group Repository" msgstr "Specjalne - repozytorium grupowe" -#: ../../Zotlabs/Access/PermissionRoles.php:310 -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 -#: ../../Zotlabs/Module/Connedit.php:928 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/selectors.php:115 -#: ../../include/selectors.php:151 ../../include/connections.php:741 -#: ../../include/connections.php:748 ../../include/event.php:1429 -#: ../../include/event.php:1436 +#: ../../Zotlabs/Access/PermissionRoles.php:310 ../../Zotlabs/Module/Cdav.php:1385 +#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Connedit.php:928 +#: ../../include/selectors.php:60 ../../include/selectors.php:77 +#: ../../include/selectors.php:115 ../../include/selectors.php:151 +#: ../../include/connections.php:741 ../../include/connections.php:748 +#: ../../include/event.php:1429 ../../include/event.php:1436 msgid "Other" msgstr "Inny" @@ -177,12 +176,10 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Moderate.php:15 #: ../../Zotlabs/Module/New_channel.php:105 #: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Filestorage.php:20 -#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:20 ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:96 #: ../../Zotlabs/Module/Filestorage.php:119 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 ../../Zotlabs/Module/Wiki.php:59 #: ../../Zotlabs/Module/Wiki.php:284 ../../Zotlabs/Module/Wiki.php:427 @@ -190,31 +187,29 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Locs.php:100 ../../Zotlabs/Module/Connedit.php:397 #: ../../Zotlabs/Module/Profile_photo.php:338 #: ../../Zotlabs/Module/Profile_photo.php:351 -#: ../../Zotlabs/Module/Sharedwithme.php:19 -#: ../../Zotlabs/Module/Editlayout.php:67 ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Item.php:506 -#: ../../Zotlabs/Module/Item.php:525 ../../Zotlabs/Module/Item.php:535 -#: ../../Zotlabs/Module/Item.php:1444 ../../Zotlabs/Module/Rate.php:115 -#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Chat.php:113 -#: ../../Zotlabs/Module/Chat.php:118 ../../Zotlabs/Module/Vote.php:19 -#: ../../Zotlabs/Module/Display.php:420 ../../Zotlabs/Module/Photos.php:71 -#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:365 -#: ../../Zotlabs/Module/Channel.php:404 ../../Zotlabs/Module/Cards.php:86 -#: ../../Zotlabs/Module/Connections.php:32 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Sharedwithme.php:19 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 +#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 +#: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Regmod.php:20 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Chat.php:113 ../../Zotlabs/Module/Chat.php:118 +#: ../../Zotlabs/Module/Vote.php:19 ../../Zotlabs/Module/Display.php:420 +#: ../../Zotlabs/Module/Photos.php:71 ../../Zotlabs/Module/Channel.php:209 +#: ../../Zotlabs/Module/Channel.php:365 ../../Zotlabs/Module/Channel.php:404 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Editwebpage.php:68 ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Profile.php:99 #: ../../Zotlabs/Module/Profile.php:114 ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 #: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 -#: ../../Zotlabs/Module/Register.php:200 +#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Articles.php:89 +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Mitem.php:129 +#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Register.php:200 #: ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -222,8 +217,7 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Sources.php:80 #: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Network.php:19 -#: ../../Zotlabs/Module/Attach_edit.php:90 -#: ../../Zotlabs/Module/Attach_edit.php:99 +#: ../../Zotlabs/Module/Attach_edit.php:90 ../../Zotlabs/Module/Attach_edit.php:99 #: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Settings.php:59 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Web/WebServer.php:116 #: ../../Zotlabs/Lib/Chatroom.php:135 ../../include/photos.php:27 @@ -345,8 +339,7 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Chat.php:248 ../../Zotlabs/Module/Photos.php:1058 #: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Editpost.php:86 ../../Zotlabs/Module/Affinity.php:87 -#: ../../Zotlabs/Module/Pconfig.php:116 -#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Security.php:120 #: ../../Zotlabs/Module/Admin/Accounts.php:309 #: ../../Zotlabs/Module/Admin/Features.php:66 @@ -356,8 +349,7 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Admin/Addons.php:442 #: ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Profs.php:178 ../../Zotlabs/Module/Thing.php:328 -#: ../../Zotlabs/Module/Thing.php:381 -#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Setup.php:306 #: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Mitem.php:259 #: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Permcats.php:129 @@ -458,9 +450,9 @@ msgstr "z terminala." #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Cloud.php:123 #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Group.php:99 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Subthread.php:89 ../../Zotlabs/Module/Share.php:72 -#: ../../Zotlabs/Web/WebServer.php:115 ../../include/items.php:441 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Subthread.php:89 +#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Web/WebServer.php:115 +#: ../../include/items.php:441 #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:119 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:109 @@ -554,8 +546,7 @@ msgstr "Kliknij kontakt, który chcesz dodać lub usunąć." msgid "Visible To" msgstr "Widoczne dla" -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:218 +#: ../../Zotlabs/Module/Profperm.php:140 ../../Zotlabs/Module/Connections.php:218 msgid "All Connections" msgstr "Wszystkie połączenia" @@ -716,9 +707,8 @@ msgstr "Kalendarze CalDAV" #: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Module/Card_edit.php:130 #: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Blocks.php:162 #: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Editblock.php:139 ../../Zotlabs/Module/Photos.php:1179 -#: ../../Zotlabs/Module/Connections.php:329 +#: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Connections.php:329 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:320 @@ -742,15 +732,13 @@ msgstr "Usuń wszystko" #: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:111 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Editblock.php:141 +#: ../../Zotlabs/Module/Editpost.php:111 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editwebpage.php:169 #: ../../Zotlabs/Module/Article_edit.php:131 #: ../../Zotlabs/Module/Admin/Addons.php:427 -#: ../../Zotlabs/Module/Cover_photo.php:428 -#: ../../Zotlabs/Storage/Browser.php:383 ../../include/conversation.php:1460 -#: ../../include/conversation.php:1515 +#: ../../Zotlabs/Module/Cover_photo.php:428 ../../Zotlabs/Storage/Browser.php:383 +#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:209 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:258 msgid "Cancel" @@ -774,11 +762,11 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 -#: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../include/contact_widgets.php:112 ../../include/contact_widgets.php:156 -#: ../../include/contact_widgets.php:201 ../../include/contact_widgets.php:236 -#: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 -#: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../include/contact_widgets.php:112 +#: ../../include/contact_widgets.php:156 ../../include/contact_widgets.php:201 +#: ../../include/contact_widgets.php:236 ../../include/taxonomy.php:420 +#: ../../include/taxonomy.php:502 ../../include/taxonomy.php:522 +#: ../../include/taxonomy.php:543 msgid "Categories" msgstr "Kategorie" @@ -788,8 +776,7 @@ msgstr "Kategorie" #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 #: ../../Zotlabs/Module/Sharedwithme.php:106 ../../Zotlabs/Module/Chat.php:257 #: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Storage/Browser.php:377 -#: ../../Zotlabs/Lib/NativeWikiPage.php:576 +#: ../../Zotlabs/Storage/Browser.php:377 ../../Zotlabs/Lib/NativeWikiPage.php:576 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:172 msgid "Name" @@ -940,16 +927,15 @@ msgstr "" #: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 #: ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Settings/Channel.php:311 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 -#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 -#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 -#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 +#: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 +#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 +#: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 +#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 +#: ../../Zotlabs/Storage/Browser.php:552 ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../include/conversation.php:1468 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../include/dir_fns.php:146 #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 #: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 @@ -1015,16 +1001,15 @@ msgstr "Tak" #: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 #: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 -#: ../../Zotlabs/Module/Settings/Channel.php:311 -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 -#: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 -#: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 -#: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 -#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/conversation.php:1468 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 +#: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 +#: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 +#: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 +#: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 +#: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 +#: ../../Zotlabs/Storage/Browser.php:552 ../../Zotlabs/Lib/Libzotdir.php:165 +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 +#: ../../include/conversation.php:1468 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../include/dir_fns.php:146 #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:111 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:63 #: ../../extend/addon/hubzilla-addons/cart/cart.php:1370 @@ -1096,10 +1081,10 @@ msgstr "lub wybierz istniejący folder (kliknij dwukrotnie)" #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Cards.php:113 #: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 -#: ../../Zotlabs/Module/Articles.php:117 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Widget/Notes.php:23 -#: ../../include/text.php:1145 ../../include/text.php:1157 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Articles.php:117 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../Zotlabs/Widget/Notes.php:23 ../../include/text.php:1145 +#: ../../include/text.php:1157 #: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:116 msgid "Save" msgstr "Zapisz" @@ -1326,11 +1311,11 @@ msgstr "Moje zakładki połączeń" #: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Layouts.php:31 #: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Filestorage.php:59 #: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Cards.php:42 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Profile.php:27 -#: ../../Zotlabs/Module/Articles.php:43 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Menu.php:92 ../../include/channel.php:1464 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Articles.php:43 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Menu.php:92 +#: ../../include/channel.php:1464 #: ../../extend/addon/hubzilla-addons/gallery/Mod_Gallery.php:49 msgid "Requested profile is not available." msgstr "Żądany profil nie jest dostępny." @@ -1369,8 +1354,7 @@ msgstr "Strony internetowe" #: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Module/Oauth2.php:194 #: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:321 +#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Connections.php:321 #: ../../Zotlabs/Module/Connections.php:363 #: ../../Zotlabs/Module/Connections.php:383 #: ../../Zotlabs/Module/Editwebpage.php:142 @@ -1762,7 +1746,7 @@ msgid "" "provide an export file." msgstr "" "Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera " -"(serwisu).Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez " +"(portalu).Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez " "sieć lub dostarczyć plik eksportu." #: ../../Zotlabs/Module/Import.php:630 ../../Zotlabs/Module/Import_items.php:127 @@ -1771,7 +1755,7 @@ msgstr "Plik do przesłania" #: ../../Zotlabs/Module/Import.php:631 msgid "Or provide the old server/hub details" -msgstr "Lub podaj szczegóły starego serwera/serwisu" +msgstr "Lub podaj szczegóły starego serwera/portalu" #: ../../Zotlabs/Module/Import.php:633 msgid "Your old identity address (xyz@example.com)" @@ -1798,14 +1782,14 @@ msgid "" "able to post from either location, but only one can be marked as the primary " "location for files, photos, and media." msgstr "" -"W obu przypadkach wybierz, czy chcesz ustawić ten serwis jako nowy adres " +"W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres " "podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz " "mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być " "oznaczona jako główna lokalizacja plików, zdjęć i multimediów." #: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" -msgstr "Ustaw ten serwis jako moją główną lokalizację" +msgstr "Ustaw ten portal jako moją główną lokalizację" #: ../../Zotlabs/Module/Import.php:641 msgid "Move this channel (disable all previous locations)" @@ -1821,12 +1805,12 @@ msgid "" "assigned a similar nickname if either name is already allocated on this site." msgstr "" "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo " -"podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie." +"podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu." #: ../../Zotlabs/Module/Import.php:644 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +"This process may take several minutes to complete. Please submit the form only " +"once and leave this page open until finished." msgstr "" "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę " "stronę otwartą do zakończenia procedury." @@ -1974,20 +1958,16 @@ msgstr "Zastosuj te uprawnienia automatycznie" #: ../../Zotlabs/Module/Defperms.php:256 #: ../../Zotlabs/Module/Settings/Channel.php:472 -msgid "" -"If enabled, connection requests will be approved without your interaction" +msgid "If enabled, connection requests will be approved without your interaction" msgstr "" -"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej " -"interakcji" +"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Permission role" msgstr "Rola uprawnień" -#: ../../Zotlabs/Module/Defperms.php:257 -#: ../../Zotlabs/Module/New_channel.php:157 -#: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/Connedit.php:862 +#: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/New_channel.php:157 +#: ../../Zotlabs/Module/New_channel.php:164 ../../Zotlabs/Module/Connedit.php:862 #: ../../Zotlabs/Widget/Notifications.php:182 ../../include/nav.php:324 msgid "Loading" msgstr "Ładowanie" @@ -2044,8 +2024,8 @@ msgid "Layouts" msgstr "Układy" #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 -#: ../../include/nav.php:180 ../../include/nav.php:320 -#: ../../include/help.php:117 ../../include/help.php:125 +#: ../../include/nav.php:180 ../../include/nav.php:320 ../../include/help.php:117 +#: ../../include/help.php:125 msgid "Help" msgstr "Pomoc" @@ -2067,7 +2047,7 @@ msgstr "Aplikacja Strumień Publiczny" #: ../../Zotlabs/Module/Pubstream.php:21 msgid "The unmoderated public stream of this hub" -msgstr "Niemoderowany strumień publiczny tego serwisu" +msgstr "Niemoderowany strumień publiczny tego portalu" #: ../../Zotlabs/Module/Pubstream.php:95 ../../Zotlabs/Module/Display.php:76 #: ../../Zotlabs/Module/Channel.php:256 ../../Zotlabs/Module/Hq.php:125 @@ -2170,8 +2150,7 @@ msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "" -"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do " -"konta." +"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" @@ -2186,8 +2165,7 @@ msgstr "UWAGA: " msgid "This channel will be completely removed from the network. " msgstr "Ten kanał zostanie całkowicie usunięty z sieci. " -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Removeaccount.php:58 msgid "This action is permanent and can not be undone!" msgstr "Ta akcja jest bezpowrotna i nie można jej cofnąć!" @@ -2268,10 +2246,9 @@ msgstr "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny." #: ../../Zotlabs/Module/Changeaddr.php:51 ../../Zotlabs/Module/Register.php:105 #: ../../include/channel.php:231 ../../include/channel.php:711 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +msgid "Nickname has unsupported characters or is already being used on this site." msgstr "" -"Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie." +"Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu." #: ../../Zotlabs/Module/Changeaddr.php:77 msgid "Change channel nickname/address" @@ -2390,8 +2367,7 @@ msgstr "Weryfikacja adresu e-mail została wysłana ponownie" msgid "Unable to resend email verification message." msgstr "Nie można ponownie wysłać weryfikacyjną wiadomość e-mail." -#: ../../Zotlabs/Module/Search.php:21 -#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Search.php:21 ../../Zotlabs/Module/Viewconnections.php:23 #: ../../Zotlabs/Module/Display.php:26 ../../Zotlabs/Module/Photos.php:519 #: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 #: ../../Zotlabs/Module/Ratings.php:83 @@ -2430,7 +2406,7 @@ msgstr "Edytuj wpis" #: ../../Zotlabs/Module/Oexchange.php:27 msgid "Unable to find your hub." -msgstr "Nie można znaleźć Twojego serwisu." +msgstr "Nie można znaleźć Twojego portalu." #: ../../Zotlabs/Module/Oexchange.php:41 msgid "Post successful." @@ -2516,17 +2492,16 @@ msgstr "" "potwierdzenia następujących warunków:" #: ../../Zotlabs/Module/Connect.php:105 -msgid "" -"Potential connections will then see the following text before proceeding:" +msgid "Potential connections will then see the following text before proceeding:" msgstr "Potencjalne połączenia zobaczą następujący tekst przed kontynuowaniem:" #: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +"By continuing, I certify that I have complied with any instructions provided on " +"this page." msgstr "" -"Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na " -"tej stronie." +"Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej " +"stronie." #: ../../Zotlabs/Module/Connect.php:115 msgid "(No specific instructions have been provided by the channel owner.)" @@ -2547,8 +2522,8 @@ msgstr "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy." #: ../../Zotlabs/Module/New_channel.php:160 msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group" +"\"" msgstr "" "Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa " "lotnicza\"" @@ -2568,8 +2543,7 @@ msgstr "Dozwolone znaki, to a-z 0-9, - oraz _" msgid "Channel name" msgstr "Nazwa kanału" -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:510 +#: ../../Zotlabs/Module/New_channel.php:177 ../../Zotlabs/Module/Register.php:510 msgid "Choose a short nickname" msgstr "Wybierz krótki pseudonim" @@ -2643,8 +2617,7 @@ msgstr "Usuń to konto" #: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" -"This account and all its channels will be completely removed from the " -"network. " +"This account and all its channels will be completely removed from the network. " msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. " #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -2652,8 +2625,7 @@ msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci msgid "Remove Account" msgstr "Usuń konto" -#: ../../Zotlabs/Module/Filestorage.php:14 -#: ../../Zotlabs/Module/Filestorage.php:53 +#: ../../Zotlabs/Module/Filestorage.php:14 ../../Zotlabs/Module/Filestorage.php:53 msgid "Deprecated!" msgstr "Przestarzałe!" @@ -2680,11 +2652,10 @@ msgstr "Odmowa dostępu." msgid "Edit file permissions" msgstr "Edytuj uprawnienia do pliku" -#: ../../Zotlabs/Module/Filestorage.php:195 -#: ../../Zotlabs/Module/Connedit.php:683 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 -#: ../../include/acl_selectors.php:154 +#: ../../Zotlabs/Module/Filestorage.php:195 ../../Zotlabs/Module/Connedit.php:683 +#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Photos.php:678 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Thing.php:321 +#: ../../Zotlabs/Module/Thing.php:374 ../../include/acl_selectors.php:154 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:254 msgid "Permissions" msgstr "Uprawnienia" @@ -2702,13 +2673,11 @@ msgstr "Uwzględnij wszystkie pliki i podfoldery" msgid "Return to file list" msgstr "Wróć do listy plików" -#: ../../Zotlabs/Module/Filestorage.php:206 -#: ../../Zotlabs/Storage/Browser.php:386 +#: ../../Zotlabs/Module/Filestorage.php:206 ../../Zotlabs/Storage/Browser.php:386 msgid "Copy/paste this code to attach file to a post" msgstr "Skopiuj/wklej ten kod, aby dołączyć plik do wpisu" -#: ../../Zotlabs/Module/Filestorage.php:207 -#: ../../Zotlabs/Storage/Browser.php:387 +#: ../../Zotlabs/Module/Filestorage.php:207 ../../Zotlabs/Storage/Browser.php:387 msgid "Copy/paste this URL to link file from a web page" msgstr "Skopiuj/wklej ten adres URL, aby połączyć plik ze strony internetowej" @@ -2720,8 +2689,7 @@ msgstr "Udostępnij ten plik" msgid "Show URL to this file" msgstr "Pokaż adres URL do tego pliku" -#: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Storage/Browser.php:552 +#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Storage/Browser.php:552 msgid "Show in your contacts shared folder" msgstr "Pokaż w folderze udostępnionym kontaktów" @@ -3142,13 +3110,13 @@ msgid "" "When possible, drop a location by logging into that website/hub and removing " "your channel." msgstr "" -"Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając " +"Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając " "swój kanał." #: ../../Zotlabs/Module/Locs.php:136 msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -"Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa." +"Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa." #: ../../Zotlabs/Module/Chatsvc.php:131 msgid "Away" @@ -3259,8 +3227,7 @@ msgstr "To połączenie jest zablokowane!" msgid "Unignore" msgstr "Przestań ignorować" -#: ../../Zotlabs/Module/Connedit.php:637 -#: ../../Zotlabs/Module/Connections.php:345 +#: ../../Zotlabs/Module/Connedit.php:637 ../../Zotlabs/Module/Connections.php:345 msgid "Ignore" msgstr "Ignoruj" @@ -3401,11 +3368,11 @@ msgstr "Niezależność lokalizacji nie jest obsługiwana przez ich sieć." #: ../../Zotlabs/Module/Connedit.php:857 msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." +"This connection is unreachable from this location. Location independence is not " +"supported by their network." msgstr "" -"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji " -"nie jest obsługiwana przez ich sieć." +"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie " +"jest obsługiwana przez ich sieć." #: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 #, php-format @@ -3454,14 +3421,13 @@ msgid "Only import posts with this text" msgstr "Importuj tylko wpisy z tym tekstem" #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 -#: ../../Zotlabs/Module/Admin/Site.php:512 -#: ../../Zotlabs/Module/Admin/Site.php:513 +#: ../../Zotlabs/Module/Admin/Site.php:512 ../../Zotlabs/Module/Admin/Site.php:513 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all " +"posts" msgstr "" -"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw " -"puste, aby zaimportować wszystkie wpisy" +"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, " +"aby zaimportować wszystkie wpisy" #: ../../Zotlabs/Module/Connedit.php:886 msgid "Do not import posts with this text" @@ -3496,22 +3462,22 @@ msgid "" "individual settings. You can not change those settings here." msgstr "" "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają " -"wyższy priorytet niż indywidualne ustawienia. Nie możesz " -"tutaj zmienić tych ustawień." +"\">ustawień prywatności Twojego kanału, które mają wyższy " +"priorytet niż indywidualne ustawienia. Nie możesz tutaj " +"zmienić tych ustawień." #: ../../Zotlabs/Module/Connedit.php:905 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +"individual settings. You can change those settings here but they wont have any " +"impact unless the inherited setting changes." msgstr "" "Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają " "wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia " -"tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone " -"ustawienie ulegnie zmianie." +"tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone ustawienie " +"ulegnie zmianie." #: ../../Zotlabs/Module/Connedit.php:906 msgid "Last update:" @@ -3611,8 +3577,8 @@ msgid "" "After your account has been approved by our administrator you will be able to " "login with your login ID and your provided password." msgstr "" -"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować " -"się za pomocą swojego identyfikatora logowania i podanego hasła." +"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się " +"za pomocą swojego identyfikatora logowania i podanego hasła." #: ../../Zotlabs/Module/Regate.php:352 msgid "Registration request revoked" @@ -3669,11 +3635,11 @@ msgstr "Zmiana rozmiaru obrazu nie powiodła się." #: ../../Zotlabs/Module/Profile_photo.php:254 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:298 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +"Shift-reload the page or clear browser cache if the new photo does not display " +"immediately." msgstr "" -"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe " -"zdjęcie nie zostanie wyświetlone od razu." +"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie " +"nie zostanie wyświetlone od razu." #: ../../Zotlabs/Module/Profile_photo.php:261 #: ../../Zotlabs/Module/Cover_photo.php:241 ../../include/photos.php:196 @@ -3707,8 +3673,8 @@ msgstr "" #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." +"Your profile photo is visible to anybody on the internet and may be distributed " +"to other websites." msgstr "" "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być " "rozpowszechniane na innych stronach internetowych." @@ -3735,18 +3701,16 @@ msgstr "Zmień zdjęcie profilowe" msgid "Use" msgstr "Użyj" -#: ../../Zotlabs/Module/Profile_photo.php:500 -#: ../../Zotlabs/Module/Photos.php:688 ../../Zotlabs/Module/Cover_photo.php:423 -#: ../../Zotlabs/Module/Embedphotos.php:189 -#: ../../Zotlabs/Storage/Browser.php:540 ../../Zotlabs/Widget/Cdav.php:146 -#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 +#: ../../Zotlabs/Module/Profile_photo.php:500 ../../Zotlabs/Module/Photos.php:688 +#: ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Embedphotos.php:189 ../../Zotlabs/Storage/Browser.php:540 +#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:182 +#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" msgstr "Prześlij" -#: ../../Zotlabs/Module/Profile_photo.php:501 -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../Zotlabs/Module/Admin/Addons.php:459 +#: ../../Zotlabs/Module/Profile_photo.php:501 ../../Zotlabs/Module/Photos.php:996 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Admin/Addons.php:459 #: ../../Zotlabs/Module/Cover_photo.php:424 #: ../../extend/addon/hubzilla-addons/superblock/Mod_Superblock.php:92 msgid "Remove" @@ -3787,13 +3751,12 @@ msgstr "Pliki: udostępnione mi" msgid "NEW" msgstr "NOWY" -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:379 ../../include/text.php:1558 +#: ../../Zotlabs/Module/Sharedwithme.php:108 ../../Zotlabs/Storage/Browser.php:379 +#: ../../include/text.php:1558 msgid "Size" msgstr "Rozmiar" -#: ../../Zotlabs/Module/Sharedwithme.php:109 -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Module/Sharedwithme.php:109 ../../Zotlabs/Storage/Browser.php:380 msgid "Last Modified" msgstr "Ostatnio zmodyfikowane" @@ -3888,12 +3851,12 @@ msgstr "Osiągnięty został limit %1$.0f stron internetowych." #: ../../Zotlabs/Module/Rate.php:158 msgid "Website:" -msgstr "Serwis internetowy:" +msgstr "Portal internetowy:" #: ../../Zotlabs/Module/Rate.php:161 #, php-format msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanał zdalny [% s] (jeszcze nieznany w tym serwisie)" +msgstr "Kanał zdalny [% s] (jeszcze nieznany w tym portalu)" #: ../../Zotlabs/Module/Rate.php:162 msgid "Rating (this information is public)" @@ -3917,19 +3880,19 @@ msgstr "Nie znaleziono strony." #: ../../Zotlabs/Module/Page.php:173 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non " -"proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non " -"proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " +"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis " +"nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " +"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu " +"fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in " +"culpa qui officia deserunt mollit anim id est laborum." +msgstr "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " +"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis " +"nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " +"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu " +"fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in " +"culpa qui officia deserunt mollit anim id est laborum." #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -4012,7 +3975,7 @@ msgstr "" #: ../../Zotlabs/Module/Pubsites.php:34 msgid "Hub URL" -msgstr "Adres URL serwisu" +msgstr "Adres URL portalu" #: ../../Zotlabs/Module/Pubsites.php:34 msgid "Access Type" @@ -4134,13 +4097,13 @@ msgstr "Eksport Kanału" #: ../../Zotlabs/Module/Uexport.php:75 msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." +"Export your basic channel information to a file. This acts as a backup of your " +"connections, permissions, profile and basic data, which can be used to import " +"your data to a new server hub, but does not contain your content." msgstr "" "Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia " -"zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można " -"użyć do zaimportowania danych do nowego serwisu, ale nie zawiera treści." +"zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć " +"do zaimportowania danych do nowego portalu, ale nie zawiera treści." #: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" @@ -4148,14 +4111,14 @@ msgstr "Eksport Treści" #: ../../Zotlabs/Module/Uexport.php:77 msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " +"Export your channel information and recent content to a JSON backup that can be " +"restored or imported to another server hub. This backs up all of your " "connections, permissions, profile data and several months of posts. This file " "may be VERY large. Please be patient - it may take several minutes for this " "download to begin." msgstr "" "Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, " -"którą można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie " +"którą można przywrócić lub zaimportować do innego portalu. Tworzy to kopie " "zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku " "miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie " "pobierania może zająć kilka minut." @@ -4168,20 +4131,19 @@ msgstr "Eksportuj swoje wpisy z danego roku." msgid "" "You may also export your posts and conversations for a particular year or " "month. Adjust the date in your browser location bar to select other dates. If " -"the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +"the export fails (possibly due to memory exhaustion on your server hub), please " +"try again selecting a more limited date range." msgstr "" "Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub " "miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. " -"Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci " -"w serwera serwisu), spróbuj ponownie, wybierając bardziej ograniczony zakres " -"dat." +"Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w " +"serwera portalu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat." #: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" -"To select all posts for a given year, such as this year, visit %2$s" +"To select all posts for a given year, such as this year, visit " +"%2$s" msgstr "" "Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" @@ -4199,11 +4161,11 @@ msgstr "" #, php-format msgid "" "These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +"%2$s on any site containing your channel. For best results please import or " +"restore these in date order (oldest first)." msgstr "" "Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać " +"\"%1$s\">%2$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać " "najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)." #: ../../Zotlabs/Module/Lostpass.php:19 @@ -4217,7 +4179,7 @@ msgstr "Wysłano prośbę o zresetowanie hasła. Sprawdź swoją skrzynkę e-mai #: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 #, php-format msgid "Site Member (%s)" -msgstr "Członek serwisu (%s)" +msgstr "Członek portalu (%s)" #: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 #, php-format @@ -4226,8 +4188,8 @@ msgstr "Zresetowano hasło na %s" #: ../../Zotlabs/Module/Lostpass.php:68 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +"Request could not be verified. (You may have previously submitted it.) Password " +"reset failed." msgstr "" "Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). " "Resetowanie hasła nie powiodło się." @@ -4354,8 +4316,8 @@ msgstr "Wygasłe konta" msgid "Expiring accounts" msgstr "Wygasające konta" -#: ../../Zotlabs/Module/Admin.php:117 -#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../Zotlabs/Widget/Admin.php:24 +#: ../../Zotlabs/Module/Admin.php:117 ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Widget/Admin.php:24 msgid "Channels" msgstr "Kanały" @@ -4474,8 +4436,8 @@ msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" #: ../../Zotlabs/Module/Photos.php:787 ../../Zotlabs/Module/Photos.php:1333 -#: ../../Zotlabs/Module/Embedphotos.php:171 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +#: ../../Zotlabs/Module/Embedphotos.php:171 ../../Zotlabs/Widget/Portfolio.php:87 +#: ../../Zotlabs/Widget/Album.php:78 msgid "View Photo" msgstr "Zobacz zdjęcie" @@ -4724,7 +4686,7 @@ msgstr "Karty" #: ../../Zotlabs/Module/Go.php:21 msgid "This page is available only to site members" -msgstr "Ta strona jest dostępna tylko dla członków serwisu" +msgstr "Ta strona jest dostępna tylko dla członków portalu" #: ../../Zotlabs/Module/Go.php:27 msgid "Welcome" @@ -4735,8 +4697,7 @@ msgid "What would you like to do?" msgstr "Co chciałbyś zrobić?" #: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" +msgid "Please bookmark this page if you would like to return to it in the future" msgstr "Dodaj tę stronę do zakładek, jeśli chcesz wrócić do niej w przyszłości" #: ../../Zotlabs/Module/Go.php:35 @@ -4816,8 +4777,7 @@ msgstr "Ukryty" msgid "Archived/Unreachable" msgstr "Zarchiwizowane/Nieosiągalne" -#: ../../Zotlabs/Module/Connections.php:83 -#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Notifications.php:53 ../../Zotlabs/Module/Menu.php:180 msgid "New" msgstr "Nowy" @@ -4909,8 +4869,7 @@ msgid "Approve connection" msgstr "Zatwierdź połączenie" #: ../../Zotlabs/Module/Connections.php:343 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 -#: ../../include/conversation.php:776 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 ../../include/conversation.php:776 msgid "Approve" msgstr "Zatwierdź" @@ -4946,9 +4905,8 @@ msgstr "Wyszukaj swoje połączenia" msgid "Connections search" msgstr "Wyszukiwanie połączeń" -#: ../../Zotlabs/Module/Connections.php:382 -#: ../../Zotlabs/Module/Directory.php:433 ../../Zotlabs/Module/Directory.php:438 -#: ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:382 ../../Zotlabs/Module/Directory.php:433 +#: ../../Zotlabs/Module/Directory.php:438 ../../include/contact_widgets.php:23 msgid "Find" msgstr "Znajdź" @@ -4976,8 +4934,8 @@ msgstr "Zaktualizowano ustawienia narzędzia koligacji." msgid "" "This app presents a slider control in your connection editor and also on your " "network page. The slider represents your degree of friendship (affinity) with " -"each connection. It allows you to zoom in or out and display conversations " -"from only your closest friends or everybody in your stream." +"each connection. It allows you to zoom in or out and display conversations from " +"only your closest friends or everybody in your stream." msgstr "" "Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie " "internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym " @@ -5020,8 +4978,8 @@ msgstr "Trwałe poziomy więzi" msgid "" "If disabled the max and min levels will be reset to default after page reload" msgstr "" -"Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do " -"wartości domyślnych po ponownym załadowaniu strony" +"Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości " +"domyślnych po ponownym załadowaniu strony" #: ../../Zotlabs/Module/Affinity.php:84 msgid "Affinity Tool Settings" @@ -5097,8 +5055,8 @@ msgstr "Edytor konfiguracji" #: ../../Zotlabs/Module/Pconfig.php:58 msgid "" "Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +"leave this page unless you are comfortable with and knowledgeable about how to " +"correctly use this feature." msgstr "" "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał " "przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie " @@ -5146,8 +5104,8 @@ msgstr "Przełącz" #: ../../Zotlabs/Module/Admin/Themes.php:125 #: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 -#: ../../Zotlabs/Widget/Settings_menu.php:61 -#: ../../Zotlabs/Widget/Newmember.php:53 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/nav.php:106 msgid "Settings" msgstr "Ustawienia" @@ -5183,7 +5141,7 @@ msgid "" "sites:" msgstr "" "Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z " -"następujących serwisów:" +"następujących portali:" #: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" @@ -5199,7 +5157,7 @@ msgid "" "content from that site is explicitly blocked." msgstr "" "Wszystkie inne osadzone treści będą filtrowane, chyba że " -"osadzone treści z tego serwisu są jawnie zablokowane." +"osadzone treści z tego portalu są jawnie zablokowane." #: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:25 msgid "Security" @@ -5214,8 +5172,8 @@ msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "" -"Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych " -"stron osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony." +"Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron " +"osobistych na tym portalu, chyba że jesteś obecnie uwierzytelniony." #: ../../Zotlabs/Module/Admin/Security.php:102 msgid "Provide a cloud root directory" @@ -5231,7 +5189,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Show total disk space available to cloud uploads" msgstr "" -"Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury" +"Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Set \"Transport Security\" HTTP header" @@ -5251,8 +5209,8 @@ msgid "" "registrations to this site. Wildcards are accepted. Empty to allow any domains" msgstr "" "Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail " -"podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. " -"Puste pole oznacza zezwolenie na dowolne domeny" +"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " +"pole oznacza zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Not allowed email domains" @@ -5261,28 +5219,28 @@ msgstr "Niedozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "" "Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." +"registrations to this site. Wildcards are accepted. Empty to allow any domains, " +"unless allowed domains have been defined." msgstr "" "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail " -"podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. " -"Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio " +"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " +"pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio " "zdefiniowane jakieś dozwolone domeny." #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Allow communications only from these sites" -msgstr "Zezwalaj na komunikację tylko z tych serwisów" +msgstr "Zezwalaj na komunikację tylko z tych portali" #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "" "One site per line. Leave empty to allow communication from anywhere by default" msgstr "" -"Jeden serwis w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na " -"komunikację z każdym serwisem" +"Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na " +"komunikację z każdym portalem" #: ../../Zotlabs/Module/Admin/Security.php:109 msgid "Block communications from these sites" -msgstr "Blokuj komunikację z tych serwisów" +msgstr "Blokuj komunikację z tych portali" #: ../../Zotlabs/Module/Admin/Security.php:110 msgid "Allow communications only from these channels" @@ -5292,8 +5250,8 @@ msgstr "Zezwalaj na komunikację tylko z tych kanałów" msgid "" "One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -"Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na " -"dowolny kanał" +"Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny " +"kanał" #: ../../Zotlabs/Module/Admin/Security.php:111 msgid "Block communications from these channels" @@ -5301,7 +5259,7 @@ msgstr "Blokuj komunikację z tych kanałów" #: ../../Zotlabs/Module/Admin/Security.php:112 msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków ." +msgstr "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków." #: ../../Zotlabs/Module/Admin/Security.php:113 msgid "Allow unfiltered embedded HTML content only from these domains" @@ -5309,7 +5267,7 @@ msgstr "Zezwalaj na niefiltrowaną osadzony kod HTML tylko z tych domen" #: ../../Zotlabs/Module/Admin/Security.php:113 msgid "One site per line. By default embedded content is filtered." -msgstr "Jedna witryna w wierszu. Domyślnie, treść osadzona jest filtrowana." +msgstr "Jeden portal w wierszu. Domyślnie, treść osadzona jest filtrowana." #: ../../Zotlabs/Module/Admin/Security.php:114 msgid "Block embedded HTML from these domains" @@ -5325,7 +5283,7 @@ msgstr "OSTRZEŻENIE: obrazy SVG mogą zawierać złośliwy kod." #: ../../Zotlabs/Module/Admin/Security.php:116 msgid "Allow embedded (inline) PDF files" -msgstr "Zezwalaj na osadzone (w tekście) pliki PDF" +msgstr "Zezwalaj na osadzone (w treści) pliki PDF" #: ../../Zotlabs/Module/Admin/Accounts.php:128 #, php-format @@ -5339,9 +5297,9 @@ msgstr[2] "%s kont jest zablokowanych/odblokowanych" #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" -msgstr[0] "%s konto jest usunięte" -msgstr[1] "%s konta są usunięte" -msgstr[2] "%s kont jest usuniętych" +msgstr[0] "%s konto zostało usunięte" +msgstr[1] "%s konta zostały usunięte" +msgstr[2] "%s kont zostało usuniętych" #: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "Account not found" @@ -5449,23 +5407,22 @@ msgstr "Klasa usługi" #: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" "Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało " -"opublikowane na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na " -"pewno usunąć?" +"opublikowane na tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno " +"usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na " -"tym serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym " +"portalu zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" -#: ../../Zotlabs/Module/Admin/Accounts.php:347 -#: ../../include/conversation.php:1123 +#: ../../Zotlabs/Module/Admin/Accounts.php:347 ../../include/conversation.php:1123 msgid "Message" msgstr "Wiadowmość" @@ -5508,11 +5465,11 @@ msgstr "Docelowy URL" #: ../../Zotlabs/Module/Admin/Queue.php:39 msgid "Mark hub permanently offline" -msgstr "Oznacz serwis na stałe w trybie offline" +msgstr "Oznacz na stałe jako portal w trybie offline" #: ../../Zotlabs/Module/Admin/Queue.php:40 msgid "Empty queue for this hub" -msgstr "Pusta kolejka dla tego serwisu" +msgstr "Pusta kolejka dla tego portalu" #: ../../Zotlabs/Module/Admin/Queue.php:41 msgid "Last known contact" @@ -5563,8 +5520,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Dbsync.php:78 #, php-format msgid "" -"Update %s did not return a status. It cannot be determined if it was " -"successful." +"Update %s did not return a status. It cannot be determined if it was successful." msgstr "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:99 @@ -5600,9 +5556,9 @@ msgstr[2] "%s kanałów jest ocenzurowanych/nieocenzurowanych" #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Kod %s kanału jest dozwolony /niedozwolony" -msgstr[1] "Kod %s kanałów jest dozwolony/niedozwolony" -msgstr[2] "Kod %s kanałów jest dozwolony/niedozwolony" +msgstr[0] "Dozwolony/Niedozwolony kod %s kanału" +msgstr[1] "Dozwolony/Niedozwolony kod %s kanałów" +msgstr[2] "Dozwolony/Niedozwolony kod %s kanałów" #: ../../Zotlabs/Module/Admin/Channels.php:46 #, php-format @@ -5684,8 +5640,8 @@ msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale " -"będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie " +"bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." @@ -5710,11 +5666,10 @@ msgstr "Plik dziennika" #: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +"Must be writable by web server. Relative to your top-level webserver directory." msgstr "" -"Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego " -"serwera WWW." +"Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu " +"głównego serwera WWW." #: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" @@ -5723,7 +5678,7 @@ msgstr "Poziom rejestrowania zdarzeń" #: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format msgid "Password changed for account %d." -msgstr "Hasło zostało zmienione do konta%d." +msgstr "Hasło zostało zmienione do konta %d." #: ../../Zotlabs/Module/Admin/Account_edit.php:46 msgid "Account settings updated." @@ -5778,11 +5733,11 @@ msgstr "Minimalna wersja PHP: " #: ../../Zotlabs/Module/Admin/Addons.php:357 msgid "Compatible Server Roles: " -msgstr "Zgodne role serwera: " +msgstr "Kompatybilne role serwera: " #: ../../Zotlabs/Module/Admin/Addons.php:358 msgid "Requires: " -msgstr "Wymaga: " +msgstr "Wymagania: " #: ../../Zotlabs/Module/Admin/Addons.php:359 #: ../../Zotlabs/Module/Admin/Addons.php:446 @@ -5843,7 +5798,7 @@ msgstr "Błędy" #: ../../Zotlabs/Module/Admin/Site.php:225 msgid "Site settings updated." -msgstr "Zaktualizowano ustawienia serwisu." +msgstr "Zaktualizowano ustawienia portalu." #: ../../Zotlabs/Module/Admin/Site.php:251 ../../include/text.php:3395 #: ../../extend/addon/hubzilla-addons/cart/submodules/orderoptions.php:335 @@ -5878,19 +5833,19 @@ msgstr "Tak - za zgodą" #: ../../Zotlabs/Module/Admin/Site.php:328 msgid "My site is not a public server" -msgstr "Mój serwis nie jest serwerem publicznym" +msgstr "Mój portal nie jest serwerem publicznym" #: ../../Zotlabs/Module/Admin/Site.php:329 msgid "My site has paid access only" -msgstr "Mój serwis ma tylko płatny dostęp" +msgstr "Mój portal ma tylko płatny dostęp" #: ../../Zotlabs/Module/Admin/Site.php:330 msgid "My site has free access only" -msgstr "Mój serwis ma tylko bezpłatny dostęp" +msgstr "Mój porta ma tylko bezpłatny dostęp" #: ../../Zotlabs/Module/Admin/Site.php:331 msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mój serwis oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami" +msgstr "Mój portal oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami" #: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Default permission role for new accounts" @@ -5898,8 +5853,7 @@ msgstr "Domyślna rola uprawnień dla nowych kont" #: ../../Zotlabs/Module/Admin/Site.php:345 msgid "This role will be used for the first channel created after registration." -msgstr "" -"Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji." +msgstr "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji." #: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 msgid "Minute(s)" @@ -5933,8 +5887,8 @@ msgstr "Zarejestruj opóźnioną weryfikację" msgid "Time to wait before a registration can be verified" msgstr "Czas oczekiwania na weryfikację rejestracji" -#: ../../Zotlabs/Module/Admin/Site.php:372 -#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 +#: ../../Zotlabs/Module/Admin/Site.php:372 ../../Zotlabs/Module/Admin/Site.php:394 +#: ../../Zotlabs/Module/Invite.php:409 msgid "duration up from now" msgstr "czas oczekiwania od teraz" @@ -5948,7 +5902,7 @@ msgstr "Czas do wygaśnięcia niezweryfikowanej rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:411 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" -msgstr "Witryna" +msgstr "Portal" #: ../../Zotlabs/Module/Admin/Site.php:413 ../../Zotlabs/Module/Register.php:520 msgid "Registration" @@ -5956,7 +5910,7 @@ msgstr "Rejestracja" #: ../../Zotlabs/Module/Admin/Site.php:414 msgid "File upload" -msgstr "Udostępnianie pliku" +msgstr "Przesyłanie pliku" #: ../../Zotlabs/Module/Admin/Site.php:415 msgid "Policies" @@ -5970,7 +5924,7 @@ msgstr "Zaawansowane" #: ../../Zotlabs/Module/Admin/Site.php:420 #: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:593 msgid "Site name" -msgstr "Nazwa witryny internetowej" +msgstr "Nazwa portalu" #: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Banner/Logo" @@ -5989,20 +5943,20 @@ msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -"Informacje kontaktowe dla administratorów serwisu. Wyświetlane na stronie " -"informacji o serwisie. Tutaj można użyć BBCode" +"Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie " +"informacji o portalu. Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:424 ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" -msgstr "Informacje o serwisie" +msgstr "Informacje o portalu" #: ../../Zotlabs/Module/Admin/Site.php:424 msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" +"Publicly visible description of this site. Displayed on siteinfo page. BBCode " +"can be used here" msgstr "" -"Publicznie widoczny opis tego serwisu. Wyświetlane na stronie informacji o " -"serwisie. Tutaj można użyć BBCode" +"Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o " +"portalu. Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" @@ -6017,7 +5971,7 @@ msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -"Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - " +"Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - " "zmień ustawienia motywu" #: ../../Zotlabs/Module/Admin/Site.php:429 @@ -6046,14 +6000,13 @@ msgstr "Minimalny wiek" #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." msgstr "" -"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej " -"stronie." +"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie." #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "Which best describes the types of account offered by this hub?" msgstr "" -"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych " -"przez ten serwis?" +"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez " +"ten portal?" #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." @@ -6083,24 +6036,23 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:454 msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a dash " -"`-` example: 1:800-1200" +"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-" +"` example: 1:800-1200" msgstr "" "Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do " "myślnikiem '-'. Przykład: 1:800-1200" #: ../../Zotlabs/Module/Admin/Site.php:455 msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " -"2:900-1700" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" msgstr "" "Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: " "1:900-1700 2:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:456 msgid "" -"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " -"or 1-2,4-5:900-1700" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or " +"1-2,4-5:900-1700" msgstr "" "Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: " "1:800-1200,1300-1700 lub 1-2,4-5:900-1700" @@ -6168,8 +6120,8 @@ msgstr "Konto porzucone po x dniach" #: ../../Zotlabs/Module/Admin/Site.php:500 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +"Will not waste system resources polling external sites for abandonded accounts. " +"Enter 0 for no time limit." msgstr "" "Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w " "poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." @@ -6177,7 +6129,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "Site homepage to show visitors (default: login box)" msgstr "" -"Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz " +"Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz " "logowania)" #: ../../Zotlabs/Module/Admin/Site.php:505 @@ -6191,14 +6143,14 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" -msgstr "Zachowaj adres URL strony głównej serwisu" +msgstr "Zachowaj adres URL strony głównej portalu" #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -"Przedstaw stronę główną serwisu w ramce w oryginalnej lokalizacji zamiast " +"Przedstaw stronę główną portalu w ramce w oryginalnej lokalizacji zamiast " "przekierowywania" #: ../../Zotlabs/Module/Admin/Site.php:507 @@ -6207,8 +6159,8 @@ msgstr "Dozwolone domeny znajomych" #: ../../Zotlabs/Module/Admin/Site.php:507 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +"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ą zawierać przyjaźnie z tą " "witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na " @@ -6222,8 +6174,8 @@ msgstr "Wymuś publikację" msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -"Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili " -"założonych w tym serwisie." +"Zaznacz, aby wymusić opublikowanie w katalogu portalu wszystkich profili " +"założonych w tym portalu." #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" @@ -6234,8 +6186,8 @@ msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "" -"Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych " -"serwisów. Ostrzeżenie: ta zawartość jest niemoderowana." +"Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych portali. " +"Ostrzeżenie: ta zawartość jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" @@ -6246,7 +6198,7 @@ msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." msgstr "" -"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, " +"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, " "jeśli importowane strumienie publiczne są wyłączone." #: ../../Zotlabs/Module/Admin/Site.php:511 @@ -6318,8 +6270,8 @@ msgstr "Włącz powiadomienia SSE" #: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" -"If disabled, traditional polling will be used. Warning: this setting might " -"not be suited for shared hosting" +"If disabled, traditional polling will be used. Warning: this setting might not " +"be suited for shared hosting" msgstr "" "Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to " "ustawienie może nie być odpowiednie dla hostingu współdzielonego" @@ -6338,8 +6290,7 @@ msgstr "Limit czasu sieci" #: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" -"Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)." +msgstr "Wartość w sekundach. Ustaw na 0 dla nieograniczonej liczby (niezalecane)." #: ../../Zotlabs/Module/Admin/Site.php:530 msgid "Delivery interval" @@ -6347,13 +6298,13 @@ msgstr "Interwał dostaw" #: ../../Zotlabs/Module/Admin/Site.php:530 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." +"Delay background delivery processes by this many seconds to reduce system load. " +"Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large " +"dedicated servers." msgstr "" "Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych " -"serwerów prywatnych. 0-1 dla dużych serwerów dedykowanych." +"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów " +"prywatnych. 0-1 dla dużych serwerów dedykowanych." #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" @@ -6361,8 +6312,8 @@ msgstr "Liczba dostaw na proces" #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." +"Number of deliveries to attempt in a single operating system process. Adjust if " +"necessary to tune system performance. Recommend: 1-5." msgstr "" "Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W " "razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5." @@ -6385,8 +6336,8 @@ msgstr "Okres odpytywania" #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +"Delay background polling processes by this many seconds to reduce system load. " +"If 0, use delivery interval." msgstr "" "Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie " "systemu. Jeśli 0, użyty będzie interwał dostawy." @@ -6397,9 +6348,9 @@ msgstr "Ścieżka do programu konwertującego ImageMagick" #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" +"If set, use this program to generate photo thumbnails for huge images ( > 4000 " +"pixels in either dimension), otherwise memory exhaustion may occur. Example: /" +"usr/bin/convert" msgstr "" "Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla " "dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może " @@ -6452,14 +6403,13 @@ msgstr "Domyślnie: profile" #: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" -msgstr "Opcjonalnie: lokalizacja serwisu" +msgstr "Opcjonalnie: lokalizacja portalu" #: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Region or country" msgstr "Region lub kraj" -#: ../../Zotlabs/Module/Admin/Site.php:625 -#: ../../Zotlabs/Module/Admin/Site.php:626 +#: ../../Zotlabs/Module/Admin/Site.php:625 ../../Zotlabs/Module/Admin/Site.php:626 msgid "Invalid 24h time value (hhmm/hmm)" msgstr "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)" @@ -6485,7 +6435,7 @@ msgstr "Typ wejścia" #: ../../Zotlabs/Module/Admin/Profs.php:92 #: ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Field Name" -msgstr "Nazwa Pola" +msgstr "Nazwa pola" #: ../../Zotlabs/Module/Admin/Profs.php:92 #: ../../Zotlabs/Module/Admin/Profs.php:112 @@ -6532,7 +6482,7 @@ msgstr "Wszystkie dostępne pola" #: ../../Zotlabs/Module/Admin/Profs.php:173 msgid "Custom Fields" -msgstr "Pola niestandardowe" +msgstr "Pola własne" #: ../../Zotlabs/Module/Admin/Profs.php:177 msgid "Create Custom Field" @@ -6613,17 +6563,15 @@ msgstr "Aplikacja Sugerowane Kanały" #: ../../Zotlabs/Module/Suggest.php:41 msgid "" -"Suggestions for channels in the $Projectname network you might be interested " -"in" +"Suggestions for channels in the $Projectname network you might be interested in" msgstr "" -"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię " -"zainteresować" +"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" #: ../../Zotlabs/Module/Suggest.php:54 msgid "" "No suggestions available. If this is a new site, please try again in 24 hours." msgstr "" -"Brak dostępnych propozycji. Jeśli to jest nowy serwis, spróbuj ponownie za 24 " +"Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 " "godziny." #: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 @@ -6642,9 +6590,9 @@ msgstr "Wymagana jest weryfikacja adresu e-mail" #: ../../Zotlabs/Module/Email_validation.php:37 #, php-format msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." +"A verification token was sent to your email address [%s]. Enter that token here " +"to complete the account verification step. Please allow a few minutes for " +"delivery, and check your spam folder if you do not see the message." msgstr "" "Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta " "ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na " @@ -6664,8 +6612,7 @@ msgstr "Aplikacja Notatki" #: ../../Zotlabs/Module/Notes.php:58 msgid "A simple notes app with a widget (note: notes are not encrypted)" -msgstr "" -"Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)" +msgstr "Prosta aplikacja do notatek z widżetem (uwaga: notatki nie są szyfrowane)" #: ../../Zotlabs/Module/Tokens.php:39 #, php-format @@ -6693,13 +6640,13 @@ msgstr "" #: ../../Zotlabs/Module/Tokens.php:133 msgid "" "Use this form to create temporary access identifiers to share things with non-" -"members. These identities may be used in Access Control Lists and visitors " -"may login using these credentials to access private content." +"members. These identities may be used in Access Control Lists and visitors may " +"login using these credentials to access private content." msgstr "" "Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby " -"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być " -"używane na listach kontroli dostępu, a odwiedzający mogą logować się przy " -"użyciu tych poświadczeń, aby uzyskać dostęp do treści prywatnych." +"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane " +"na listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych " +"poświadczeń, aby uzyskać dostęp do treści prywatnych." #: ../../Zotlabs/Module/Tokens.php:135 msgid "" @@ -6708,8 +6655,8 @@ msgid "" "Examples:" msgstr "" "Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu " -"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, " -"jak pokazano na ilustracji. Przykłady:" +"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak " +"pokazano na ilustracji. Przykłady:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" @@ -6740,17 +6687,16 @@ msgid "" "Use arrows to move the corresponding app left (top) or right (bottom) in the " "navbar" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w " -"prawo (u dołu) na pasku nawigacyjnym" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo " +"(u dołu) na pasku nawigacyjnym" #: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w " -"zasobniku aplikacji" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w górę lub w dół w zasobniku " +"aplikacji" -#: ../../Zotlabs/Module/Notifications.php:63 -#: ../../Zotlabs/Lib/ThreadItem.php:484 +#: ../../Zotlabs/Module/Notifications.php:63 ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" msgstr "Oznacz wszystko jako oglądnięte" @@ -6793,10 +6739,9 @@ msgstr "Nie można połączyć się z bazą danych." #: ../../Zotlabs/Module/Setup.php:177 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +"Could not connect to specified site URL. Possible SSL certificate or DNS issue." msgstr "" -"Nie można połączyć się z określonym adresem URL serwisu. Możliwy problem z " +"Nie można połączyć się z określonym adresem URL portalu. Możliwy problem z " "certyfikatem SSL lub DNS." #: ../../Zotlabs/Module/Setup.php:184 @@ -6805,7 +6750,7 @@ msgstr "Nie udało się utworzyć tabeli." #: ../../Zotlabs/Module/Setup.php:190 msgid "Your site database has been installed." -msgstr "Baza danych serwisu została zainstalowana." +msgstr "Baza danych portalu została zainstalowana." #: ../../Zotlabs/Module/Setup.php:196 msgid "" @@ -6846,7 +6791,7 @@ msgid "" "questions about these settings." msgstr "" "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług " -"hostingowych lub administratorem serwisu." +"hostingowych lub administratorem portalu." #: ../../Zotlabs/Module/Setup.php:287 msgid "" @@ -6890,19 +6835,18 @@ msgstr "Typ bazy danych" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "Site administrator email address" -msgstr "Adres e-mail administratora serwisu" +msgstr "Adres e-mail administratora portalu" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +"Your account email address must match this in order to use the web admin panel." msgstr "" "Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc " "korzystać z panelu administratora sieci." #: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" -msgstr "Adres URL serwisu" +msgstr "Adres URL portalu" #: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Please use SSL (https) URL if available." @@ -6910,11 +6854,11 @@ msgstr "Użyj adresu URL z SSL (https), jeśli jest dostępny." #: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 msgid "Please select a default timezone for your website" -msgstr "Wybierz domyślną strefę czasową dla swojego serwisu" +msgstr "Wybierz domyślną strefę czasową dla swojego portalu" #: ../../Zotlabs/Module/Setup.php:327 msgid "Site settings" -msgstr "Ustawienia serwisu" +msgstr "Ustawienia portalu" #: ../../Zotlabs/Module/Setup.php:381 msgid "PHP version 7.1 or greater is required." @@ -6954,8 +6898,7 @@ msgstr "PHP CLI" #: ../../Zotlabs/Module/Setup.php:418 msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." +"Unable to check command line PHP, as shell_exec() is disabled. This is required." msgstr "" "Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To " "jest wymagane." @@ -6976,8 +6919,8 @@ msgstr "PHP register_argc_argv" #: ../../Zotlabs/Module/Setup.php:446 msgid "" -"This is not sufficient to upload larger images or files. You should be able " -"to upload at least 4 MB at once." +"This is not sufficient to upload larger images or files. You should be able to " +"upload at least 4 MB at once." msgstr "" "To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc " "przesłać co najmniej 4 MB na raz." @@ -7002,11 +6945,11 @@ msgstr "Limity wysyłania PHP" #: ../../Zotlabs/Module/Setup.php:479 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +"Error: the \"openssl_pkey_new\" function on this system is not able to generate " +"encryption keys" msgstr "" -"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie " -"wygenerować kluczy szyfrujących" +"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować " +"kluczy szyfrujących" #: ../../Zotlabs/Module/Setup.php:480 msgid "" @@ -7053,8 +6996,7 @@ msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" #: ../../Zotlabs/Module/Setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +msgid "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" "Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest " "zainstalowany." @@ -7065,8 +7007,8 @@ msgstr "exec" #: ../../Zotlabs/Module/Setup.php:516 msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" +"Error: exec is required but is either not installed or has been disabled in php." +"ini" msgstr "" "Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został " "wyłączony w php.ini" @@ -7077,11 +7019,11 @@ msgstr "shell_exec" #: ../../Zotlabs/Module/Setup.php:522 msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" +"Error: shell_exec is required but is either not installed or has been disabled " +"in php.ini" msgstr "" -"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został " -"wyłączony w php.ini" +"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony " +"w php.ini" #: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." @@ -7089,8 +7031,8 @@ msgstr "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:534 msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library " -"required but not installed." +"Error: GD PHP module with JPEG support or ImageMagick graphics library required " +"but not installed." msgstr "" "Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką " "graficzną ImageMagick, ale nie jest on zainstalowany." @@ -7100,8 +7042,7 @@ msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: wymagany jest moduł PHP openssl, ale niezainstalowany." #: ../../Zotlabs/Module/Setup.php:544 -msgid "" -"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgid "Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "Błąd: w module PHP PDO brakuje sterownika dla mysql lub pgsql." #: ../../Zotlabs/Module/Setup.php:549 @@ -7126,8 +7067,8 @@ msgstr ".htconfig.php jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:585 msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +"The web installer needs to be able to create a file called \".htconfig.php\" in " +"the top folder of your web server and it is unable to do so." msgstr "" "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"." "htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić." @@ -7146,21 +7087,20 @@ msgstr "Dodatkowe informacje można znaleźć w pliku install/INSTALL.txt." #: ../../Zotlabs/Module/Setup.php:603 msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." +"This software uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -"To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania " -"widoków internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć " -"renderowanie." +"To oprogramowanie wykorzystuje silnik szablonów Smarty3 do renderowania widoków " +"internetowych. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." #: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +"In order to store these compiled templates, the web server needs to have write " +"access to the directory %s under the top level web folder." msgstr "" -"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp " -"do zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." +"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do " +"zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" @@ -7173,8 +7113,8 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +"Note: as a security measure, you should give the web server write access to %s " +"only--not the template files (.tpl) that it contains." msgstr "" "Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu " "tylko do %s - nie do plików szablonów (.tpl), które on zawiera." @@ -7187,8 +7127,7 @@ msgstr "%s jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:625 msgid "" "This software uses the store directory to save uploaded files. The web server " -"needs to have write access to the store directory under the top level web " -"folder" +"needs to have write access to the store directory under the top level web folder" msgstr "" "To oprogramowanie używa katalogu store do zapisywania przesyłanych " "plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, " @@ -7200,8 +7139,8 @@ msgstr "katalog store jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:661 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +"SSL certificate cannot be validated. Fix certificate or disable https access to " +"this site." msgstr "" "Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp " "https do tej witryny." @@ -7212,15 +7151,15 @@ msgid "" "(the https: port), you MUST use a browser-valid certificate. You MUST NOT use " "self-signed certificates!" msgstr "" -"Jeśli masz dostęp https do swojego serwisu internetowego lub zezwalasz na " +"Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na " "połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu " "akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem " "własnym!" #: ../../Zotlabs/Module/Setup.php:663 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +"This restriction is incorporated because public posts from you may for example " +"contain references to images on your own hub." msgstr "" "To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na " "przykład zawierać odniesienia do obrazów na Twoim portalu." @@ -7231,16 +7170,16 @@ msgid "" "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." msgstr "" -"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn " -"(którzy sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we " -"własnej witrynie, ostrzegający o problemie z bezpieczeństwem." +"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy " +"sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej " +"witrynie, ostrzegający o problemie z bezpieczeństwem." #: ../../Zotlabs/Module/Setup.php:665 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "" -"Może to powodować problemy z użytecznością w innym serwisie (nie tylko na " +"Może to powodować problemy z użytecznością w innym portalu (nie tylko na " "Twoim), więc musimy nalegać na to wymaganie." #: ../../Zotlabs/Module/Setup.php:666 @@ -7258,8 +7197,8 @@ msgid "" "server communications." msgstr "" "Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, " -"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie " -"są one wymagane przez przeglądarki, ale są wymagane do komunikacji między " +"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są " +"one wymagane przez przeglądarki, ale są wymagane do komunikacji między " "serwerami." #: ../../Zotlabs/Module/Setup.php:669 @@ -7268,11 +7207,10 @@ msgstr "Walidacja certyfikatu SSL" #: ../../Zotlabs/Module/Setup.php:675 msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +"Url rewrite in .htaccess is not working. Check your server configuration.Test: " msgstr "" -"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację " -"serwera. Test: " +"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. " +"Test: " #: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" @@ -7280,13 +7218,12 @@ msgstr "Przepisywanie adresu URL działa" #: ../../Zotlabs/Module/Setup.php:691 msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +"The database configuration file \".htconfig.php\" could not be written. Please " +"use the enclosed text to create a configuration file in your web server root." msgstr "" "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj " -"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym " -"serwera WWW." +"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera " +"WWW." #: ../../Zotlabs/Module/Setup.php:720 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:401 @@ -7588,7 +7525,7 @@ msgstr "Ocena: " #: ../../Zotlabs/Module/Ratings.php:99 msgid "Website: " -msgstr "Serwis: " +msgstr "Portal: " #: ../../Zotlabs/Module/Ratings.php:101 msgid "Description: " @@ -7612,7 +7549,7 @@ msgstr "Hasła nie pasują do siebie" #: ../../Zotlabs/Module/Register.php:179 msgid "Terms of Service not accepted" -msgstr "Regulamin serwisu nie został zaakceptowany" +msgstr "Regulamin portalu nie został zaakceptowany" #: ../../Zotlabs/Module/Register.php:241 msgid "Invitation code succesfully applied" @@ -7636,7 +7573,7 @@ msgstr "Zaproszenia nie są dostępne" #: ../../Zotlabs/Module/Register.php:292 msgid "Registration on this hub is by invitation only" -msgstr "Rejestracja w tym serwisie odbywa się wyłącznie za zaproszeniem" +msgstr "Rejestracja w tym portalu odbywa się wyłącznie za zaproszeniem" #: ../../Zotlabs/Module/Register.php:328 ../../include/account.php:435 #: ../../include/account.php:503 @@ -7663,7 +7600,7 @@ msgstr "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora." #: ../../Zotlabs/Module/Register.php:445 msgid "Register at another affiliated hub in case when prefered" msgstr "" -"Zarejestruj się w innym stowarzyszonym serwisie w przypadku, gdy potrzebujesz " +"Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz " "takiego rozwiązania" #: ../../Zotlabs/Module/Register.php:458 @@ -7672,7 +7609,7 @@ msgstr "Rejestracja na tym portalu wymaga uprzedniego zaproszenia." #: ../../Zotlabs/Module/Register.php:459 msgid "Register at another affiliated hub" -msgstr "Zarejestruj się w innym stowarzyszonym serwisie" +msgstr "Zarejestruj się w innym stowarzyszonym portalu" #: ../../Zotlabs/Module/Register.php:473 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" @@ -7681,12 +7618,12 @@ msgstr "Regulamin" #: ../../Zotlabs/Module/Register.php:479 #, php-format msgid "I accept the %s for this website" -msgstr "Akceptuję % s dla tego serwisu" +msgstr "Akceptuję % s dla tego portalu" #: ../../Zotlabs/Module/Register.php:486 #, php-format msgid "I am over %s years of age and accept the %s for this website" -msgstr "Mam ponad % s lat i akceptuję % s dla tego serwisu" +msgstr "Mam ponad % s lat i akceptuję % s dla tego portalu" #: ../../Zotlabs/Module/Register.php:496 msgid "Your email address" @@ -7719,7 +7656,7 @@ msgstr "" #: ../../Zotlabs/Module/Register.php:514 msgid "Why do you want to join this hub?" -msgstr "Dlaczego chcesz dołączyć do tego serwisu?" +msgstr "Dlaczego chcesz dołączyć do tego portalu?" #: ../../Zotlabs/Module/Register.php:514 msgid "This will help to review your registration" @@ -7735,10 +7672,8 @@ msgid "Register" msgstr "Zarejestruj się" #: ../../Zotlabs/Module/Register.php:575 -msgid "" -"This site has exceeded the number of allowed daily account registrations." -msgstr "" -"Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont." +msgid "This site has exceeded the number of allowed daily account registrations." +msgstr "Na tym portalu przekroczono dozwoloną liczbę dziennych rejestracji kont." #: ../../Zotlabs/Module/Acl.php:123 ../../Zotlabs/Module/Lockview.php:117 #: ../../Zotlabs/Module/Lockview.php:153 @@ -7952,7 +7887,7 @@ msgstr "Wszelkie połączenia" #: ../../Zotlabs/Module/Settings/Channel.php:333 msgid "Anybody on this website" -msgstr "Każdy w tym serwisie" +msgstr "Każdy w tym portalu" #: ../../Zotlabs/Module/Settings/Channel.php:334 msgid "Anybody in this network" @@ -8054,8 +7989,7 @@ msgid "Simple Privacy Settings:" msgstr "Proste ustawienia prywatności:" #: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "" -"Very Public - extremely permissive (should be used with caution)" +msgid "Very Public - extremely permissive (should be used with caution)" msgstr "" "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" @@ -8096,7 +8030,7 @@ msgstr "Po tej ilości dni wygasają inne treści w kanale" #: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "0 or blank to use the website limit." -msgstr "0 lub puste, aby użyć limitu serwisu." +msgstr "0 lub puste, aby użyć limitu portalu." #: ../../Zotlabs/Module/Settings/Channel.php:525 #, php-format @@ -8105,11 +8039,11 @@ msgstr "Ta strona wygasa po %d dniach." #: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "This website does not expire imported content." -msgstr "Na tym serwis internetowym importowanej zawartości nie jest wygaszana." +msgstr "Na tym portalu importowana treść nie jest wygaszana." #: ../../Zotlabs/Module/Settings/Channel.php:525 msgid "The website limit takes precedence if lower than your limit." -msgstr "Limit serwisu ma pierwszeństwo, jeśli jest niższy niż Twój limit." +msgstr "Limit portalu ma pierwszeństwo, jeśli jest niższy niż Twój limit." #: ../../Zotlabs/Module/Settings/Channel.php:526 msgid "Maximum Friend Requests/Day:" @@ -8140,8 +8074,7 @@ msgstr "Maksymalna liczba prywatnych wiadomości dziennie od nieznanych osób:" msgid "Useful to reduce spamming" msgstr "Przydatne do ograniczenia spamowania" -#: ../../Zotlabs/Module/Settings/Channel.php:547 -#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:547 ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Ustawienia powiadomień" @@ -8286,7 +8219,7 @@ msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "" -"Jeśli twój kanał jest powielany na wielu serwisach, ustaw to na preferowaną " +"Jeśli twój kanał jest powielany na wielu ortalach, ustaw to na preferowaną " "lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s" #: ../../Zotlabs/Module/Settings/Channel.php:583 @@ -8522,7 +8455,7 @@ msgstr "Tutaj możesz wprowadzić osobiste notatki do odbiorcy/odbiorców" #: ../../Zotlabs/Module/Siteinfo.php:21 msgid "About this site" -msgstr "O tym serwisie" +msgstr "O tym portalu" #: ../../Zotlabs/Module/Siteinfo.php:22 msgid "Site Name" @@ -8634,7 +8567,7 @@ msgstr "zdjęcie okładkowe" #: ../../Zotlabs/Module/Cover_photo.php:418 msgid "Your cover photo may be visible to anybody on the internet" -msgstr "Twoje zdjęcie okładkowe może być widoczne dla każdego w internecie" +msgstr "Twoje zdjęcie okładkowe może być widoczne dla każdego w Internecie" #: ../../Zotlabs/Module/Cover_photo.php:422 msgid "Change Cover Photo" @@ -8754,7 +8687,7 @@ msgstr "*" #: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:368 msgid "Channel Sources" -msgstr "Źródła" +msgstr "Źródła kanału" #: ../../Zotlabs/Module/Sources.php:108 msgid "Manage remote sources of content for your channel." @@ -8766,11 +8699,11 @@ msgstr "Nowe źródło" #: ../../Zotlabs/Module/Sources.php:120 ../../Zotlabs/Module/Sources.php:154 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"Import all or selected content from the following channel into this channel and " +"distribute it according to your channel settings." msgstr "" -"Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału " -"i rozpowszechniaj je zgodnie z ustawieniami kanału." +"Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału i " +"rozpowszechniaj je zgodnie z ustawieniami kanału." #: ../../Zotlabs/Module/Sources.php:121 ../../Zotlabs/Module/Sources.php:155 msgid "Only import content with these words (one per line)" @@ -8789,8 +8722,8 @@ msgid "" "Add the following categories to posts imported from this source (comma " "separated)" msgstr "" -"Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła " -"(oddzielone przecinkami)" +"Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone " +"przecinkami)" #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 msgid "Resend posts with this channel as author" @@ -8831,7 +8764,7 @@ msgstr "Zaczep kogoś w swojej książce adresowej" #: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:351 #: ../../include/conversation.php:1143 msgid "Poke" -msgstr "Zaczep" +msgstr "Zaczepka" #: ../../Zotlabs/Module/Poke.php:200 msgid "Poke somebody" @@ -9014,16 +8947,16 @@ msgid "" "You can select files via the upload button or drop them right here or into an " "existing folder." msgstr "" -"Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub " -"do istniejącego folderu." +"Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do " +"istniejącego folderu." #: ../../Zotlabs/Zot/Auth.php:154 msgid "" "Remote authentication blocked. You are logged into this site locally. Please " "logout and retry." msgstr "" -"Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej " -"stronie. Wyloguj się i spróbuj ponownie." +"Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. " +"Wyloguj się i spróbuj ponownie." #: ../../Zotlabs/Zot/Auth.php:266 #: ../../extend/addon/hubzilla-addons/openid/Mod_Openid.php:76 @@ -9035,8 +8968,8 @@ msgstr "Witaj %s. Zdalne uwierzytelnianie powiodło się." #: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:23 msgid "" "A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +"may apply to this group and any future members. If this is not " +"what you intended, please create another group with a different name." msgstr "" "Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące " "elementów mogą dotyczyć tej grupy i wszystkich przyszłych " @@ -9071,7 +9004,7 @@ msgstr "dodaj" #: ../../Zotlabs/Lib/Connect.php:46 ../../Zotlabs/Lib/Connect.php:143 #: ../../include/follow.php:39 msgid "Channel is blocked on this site." -msgstr "Kanał jest zablokowany na tej stronie." +msgstr "Kanał jest zablokowany na tym portalu." #: ../../Zotlabs/Lib/Connect.php:51 ../../include/follow.php:44 msgid "Channel location missing." @@ -9079,7 +9012,7 @@ msgstr "Brak lokalizacji kanału." #: ../../Zotlabs/Lib/Connect.php:103 ../../include/follow.php:168 msgid "Remote channel or protocol unavailable." -msgstr "Zdalny kanał lub protokół jest niedostępny." +msgstr "Niedostępny jest zdalny kanał lub protokół." #: ../../Zotlabs/Lib/Connect.php:137 ../../include/follow.php:192 msgid "Channel discovery failed." @@ -9107,7 +9040,7 @@ msgstr "Narzędzie Zaprzyjaźnienia" #: ../../Zotlabs/Lib/Apps.php:327 msgid "Site Admin" -msgstr "Administrator serwisu" +msgstr "Administrator portalu" #: ../../Zotlabs/Lib/Apps.php:328 #: ../../extend/addon/hubzilla-addons/buglink/buglink.php:16 @@ -9138,7 +9071,7 @@ msgstr "Zdalna diagnostyka" #: ../../Zotlabs/Lib/Apps.php:335 msgid "Suggest Channels" -msgstr "Zaproponuj kanały" +msgstr "Proponowane kanały" #: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 #: ../../include/nav.php:131 ../../boot.php:1716 @@ -9180,7 +9113,7 @@ msgstr "Sonda" #: ../../Zotlabs/Lib/Apps.php:355 msgid "Suggest" -msgstr "Prpozycja" +msgstr "Propozycja" #: ../../Zotlabs/Lib/Apps.php:356 msgid "Random Channel" @@ -9212,7 +9145,7 @@ msgstr "Profile" #: ../../Zotlabs/Lib/Apps.php:365 msgid "Notifications" -msgstr "Powiadomienie" +msgstr "Powiadomienia" #: ../../Zotlabs/Lib/Apps.php:366 msgid "Order Apps" @@ -9292,8 +9225,8 @@ msgstr "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów." #: ../../Zotlabs/Lib/AccessList.php:28 msgid "" "A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is " -"not what you intended, please create another list with a different name." +"may apply to this list and any future members. If this is not " +"what you intended, please create another list with a different name." msgstr "" "Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące " "elementów mogą dotyczyć tej listy i wszystkich przyszłych " @@ -9392,8 +9325,7 @@ msgstr "Ta wiadomość e-mail została wysłana przez %1$s z %2$s." #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format msgid "" -"To stop receiving these messages, please adjust your Notification Settings at " -"%s" +"To stop receiving these messages, please adjust your Notification Settings at %s" msgstr "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s" #: ../../Zotlabs/Lib/Enotify.php:68 @@ -9562,7 +9494,7 @@ msgstr "%1$s oznaczył tagiem Twój wpis na %2$s" #: ../../Zotlabs/Lib/Enotify.php:391 #, php-format msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s tagged [zrl=%2$s]Twój wpis[/zrl]" +msgstr "%1$s oznaczył tagiem [zrl=%2$s]Twój wpis[/zrl]" #: ../../Zotlabs/Lib/Enotify.php:402 msgid "[$Projectname:Notify] Introduction received" @@ -9571,12 +9503,12 @@ msgstr "[$Projectname:Notify] Otrzymano prośbę o połączenie" #: ../../Zotlabs/Lib/Enotify.php:403 #, php-format msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Otrzymał(eś/aś) nowe żądanie połączenia od „%1$s” na %2$s" +msgstr "Masz nową prośbę połączenia od „%1$s” na %2$s" #: ../../Zotlabs/Lib/Enotify.php:404 #, php-format msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Otrzymał(eś/aś) [zrl=%1$s]nowe żądanie połączenia [/zrl] od %2$s." +msgstr "Masz [zrl=%1$s]nową prośbę połączenia [/zrl] od %2$s." #: ../../Zotlabs/Lib/Enotify.php:407 ../../Zotlabs/Lib/Enotify.php:425 #, php-format @@ -9595,13 +9527,12 @@ msgstr "[$Projectname:Notify] Otrzymano propozycję znajomości" #: ../../Zotlabs/Lib/Enotify.php:417 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Otrzymał(eś/aś) propozycję znajomości od „%1$s” na %2$s" +msgstr "Masz propozycję znajomości od '%1$s' na %2$s" #: ../../Zotlabs/Lib/Enotify.php:418 #, php-format msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" -"Otrzymał(eś/aś) [zrl=%1$s] propozycję znajomości[/ zrl] dla %2$s od %3$s." +msgstr "Masz [zrl=%1$s] propozycję znajomości[/ zrl] dla %2$s od %3$s." #: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" @@ -9614,7 +9545,7 @@ msgstr "Zdjęcie:" #: ../../Zotlabs/Lib/Enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the suggestion." -msgstr "Odwiedź %s, aby zaakceptować lub odrzucić popozycję." +msgstr "Odwiedź %s, aby zaakceptować lub odrzucić propozycję." #: ../../Zotlabs/Lib/Enotify.php:652 msgid "[$Projectname:Notify]" @@ -9666,8 +9597,7 @@ msgstr "status został zweryfikowany" msgid "Unable to verify site signature for %s" msgstr "Nie można zweryfikować podpisu witryny dla %s" -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:94 +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 ../../Zotlabs/Lib/NativeWikiPage.php:94 msgid "(No Title)" msgstr "(Brak tytułu)" @@ -10043,7 +9973,7 @@ msgstr "Tylko fora publiczne" #: ../../Zotlabs/Lib/Libzotdir.php:168 ../../include/dir_fns.php:146 msgid "This Website Only" -msgstr "Tylko ten serwis" +msgstr "Tylko ten portal" #: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" @@ -10110,14 +10040,12 @@ msgstr "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzon #: ../../Zotlabs/Lib/PermissionDescription.php:150 msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." +"This is your default setting for the audience of your normal stream, and posts." msgstr "" "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." #: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" +msgid "This is your default setting for who can view your default channel profile" msgstr "" "To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny " "profil kanału" @@ -10128,8 +10056,7 @@ msgstr "" "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" #: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" +msgid "This is your default setting for who can view your file storage and photos" msgstr "" "Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i " "zdjęć" @@ -10222,8 +10149,7 @@ msgstr "Importuj książkę adresową" msgid "Select an addressbook to import to" msgstr "Wybierz książkę adresową do zaimportowania" -#: ../../Zotlabs/Widget/Filer.php:28 -#: ../../Zotlabs/Widget/Activity_filter.php:189 +#: ../../Zotlabs/Widget/Filer.php:28 ../../Zotlabs/Widget/Activity_filter.php:189 #: ../../include/contact_widgets.php:53 ../../include/features.php:318 msgid "Saved Folders" msgstr "Zapisywane foldery" @@ -10276,8 +10202,7 @@ msgstr "zdjęcie/obraz" #: ../../Zotlabs/Widget/Forums.php:100 #: ../../Zotlabs/Widget/Activity_filter.php:123 #: ../../Zotlabs/Widget/Notifications.php:139 -#: ../../Zotlabs/Widget/Notifications.php:140 -#: ../../include/acl_selectors.php:125 +#: ../../Zotlabs/Widget/Notifications.php:140 ../../include/acl_selectors.php:125 msgid "Forums" msgstr "Fora" @@ -10320,7 +10245,7 @@ msgstr "Zadania" #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" -msgstr "Rejestracja członków czeka na potwierdzenie" +msgstr "Rejestracje członkowskie czekają na potwierdzenie" #: ../../Zotlabs/Widget/Admin.php:29 msgid "Inspect queue" @@ -11434,8 +11359,8 @@ msgstr "Pomijaj zduplikowane wpisy i komentarze" #: ../../include/features.php:259 msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." +"Prevent posts with identical content to be published with less than two minutes " +"in between submissions." msgstr "" "Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie " "minuty między przesłaniami." @@ -11494,8 +11419,8 @@ msgstr "Alternatywna kolejność strumienia" #: ../../include/features.php:327 msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" +"Ability to order the stream by last post date, last comment date or unthreaded " +"activities" msgstr "" "Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty " "ostatniego komentarza lub nieprzeczytanych aktywności" @@ -11522,8 +11447,7 @@ msgstr "Filtr wpisów osobistych" #: ../../include/features.php:351 msgid "Ability to display only posts that you've interacted on" -msgstr "" -"Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję" +msgstr "Możliwość wyświetlania tylko tych wpisów, z którymi miało się interakcję" #: ../../include/features.php:372 msgid "Photo Location" @@ -11569,8 +11493,7 @@ msgstr "Wylogowano." #: ../../include/auth.php:294 msgid "Email validation is incomplete. Please check your email." msgstr "" -"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres " -"email." +"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." #: ../../include/auth.php:310 msgid "Failed authentication" @@ -12007,8 +11930,8 @@ msgstr "Własny wybór" #: ../../include/acl_selectors.php:146 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " -"limit the scope of \"Allow\"." +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit " +"the scope of \"Allow\"." msgstr "" "Wybierz \"Zezwól\", aby zezwolić na przeglądanie. \"Nie zezwalaj\" umożliwia " "zastąpienie i ograniczenie zakresu \"Zezwalaj\"." @@ -12071,8 +11994,8 @@ msgstr "Nie można zaimportować usuniętego kanału." msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -"Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. " -"Import nieudany." +"Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import " +"nieudany." #: ../../include/import.php:76 #: ../../extend/addon/hubzilla-addons/diaspora/import_diaspora.php:44 @@ -12896,7 +12819,7 @@ msgstr "Podany adres e-mail jest nieprawidłowy" #: ../../include/account.php:41 msgid "The provided email domain is not among those allowed on this site" -msgstr "Podana domena e-mail nie należy do domen dozwolonych w tym serwisie" +msgstr "Podana domena e-mail nie należy do domen dozwolonych w tym portalu" #: ../../include/account.php:48 msgid "The provided email address is already registered at this site" @@ -13368,7 +13291,7 @@ msgid "" "install it on this site." msgstr "" "Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz " -"uprawnień do zainstalowania go w tym serwisie." +"uprawnień do zainstalowania go w tym portalu." #: ../../include/bbcode.php:551 msgid "card" @@ -13405,9 +13328,8 @@ msgstr "%1$s obserwujesz teraz %2$s" #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:16 msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +"The GNU-Social protocol does not support location independence. Connections you " +"make within that network may be unreachable from alternate channel locations." msgstr "" "Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia " "nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." @@ -13474,7 +13396,7 @@ msgstr "Wysłano %1$d wiadomości z %2$d zadysponowanych." #: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:81 msgid "Send email to all hub members." -msgstr "Wyślij wiadomość e-mail do wszystkich członków serwisu." +msgstr "Wyślij wiadomość e-mail do wszystkich członków portalu." #: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:92 #: ../../extend/addon/hubzilla-addons/mailtest/mailtest.php:96 @@ -13487,7 +13409,7 @@ msgstr "Adres e-mail nadawcy" #: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:94 msgid "Test mode (only send to hub administrator)" -msgstr "Tryb testowy (wysyłaj tylko do administratora serwisu)" +msgstr "Tryb testowy (wysyłaj tylko do administratora portalu)" #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:51 msgid "Your Webbie:" @@ -13612,15 +13534,15 @@ msgid "" "This website is tracked using the Piwik " "analytics tool." msgstr "" -"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." +"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:88 #, php-format msgid "" "If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." +"set a cookie to prevent Piwik from tracking further visits of the site (opt-" +"out)." msgstr "" "Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie " @@ -13719,8 +13641,8 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:126 msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers " -"at this rate per hour" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at " +"this rate per hour" msgstr "" "Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na " "jest z taką szybkością na godzinę" @@ -13767,8 +13689,8 @@ msgid "" "If checked, the Rendezvous database tables will be deleted when the plugin is " "uninstalled." msgstr "" -"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie " -"tabele z bazy danych Rendezvous." +"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele " +"z bazy danych Rendezvous." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "Mapbox Access Token" @@ -13776,8 +13698,8 @@ msgstr "Token dostępu Mapbox" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." +"If you enter a Mapbox access token, it will be used to retrieve map tiles from " +"Mapbox instead of the default OpenStreetMap tile server." msgstr "" "Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania " "fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." @@ -13803,13 +13725,13 @@ msgstr "Witamy w Rendezvous!" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:169 msgid "" "Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." +"the other members, tap the GPS control. When your location is discovered, a red " +"dot will appear and others will be able to see you on the map." msgstr "" -"Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu " -"rozpoczęcia udostępniania swojej lokalizacji innym członkom, dotknij elementu " -"sterującego GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona " -"kropka i inni będą mogli Cię zobaczyć na mapie." +"Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia " +"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego " +"GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni " +"będą mogli Cię zobaczyć na mapie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:171 msgid "Let's meet here" @@ -13841,8 +13763,8 @@ msgstr "Edytuj alert zbliżeniowy" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when this member is within a certain radius of " +"you.

Enter a radius in meters (0 to disable):" msgstr "" "Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w " "określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby " @@ -13888,10 +13810,10 @@ msgstr "Dodaj nowe spotkanie" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:200 msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." +"Create a new rendezvous and share the access link with those you wish to invite " +"to the group. Those who open the link become members of the rendezvous. They " +"can view other member locations, add markers to the map, or share their own " +"locations with the group." msgstr "" "Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić " "do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą " @@ -13984,8 +13906,7 @@ msgstr "Weryfikacja dwuetapowa TOTP" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:24 msgid "Enter the 2-step verification generated by your authenticator app:" msgstr "" -"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację " -"uwierzytelniającą:" +"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:25 msgid "Success!" @@ -14260,8 +14181,7 @@ msgid "Enable Subscription Management Module" msgstr "Włącz moduł zarządzania subskrypcjami" #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:223 -msgid "" -"Cannot include subscription items with different terms in the same order." +msgid "Cannot include subscription items with different terms in the same order." msgstr "" "Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej " "kolejności." @@ -14390,8 +14310,8 @@ msgstr "Podstawowa waluta sprzedawcy" #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"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 za pomocą podanego przez Ciebie " "identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora." @@ -14463,7 +14383,7 @@ msgstr "Import z magazynu plików Hubzilla" #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:82 msgid "This will import all your cloud files from another server." msgstr "" -"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu " +"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu " "Hubzilla." #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:83 @@ -14489,8 +14409,8 @@ msgid "" "The diaspora protocol does not support location independence. Connections you " "make within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia " -"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane " +"w tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 msgid "Diaspora Protocol App" @@ -14503,11 +14423,11 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "" -"If this setting is disabled only your contacts will be able to comment or " -"like your public posts" +"If this setting is disabled only your contacts will be able to comment or like " +"your public posts" msgstr "" -"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły " -"komentować lub aprobować Twoje publiczne wpisy" +"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować " +"lub aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" @@ -14537,8 +14457,7 @@ msgstr "%1$s niepolubień %2$s %3$s" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:70 msgid "" "Please install the statistics addon to be able to configure a diaspora relay" -msgstr "" -"Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" +msgstr "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 msgid "Diaspora Relay Handle" @@ -14610,8 +14529,8 @@ msgid "" "directory** is aware of, and not all those known in the network. This also " "applies to chatrooms," msgstr "" -"Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które " -"są widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to " +"Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są " +"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to " "również czatów," #: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:25 @@ -14638,8 +14557,7 @@ msgstr "Aplikacja Hide Aside" #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:24 #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:28 msgid "Fade out aside areas after a while when using endless scroll" -msgstr "" -"Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania" +msgstr "Powoduje zanikanie obszaru po chwili, gdy używa się długiego przewijania" #: ../../extend/addon/hubzilla-addons/hideaside/Mod_Hideaside.php:27 #: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:23 @@ -14699,8 +14617,7 @@ msgid "Default zoom" msgstr "Powiększenie domyślne" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgid "The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" "Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od " "serwera kafelków)" @@ -14818,8 +14735,8 @@ msgstr "Użyj centralnej bazy użytkowników" #: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " +"If enabled, members will automatically login to an ejabberd server that has to " +"be installed on this machine with synchronized credentials via the " "\"auth_ejabberd.php\" script." msgstr "" "Jeśli jest włączone, członkowie będą automatycznie logować się do serwera " @@ -14883,8 +14800,8 @@ msgstr "Aplikacja Losowa Planeta" msgid "" "Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium " -"Gwiezdnych Wojen" +"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych " +"Wojen" #: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:152 msgid "Possible adult content" @@ -14909,20 +14826,20 @@ msgstr "Zwija treść zawierającą określone słowa" #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:44 msgid "" -"This app looks in posts for the words/text you specify below, and collapses " -"any content containing those keywords so it is not displayed at inappropriate " +"This app looks in posts for the words/text you specify below, and collapses any " +"content containing those keywords so it is not displayed at inappropriate " "times, such as sexual innuendo that may be improper in a work setting. It is " "polite and recommended to tag any content containing nudity with #NSFW. This " -"filter can also match any other word/text you specify, and can thereby be " -"used as a general purpose content filter." +"filter can also match any other word/text you specify, and can thereby be used " +"as a general purpose content filter." msgstr "" "Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie " "treści zawierające te słowa kluczowe, aby nie były wyświetlane w " "nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być " -"niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie " -"wszelkich treści zawierających nagość tagiem #NSFW. Ten filtr może również " -"pasować do dowolnego innego określonego słowa lub tekstu, dzięki czemu może " -"być używany jako filtr treści ogólnego przeznaczenia." +"niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich " +"treści zawierających nagość tagiem #NSFW. Ten filtr może również pasować do " +"dowolnego innego określonego słowa lub tekstu, dzięki czemu może być używany " +"jako filtr treści ogólnego przeznaczenia." #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 msgid "Comma separated list of keywords to hide" @@ -14954,8 +14871,8 @@ msgstr "Nowa gra z handicapem" #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:61 msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " +"Three dimensional tic-tac-toe is just like the traditional game except that it " +"is played on multiple levels simultaneously. " msgstr "" "Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym " "wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. " @@ -14965,16 +14882,16 @@ msgid "" "In this case there are three levels. You win by getting three in a row on any " "level, as well as up, down, and diagonally across the different levels." msgstr "" -"W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na " -"dowolnym poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." +"W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym " +"poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:64 msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." +"The handicap game disables the center position on the middle level because the " +"player claiming this square often has an unfair advantage." msgstr "" -"Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ " -"gracz zajmujący to pole często ma nieuczciwą przewagę." +"Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz " +"zajmujący to pole często ma nieuczciwą przewagę." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:183 msgid "You go first..." @@ -15006,8 +14923,8 @@ msgid "" "Photo Cache addon saves a copy of images from external sites locally to " "increase your anonymity in the web." msgstr "" -"Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, " -"aby zwiększyć Twoją anonimowość w sieci." +"Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby " +"zwiększyć Twoją anonimowość w sieci." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:42 msgid "Photo Cache App" @@ -15087,7 +15004,7 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:145 msgid "Post to GNU social" -msgstr "Publikuj w serwisie społecznościowym GNU" +msgstr "Publikuj na portalu społecznościowym GNU" #: ../../extend/addon/hubzilla-addons/statusnet/statusnet.php:594 msgid "API URL" @@ -15099,17 +15016,15 @@ msgstr "Nazwa aplikacji" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:61 msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." +"Please contact your site administrator.
The provided API URL is not valid." msgstr "" -"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu " -"API jest nieprawidłowy." +"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API " +"jest nieprawidłowy." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:98 msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej " -"ścieżce." +"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:130 msgid "GNU social settings updated." @@ -15128,9 +15043,9 @@ msgstr "Globalnie dostępne klucze OAuthKey społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:183 msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +"There are preconfigured OAuth key pairs for some GNU social servers available. " +"If you are using one of them, please use these credentials.
If not feel " +"free to connect to any other GNU social instance (see below)." msgstr "" "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów " "społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń. " @@ -15143,11 +15058,11 @@ msgstr "Podaj własne dane logowania OAuth" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:200 msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as " -"an desktop client on your GNU social account, copy the consumer key pair here " -"and enter the API base root.
Before you register your own OAuth key pair " -"ask the administrator if there is already a key pair for this Hubzilla " -"installation at your favourite GNU social installation." +"No consumer key pair for GNU social found. Register your Hubzilla Account as an " +"desktop client on your GNU social account, copy the consumer key pair here and " +"enter the API base root.
Before you register your own OAuth key pair ask " +"the administrator if there is already a key pair for this Hubzilla installation " +"at your favourite GNU social installation." msgstr "" "Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj " "swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie " @@ -15178,20 +15093,18 @@ msgstr "Nazwa aplikacji społecznościowej GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:239 msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box below " -"and submit the form. Only your public posts will be posted " -"to GNU social." +"To connect to your GNU social account click the button below to get a security " +"code from GNU social which you have to copy into the input box below and submit " +"the form. Only your public posts will be posted to GNU social." msgstr "" "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy " -"przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, " -"który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. " -"Tylko twoje publiczne wpisy będą publikowane w " -"społecznościach GNU." +"przycisk, aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, " +"który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko " +"twoje publiczne wpisy będą publikowane w społecznościach GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:241 msgid "Log in with GNU social" -msgstr "Zaloguj się za pomocą serwisu społecznościowego GNU" +msgstr "Zaloguj się za pomocą portalu społecznościowego GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:244 msgid "Copy the security code from GNU social here" @@ -15216,16 +15129,16 @@ msgstr "Obecnie połączony z: " #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:277 msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details " +"from unknown viewers?) the link potentially included in public postings " +"relayed to GNU social will lead the visitor to a blank page informing the " +"visitor that the access to your profile has been restricted." msgstr "" "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik " "(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), " "ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, " -"będzie kierował odwiedzającego na pustą stronę z informacją dla " -"odwiedzającego, że dostęp do Twojego profilu został ograniczony." +"będzie kierował odwiedzającego na pustą stronę z informacją dla odwiedzającego, " +"że dostęp do Twojego profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "Post to GNU social by default" @@ -15236,8 +15149,8 @@ msgid "" "If enabled your public postings will be posted to the associated GNU-social " "account by default" msgstr "" -"Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane " -"na powiązane konto społecznościowe GNU" +"Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na " +"powiązane konto społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:291 #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:171 @@ -15379,7 +15292,7 @@ msgstr "twarz w stylu retro arcade" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:128 msgid "Hub default profile photo" -msgstr "Domyślne zdjęcie profilowe serwisu" +msgstr "Domyślne zdjęcie profilowe portalu" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 msgid "Information" @@ -15402,8 +15315,8 @@ msgstr "Domyślny obraz awatara" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w " -"Gravatarze. Zobacz README" +"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. " +"Zobacz README" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 msgid "Rating of images" @@ -15447,8 +15360,7 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:211 msgid "" -"This app enables one or more social provider sign-in buttons on the login " -"page." +"This app enables one or more social provider sign-in buttons on the login page." msgstr "" "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego " "przycisku logowania dostawcy usług społecznościowych." @@ -15523,8 +15435,8 @@ msgstr "Import albumu fotograficznego Redmatrix" #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:130 msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do " -"tego kanału." +"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego " +"kanału." #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:131 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:121 @@ -15571,8 +15483,7 @@ msgstr "Przekazuj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:103 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +"No consumer key pair for Twitter found. Please contact your site administrator." msgstr "" "Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z " "administratorem witryny." @@ -15580,16 +15491,16 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:125 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not yet " -"connected your account to your Twitter account. To do so click the button " -"below to get a PIN from Twitter which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to Twitter." +"connected your account to your Twitter account. To do so click the button below " +"to get a PIN from Twitter which you have to copy into the input box below and " +"submit the form. Only your public posts will be posted to " +"Twitter." msgstr "" "W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś " "jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy " "przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola " -"wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane " -"tylko Twoje publiczne wpisy." +"wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane tylko " +"Twoje publiczne wpisy." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:127 msgid "Log in with Twitter" @@ -15601,16 +15512,16 @@ msgstr "Skopiuj tutaj PIN z Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:152 msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details " +"from unknown viewers?) the link potentially included in public postings " +"relayed to Twitter will lead the visitor to a blank page informing the visitor " +"that the access to your profile has been restricted." msgstr "" -" Uwaga: Ze względu na Twoje ustawienia prywatności " -"(Ukryj szczegóły swojego profilu przed nieznanymi widzami?) ten " -"link, potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, " -"będzie prowadził odwiedzającego do pustej strony informującej gościa, że " -"dostęp do Twojego profilu został ograniczony." +" Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj " +"szczegóły swojego profilu przed nieznanymi widzami?) ten link, " +"potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, będzie " +"prowadził odwiedzającego do pustej strony informującej gościa, że dostęp do " +"Twojego profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 msgid "Twitter post length" @@ -15629,8 +15540,8 @@ msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "" -"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie " -"publikowane na powiązanym koncie Twittera" +"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane " +"na powiązanym koncie Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:181 msgid "Twitter Crosspost Connector" @@ -15650,8 +15561,8 @@ msgstr "Twórca projektu i kierownik techniczny" #: ../../extend/addon/hubzilla-addons/donate/donate.php:49 msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." +"And the hundreds of other people and organisations who helped make the Hubzilla " +"possible." msgstr "" "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." @@ -15668,12 +15579,12 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/donate/donate.php:53 msgid "" "There is no corporate funding and no ads, and we do not collect and sell your " -"personal information. (We don't control your personal information - " -"you do.)" +"personal information. (We don't control your personal information - you " +"do.)" msgstr "" "Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie " -"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych " -"osobowych - Ty tak )." +"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych " +"- Ty tak )." #: ../../extend/addon/hubzilla-addons/donate/donate.php:54 msgid "" @@ -15699,7 +15610,7 @@ msgstr "Wspomóż" msgid "" "Choose a project, developer, or public hub to support with a one-time donation" msgstr "" -"Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową " +"Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową " "darowizną" #: ../../extend/addon/hubzilla-addons/donate/donate.php:62 @@ -15715,8 +15626,8 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/donate/donate.php:64 msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" +"Please indicate if you would like your first name or full name (or nothing) to " +"appear in our sponsor listing" msgstr "" "Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej " "liście sponsorów" @@ -15834,12 +15745,11 @@ msgstr "" #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:136 msgid "" "This will import all your conversations and cloud files from a cloned channel " -"on another server. This may take a while if you have lots of posts and or " -"files." +"on another server. This may take a while if you have lots of posts and or files." msgstr "" "Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w " -"chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, " -"jeśli masz dużo wpisów lun plików." +"chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli " +"masz dużo wpisów lun plików." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 msgid "Include posts" @@ -15986,8 +15896,8 @@ msgstr "Usuń rozmowę" #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:296 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +"No secure communications available. You may be able to respond " +"from the sender's profile page." msgstr "" "Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony " "profilu nadawcy." @@ -16264,11 +16174,10 @@ msgid "Wordpress Post" msgstr "Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:22 -msgid "" -"Allow magic authentication only to websites of your immediate connections" +msgid "Allow magic authentication only to websites of your immediate connections" msgstr "" -"Zezwalaj na magiczne uwierzytelnianie tylko w serwisach internetowych Twoich " -"bezpośrednich połączeń" +"Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich " +"połączeń" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:28 #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:33 @@ -16566,8 +16475,8 @@ msgstr "Aplikacja Zamazywanie Lokalizacji" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:35 msgid "Blur your precise location if your channel uses browser location mapping" msgstr "" -"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania " -"lokalizacji w przeglądarce" +"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji " +"w przeglądarce" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:40 msgid "Minimum offset in meters" @@ -16587,8 +16496,7 @@ msgstr "Aplikacja Strona początkowa" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:51 msgid "Set a preferred page to load on login from home page" -msgstr "" -"Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej" +msgstr "Ustaw preferowaną stronę do załadowania przy logowaniu ze strony głównej" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "Page to load after login" @@ -16596,13 +16504,13 @@ msgstr "Strona do załadowania po zalogowaniu" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." +"Examples: "apps", "network?f=&gid=37" (privacy collection), " +""channel" or "notifications/system" (leave blank for " +"default network page (grid)." msgstr "" "Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja " -"prywatności), "kanał" lub "powiadomienie/system" " -"(pozostaw puste dla domyślnej strony sieci." +"prywatności), "kanał" lub "powiadomienie/system" (pozostaw " +"puste dla domyślnej strony sieci." #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:70 msgid "Startpage" @@ -16761,8 +16669,8 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Klasa usługi" #~ msgid "" -#~ "Only allow new member registrations with an invitation code. Above " -#~ "register policy must be set to Yes." +#~ "Only allow new member registrations with an invitation code. Above register " +#~ "policy must be set to Yes." #~ msgstr "" #~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. " #~ "Powyższe zasady rejestrów muszą być ustawione na Tak." @@ -16778,8 +16686,8 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgid "" #~ "Please indicate acceptance of the Terms of Service. Registration failed." #~ msgstr "" -#~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. Rejestracja nieudana." +#~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. " +#~ "Rejestracja nieudana." #~ msgid "Passwords do not match." #~ msgstr "Hasła niezgodne." @@ -16789,19 +16697,16 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." #~ msgid "" -#~ "Registration successful. Please check your email for validation " -#~ "instructions." +#~ "Registration successful. Please check your email for validation instructions." #~ msgstr "" #~ "Rejestracja oomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje " #~ "dotyczące weryfikacji." #~ msgid "Your registration is pending approval by the site owner." -#~ msgstr "" -#~ "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela serwisu." +#~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela portalu." #~ msgid "Your registration can not be processed." -#~ msgstr "" -#~ "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." +#~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." #~ msgid "" #~ "Select a channel permission role for your usage needs and privacy " @@ -16820,15 +16725,15 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ "This site requires email verification. After completing this form, please " #~ "check your email for further instructions." #~ msgstr "" -#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego " -#~ "formularza sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." +#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza " +#~ "sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." #~ msgid "Please join us on $Projectname" #~ msgstr "Dołącz do nas na $Projectname" #~ msgid "Invitation limit exceeded. Please contact your site administrator." #~ msgstr "" -#~ "Przekroczono limit zaproszeń. Skontaktuj się z administratorem serwisu." +#~ "Przekroczono limit zaproszeń. Skontaktuj się z administratorem portalu." #~ msgid "%d message sent." #~ msgid_plural "%d messages sent." @@ -16847,18 +16752,17 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgid "You will need to supply this invitation code:" #~ msgstr "W formularzy rejstracji trzeba będzie podać ten kod zaproszenia:" -#~ msgid "" -#~ "1. Register at any $Projectname location (they are all inter-connected)" +#~ msgid "1. Register at any $Projectname location (they are all inter-connected)" #~ msgstr "" #~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć " #~ "możesz też na innym, bo wszystkie są ze sobą połączone) i utwórz swój " -#~ "domyślny profil. Wcześniej zapoznaj się z Regulaminem i poradnikiem " -#~ "\"Kanał osobisty\" dostępnym w po kliknieciu linku \"Pomoc\" lub " -#~ "skontaktuj się ze mną." +#~ "domyślny profil. Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał " +#~ "osobisty\" dostępnym w po kliknieciu linku \"Pomoc\" lub skontaktuj się ze " +#~ "mną." #~ msgid "2. Enter my $Projectname network address into the site searchbar." #~ msgstr "" -#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania serwisu mój " +#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania portalu mój " #~ "adres sieciowy $Projectname." #~ msgid "or visit" diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index 6651e0210..c74ed605a 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -299,18 +299,18 @@ App::$strings["No channel. Import failed."] = "Brak kanału. Import nieudany."; App::$strings["Import completed."] = "Import zakończony."; App::$strings["You must be logged in to use this feature."] = "Trzeba się zalogować, aby korzystać z tej funkcji."; App::$strings["Import Channel"] = "Importuj kanał"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (serwisu).Możesz pobrać tożsamość kanału ze starego serwera (serwisu) przez sieć lub dostarczyć plik eksportu."; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (portalu).Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez sieć lub dostarczyć plik eksportu."; App::$strings["File to Upload"] = "Plik do przesłania"; -App::$strings["Or provide the old server/hub details"] = "Lub podaj szczegóły starego serwera/serwisu"; +App::$strings["Or provide the old server/hub details"] = "Lub podaj szczegóły starego serwera/portalu"; App::$strings["Your old identity address (xyz@example.com)"] = "Twój stary adres tożsamości (xyz@example.com)"; App::$strings["Your old login email address"] = "Twój stary adres e-mail logowania"; App::$strings["Your old login password"] = "Twoje stare hasło logowania"; App::$strings["Import a few months of posts if possible (limited by available memory"] = "Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "W obu przypadkach wybierz, czy chcesz ustawić ten serwis jako nowy adres podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna lokalizacja plików, zdjęć i multimediów."; -App::$strings["Make this hub my primary location"] = "Ustaw ten serwis jako moją główną lokalizację"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna lokalizacja plików, zdjęć i multimediów."; +App::$strings["Make this hub my primary location"] = "Ustaw ten portal jako moją główną lokalizację"; App::$strings["Move this channel (disable all previous locations)"] = "Przenieś ten kanał (wyłącz wszystkie poprzednie lokalizacje)"; App::$strings["Use this channel nickname instead of the one provided"] = "Użyj tego pseudonimu kanału zamiast podanego"; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym serwisie."; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu."; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę otwartą do zakończenia procedury."; App::$strings["Like/Dislike"] = "Polub/Dezaprobuj"; App::$strings["This action is restricted to members."] = "Ta akcja jest ograniczona do członków."; @@ -356,7 +356,7 @@ App::$strings["Comanche page description language help"] = "Pomoc w zakresie ję App::$strings["Layout Description"] = "Opis układu"; App::$strings["Download PDL file"] = "Pobierz plik PDL"; App::$strings["Public Stream App"] = "Aplikacja Strumień Publiczny"; -App::$strings["The unmoderated public stream of this hub"] = "Niemoderowany strumień publiczny tego serwisu"; +App::$strings["The unmoderated public stream of this hub"] = "Niemoderowany strumień publiczny tego portalu"; App::$strings["Reset form"] = "Resetuj formularz"; App::$strings["Public Stream"] = "Strumień publiczny"; App::$strings["Private forum"] = "Prywatne forum"; @@ -401,7 +401,7 @@ App::$strings["Price of app"] = "Cena aplikacji"; App::$strings["Location (URL) to purchase app"] = "Lokalizacja (URL) do zakupu aplikacji"; App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta."; App::$strings["Reserved nickname. Please choose another."] = "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym serwisie."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu."; App::$strings["Change channel nickname/address"] = "Zmień krótką nazwę/adres kanału"; App::$strings["Any/all connections on other networks will be lost!"] = "Wszystkie połączenia w innych sieciach zostaną utracone!"; App::$strings["New channel address"] = "Nowy adres kanału"; @@ -434,7 +434,7 @@ App::$strings["Search results for: %s"] = "Wyniki wyszukiwania dla: %s"; App::$strings["Comment approved"] = "Komentarz został zatwierdzony"; App::$strings["Comment deleted"] = "Komentarz został usunięty"; App::$strings["Edit post"] = "Edytuj wpis"; -App::$strings["Unable to find your hub."] = "Nie można znaleźć Twojego serwisu."; +App::$strings["Unable to find your hub."] = "Nie można znaleźć Twojego portalu."; App::$strings["Post successful."] = "Opublikowanie powiodło się."; App::$strings["Channel not found."] = "Nie znaleziono kanału."; App::$strings["toggle full screen mode"] = "przełącz na tryb pełnego ekranu"; @@ -579,8 +579,8 @@ App::$strings["Primary"] = "Podstawowy"; App::$strings["Drop"] = "Upuść"; App::$strings["Sync Now"] = "Synchronizuj teraz"; App::$strings["Please wait several minutes between consecutive operations."] = "Poczekaj kilka minut między kolejnymi operacjami."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Jeśli to możliwe, upuść lokalizację, logując się do tego serwisu i usuwając swój kanał."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Użyj tego formularza, aby usunąć lokalizację, jeśli serwis już nie działa."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając swój kanał."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa."; App::$strings["Away"] = "Z dala"; App::$strings["Online"] = "On-line"; App::$strings["Photos"] = "Zdjęcia"; @@ -738,8 +738,8 @@ App::$strings["Your comment is awaiting approval."] = "Twój komentarz oczekuje App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym poście."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Osiągnięty został limit %1$.0f wpisów najwyższego poziomu."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Osiągnięty został limit %1$.0f stron internetowych."; -App::$strings["Website:"] = "Serwis internetowy:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanał zdalny [% s] (jeszcze nieznany w tym serwisie)"; +App::$strings["Website:"] = "Portal internetowy:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanał zdalny [% s] (jeszcze nieznany w tym portalu)"; App::$strings["Rating (this information is public)"] = "Ocena (ta informacja jest publiczna)"; App::$strings["Optionally explain your rating (this information is public)"] = "Ewentualnie wyjaśnij swoją ocenę (ta informacja jest publiczna)"; App::$strings["Invalid item."] = "Nieprawidłowy element."; @@ -761,7 +761,7 @@ App::$strings["%s element installed"] = "Element %s zainstalowany"; App::$strings["%s element installation failed"] = "Instalacja elementu %s nie powiodła się"; App::$strings["Public Hubs"] = "Portale publiczne"; App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Wymienione portale umożliwiają publiczną rejestrację w sieci \$Projectname. Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach."; -App::$strings["Hub URL"] = "Adres URL serwisu"; +App::$strings["Hub URL"] = "Adres URL portalu"; App::$strings["Access Type"] = "Typ dostępu"; App::$strings["Registration Policy"] = "Zasady rejestracji"; App::$strings["Stats"] = "Statystyki"; @@ -789,17 +789,17 @@ App::$strings["min"] = "min"; App::$strings["Channel Export App"] = "Aplikacja Eksport Kanału"; App::$strings["Export your channel"] = "Wyeksportuj swój kanał"; App::$strings["Export Channel"] = "Eksport Kanału"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć do zaimportowania danych do nowego serwisu, ale nie zawiera treści."; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć do zaimportowania danych do nowego portalu, ale nie zawiera treści."; App::$strings["Export Content"] = "Eksport Treści"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą można przywrócić lub zaimportować do innego serwisu. Tworzy to kopie zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka minut."; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą można przywrócić lub zaimportować do innego portalu. Tworzy to kopie zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka minut."; App::$strings["Export your posts from a given year."] = "Eksportuj swoje wpisy z danego roku."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera serwisu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera portalu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat."; App::$strings["To select all posts for a given year, such as this year, visit
%2\$s"] = "Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2\$s"; App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2\$s w dowolnym serwisie zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2\$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)."; App::$strings["No valid account found."] = "Nie znaleziono prawidłowego konta."; App::$strings["Password reset request issued. Check your email."] = "Wysłano prośbę o zresetowanie hasła. Sprawdź swoją skrzynkę e-mail."; -App::$strings["Site Member (%s)"] = "Członek serwisu (%s)"; +App::$strings["Site Member (%s)"] = "Członek portalu (%s)"; App::$strings["Password reset requested at %s"] = "Zresetowano hasło na %s"; App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie hasła nie powiodło się."; App::$strings["Password Reset"] = "Resetowanie hasła"; @@ -914,7 +914,7 @@ App::$strings["Cards App"] = "Aplikacja Karty"; App::$strings["Create personal planning cards"] = "Twórz osobiste karty zadań"; App::$strings["Add Card"] = "Dodaj kartę"; App::$strings["Cards"] = "Karty"; -App::$strings["This page is available only to site members"] = "Ta strona jest dostępna tylko dla członków serwisu"; +App::$strings["This page is available only to site members"] = "Ta strona jest dostępna tylko dla członków portalu"; App::$strings["Welcome"] = "Witamy"; App::$strings["What would you like to do?"] = "Co chciałbyś zrobić?"; App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Dodaj tę stronę do zakładek, jeśli chcesz wrócić do niej w przyszłości"; @@ -1012,43 +1012,43 @@ App::$strings["Maintainer: "] = "Opiekun: "; App::$strings["[Experimental]"] = "[Eksperymentalne]"; App::$strings["[Unsupported]"] = "[Nieobsługiwane]"; App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z natury niebezpieczne."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących serwisów:"; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących portali:"; App::$strings["https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"] = "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
"; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone treści z tego serwisu są jawnie zablokowane."; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone treści z tego portalu są jawnie zablokowane."; App::$strings["Security"] = "Bezpieczeństwo"; App::$strings["Block public"] = "Zablokuj publiczny dostęp"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron osobistych w tej witrynie, chyba że jesteś obecnie uwierzytelniony."; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron osobistych na tym portalu, chyba że jesteś obecnie uwierzytelniony."; App::$strings["Provide a cloud root directory"] = "Podaj katalog główny w chmurze"; App::$strings["The cloud root directory lists all channel names which provide public files"] = "Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają pliki publiczne"; -App::$strings["Show total disk space available to cloud uploads"] = "Pokaż całkowitą przestrzeń dyskową dostępną do przesyłania plików do chmury"; +App::$strings["Show total disk space available to cloud uploads"] = "Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury"; App::$strings["Set \"Transport Security\" HTTP header"] = "Ustaw nagłówek HTTP \"Transport Security\""; App::$strings["Set \"Content Security Policy\" HTTP header"] = "Ustaw nagłówek HTTP \"Content Security Policy\""; App::$strings["Allowed email domains"] = "Dozwolone domeny e-mail"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na dowolne domeny"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na dowolne domeny"; App::$strings["Not allowed email domains"] = "Niedozwolone domeny e-mail"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas rejestracji w tym serwisie. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś dozwolone domeny."; -App::$strings["Allow communications only from these sites"] = "Zezwalaj na komunikację tylko z tych serwisów"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Jeden serwis w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z każdym serwisem"; -App::$strings["Block communications from these sites"] = "Blokuj komunikację z tych serwisów"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś dozwolone domeny."; +App::$strings["Allow communications only from these sites"] = "Zezwalaj na komunikację tylko z tych portali"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z każdym portalem"; +App::$strings["Block communications from these sites"] = "Blokuj komunikację z tych portali"; App::$strings["Allow communications only from these channels"] = "Zezwalaj na komunikację tylko z tych kanałów"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Jeden kanał (hash) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał"; App::$strings["Block communications from these channels"] = "Blokuj komunikację z tych kanałów"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków ."; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Zezwalaj na osadzanie tylko z bezpiecznych (SSL) witryn i linków."; App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Zezwalaj na niefiltrowaną osadzony kod HTML tylko z tych domen"; -App::$strings["One site per line. By default embedded content is filtered."] = "Jedna witryna w wierszu. Domyślnie, treść osadzona jest filtrowana."; +App::$strings["One site per line. By default embedded content is filtered."] = "Jeden portal w wierszu. Domyślnie, treść osadzona jest filtrowana."; App::$strings["Block embedded HTML from these domains"] = "Zablokuj osadzony kod HTML z tych domen"; App::$strings["Allow SVG thumbnails in file browser"] = "Zezwalaj na miniatury SVG w przeglądarce plików"; App::$strings["WARNING: SVG images may contain malicious code."] = "OSTRZEŻENIE: obrazy SVG mogą zawierać złośliwy kod."; -App::$strings["Allow embedded (inline) PDF files"] = "Zezwalaj na osadzone (w tekście) pliki PDF"; +App::$strings["Allow embedded (inline) PDF files"] = "Zezwalaj na osadzone (w treści) pliki PDF"; App::$strings["%s account blocked/unblocked"] = array( 0 => "%s konto jest zablokowane/odblokowane", 1 => "%s konta są zablokowane/odblokowane", 2 => "%s kont jest zablokowanych/odblokowanych", ); App::$strings["%s account deleted"] = array( - 0 => "%s konto jest usunięte", - 1 => "%s konta są usunięte", - 2 => "%s kont jest usuniętych", + 0 => "%s konto zostało usunięte", + 1 => "%s konta zostały usunięte", + 2 => "%s kont zostało usuniętych", ); App::$strings["Account not found"] = "Konto nie znalezione"; App::$strings["Account '%s' deleted"] = "Usunięto konto '%s'"; @@ -1075,8 +1075,8 @@ App::$strings["Register date"] = "Data rejestracji"; App::$strings["Last login"] = "Ostatnie logowanie"; App::$strings["Expires"] = "Wygasa"; App::$strings["Service class"] = "Klasa usługi"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na tym serwisie, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym serwisie zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym portalu zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?"; App::$strings["Message"] = "Wiadowmość"; App::$strings["Off"] = "WYŁ"; App::$strings["On"] = "WŁ"; @@ -1086,8 +1086,8 @@ App::$strings["Queue Statistics"] = "Statystyki kolejki"; App::$strings["Total Entries"] = "Ogółem wpisów"; App::$strings["Priority"] = "Priorytet"; App::$strings["Destination URL"] = "Docelowy URL"; -App::$strings["Mark hub permanently offline"] = "Oznacz serwis na stałe w trybie offline"; -App::$strings["Empty queue for this hub"] = "Pusta kolejka dla tego serwisu"; +App::$strings["Mark hub permanently offline"] = "Oznacz na stałe jako portal w trybie offline"; +App::$strings["Empty queue for this hub"] = "Pusta kolejka dla tego portalu"; App::$strings["Last known contact"] = "Ostatni znany kontakt"; App::$strings["Update has been marked successful"] = "Aktualizacja została oznaczona jako pomyślna"; App::$strings["Verification of update %s failed. Check system logs."] = "Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki systemowe."; @@ -1108,9 +1108,9 @@ App::$strings["%s channel censored/uncensored"] = array( 2 => "%s kanałów jest ocenzurowanych/nieocenzurowanych", ); App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Kod %s kanału jest dozwolony /niedozwolony", - 1 => "Kod %s kanałów jest dozwolony/niedozwolony", - 2 => "Kod %s kanałów jest dozwolony/niedozwolony", + 0 => "Dozwolony/Niedozwolony kod %s kanału", + 1 => "Dozwolony/Niedozwolony kod %s kanałów", + 2 => "Dozwolony/Niedozwolony kod %s kanałów", ); App::$strings["%s channel deleted"] = array( 0 => "%s kanał został usunięty", @@ -1137,9 +1137,9 @@ App::$strings["Logs"] = "Logi"; App::$strings["Clear"] = "Wyczyść"; App::$strings["Debugging"] = "Debugowanie"; App::$strings["Log file"] = "Plik dziennika"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Musi mieć możliwość zapisu przez serwer WWW. Względnie do katalogu głównego serwera WWW."; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu głównego serwera WWW."; App::$strings["Log level"] = "Poziom rejestrowania zdarzeń"; -App::$strings["Password changed for account %d."] = "Hasło zostało zmienione do konta%d."; +App::$strings["Password changed for account %d."] = "Hasło zostało zmienione do konta %d."; App::$strings["Account settings updated."] = "Zaktualizowano ustawienia konta."; App::$strings["Account not found."] = "Konto nie zostało znalezione."; App::$strings["Account Edit"] = "Edycja konta"; @@ -1152,8 +1152,8 @@ App::$strings["Addons"] = "Dodatki"; App::$strings["Minimum project version: "] = "Minimalna wersja projektu: "; App::$strings["Maximum project version: "] = "Maksymalna wersja projektu: "; App::$strings["Minimum PHP version: "] = "Minimalna wersja PHP: "; -App::$strings["Compatible Server Roles: "] = "Zgodne role serwera: "; -App::$strings["Requires: "] = "Wymaga: "; +App::$strings["Compatible Server Roles: "] = "Kompatybilne role serwera: "; +App::$strings["Requires: "] = "Wymagania: "; App::$strings["Disabled - version incompatibility"] = "Wyłączone - niezgodność wersji"; App::$strings["Enter the public git repository URL of the addon repo."] = "Wprowadź adres URL publicznego repozytorium Git dodatków."; App::$strings["Addon repo git URL"] = "Adres URL repozytorium Git dodatków"; @@ -1168,17 +1168,17 @@ App::$strings["Install a New Addon Repository"] = "Zainstaluj nowe repozytorium App::$strings["Switch branch"] = "Przełącz gałąź"; App::$strings["Invalid input"] = "Nieprawidłowe dane"; App::$strings["Errors"] = "Błędy"; -App::$strings["Site settings updated."] = "Zaktualizowano ustawienia serwisu."; +App::$strings["Site settings updated."] = "Zaktualizowano ustawienia portalu."; App::$strings["Default"] = "Domyślnie"; App::$strings["%s - (Incompatible)"] = "%s - (niekompatybilne)"; App::$strings["mobile"] = "urządzenie przenośne"; App::$strings["experimental"] = "eksperymentalne"; App::$strings["unsupported"] = "nieobsługiwane"; App::$strings["Yes - with approval"] = "Tak - za zgodą"; -App::$strings["My site is not a public server"] = "Mój serwis nie jest serwerem publicznym"; -App::$strings["My site has paid access only"] = "Mój serwis ma tylko płatny dostęp"; -App::$strings["My site has free access only"] = "Mój serwis ma tylko bezpłatny dostęp"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mój serwis oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami"; +App::$strings["My site is not a public server"] = "Mój portal nie jest serwerem publicznym"; +App::$strings["My site has paid access only"] = "Mój portal ma tylko płatny dostęp"; +App::$strings["My site has free access only"] = "Mój porta ma tylko bezpłatny dostęp"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mój portal oferuje darmowe konta z opcjonalnymi płatnymi rozszerzeniami"; App::$strings["Default permission role for new accounts"] = "Domyślna rola uprawnień dla nowych kont"; App::$strings["This role will be used for the first channel created after registration."] = "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji."; App::$strings["Minute(s)"] = "Minuta/Minuty"; @@ -1192,28 +1192,28 @@ App::$strings["Time to wait before a registration can be verified"] = "Czas ocze App::$strings["duration up from now"] = "czas oczekiwania od teraz"; App::$strings["Register verification expiration time"] = "Zarejestruj wygasłą weryfikację"; App::$strings["Time before an unverified registration will expire"] = "Czas do wygaśnięcia niezweryfikowanej rejestracji"; -App::$strings["Site"] = "Witryna"; +App::$strings["Site"] = "Portal"; App::$strings["Registration"] = "Rejestracja"; -App::$strings["File upload"] = "Udostępnianie pliku"; +App::$strings["File upload"] = "Przesyłanie pliku"; App::$strings["Policies"] = "Zasady"; App::$strings["Advanced"] = "Zaawansowane"; -App::$strings["Site name"] = "Nazwa witryny internetowej"; +App::$strings["Site name"] = "Nazwa portalu"; App::$strings["Banner/Logo"] = "Baner/Logo"; App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Dozwolony jest niefiltrowany kod HTML/CSS /JS"; App::$strings["Administrator Information"] = "Informacje o administratorze"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informacje kontaktowe dla administratorów serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; -App::$strings["Site Information"] = "Informacje o serwisie"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Publicznie widoczny opis tego serwisu. Wyświetlane na stronie informacji o serwisie. Tutaj można użyć BBCode"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie informacji o portalu. Tutaj można użyć BBCode"; +App::$strings["Site Information"] = "Informacje o portalu"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o portalu. Tutaj można użyć BBCode"; App::$strings["System language"] = "Język systemu"; App::$strings["System theme"] = "Motyw systemu"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może zostać zastąpiony przez profile użytkowników - zmień ustawienia motywu"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - zmień ustawienia motywu"; App::$strings["Allow Feeds as Connections"] = "Zezwalaj na kanały jako połączenia"; App::$strings["(Heavy system resource usage)"] = "(Duże zużycie zasobów systemowych)"; App::$strings["Maximum image size"] = "Maksymalny rozmiar obrazu"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza brak ograniczeń."; App::$strings["Minimum age"] = "Minimalny wiek"; App::$strings["Minimum age (in years) for who may register on this site."] = "Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten serwis?"; +App::$strings["Which best describes the types of account offered by this hub?"] = "Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten portal?"; App::$strings["This is displayed on the public server site list."] = "Jest to wyświetlane na liście witryn publicznych serwerów."; App::$strings["Register text"] = "Tekst rejestracyjny"; App::$strings["This text will be displayed prominently at the registration page"] = "Ten tekst będzie widoczny w widocznym miejscu na stronie rejestracji"; @@ -1238,18 +1238,18 @@ App::$strings["Require email address"] = "Wymagany jest adres e-mail"; App::$strings["The provided email address will be verified (recommended)"] = "Podany adres e-mail zostanie zweryfikowany (zalecane)"; App::$strings["Abandon account after x days"] = "Konto porzucone po x dniach"; App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Strona główna serwisu do wyświetlania odwiedzającym (domyślnie: formularz logowania)"; +App::$strings["Site homepage to show visitors (default: login box)"] = "Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz logowania)"; App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home.html', aby dołączyć plik."; -App::$strings["Preserve site homepage URL"] = "Zachowaj adres URL strony głównej serwisu"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Przedstaw stronę główną serwisu w ramce w oryginalnej lokalizacji zamiast przekierowywania"; +App::$strings["Preserve site homepage URL"] = "Zachowaj adres URL strony głównej portalu"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Przedstaw stronę główną portalu w ramce w oryginalnej lokalizacji zamiast przekierowywania"; App::$strings["Allowed friend domains"] = "Dozwolone domeny znajomych"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny"; App::$strings["Force publish"] = "Wymuś publikację"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić opublikowanie w katalogu serwisu wszystkich profili założonych w tym serwisie."; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Zaznacz, aby wymusić opublikowanie w katalogu portalu wszystkich profili założonych w tym portalu."; App::$strings["Import Public Streams"] = "Importuj strumienie publiczne"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych serwisów. Ostrzeżenie: ta zawartość jest niemoderowana."; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych portali. Ostrzeżenie: ta zawartość jest niemoderowana."; App::$strings["Site only Public Streams"] = "Strumienie publiczne tylko z tego portalu"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego serwisu, jeśli importowane strumienie publiczne są wyłączone."; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, jeśli importowane strumienie publiczne są wyłączone."; App::$strings["Allow anybody on the internet to access the Public streams"] = "Zezwól każdemu w internecie na dostęp do strumieni publicznych"; App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość jest niemoderowana."; App::$strings["Only import Public stream posts with this text"] = "Importuj tylko wpisy ze strumienia publicznego z tym tekstem"; @@ -1288,14 +1288,14 @@ App::$strings["Public servers: Optional landing (marketing) webpage for new regi App::$strings["Create this page first. Default is %s/register"] = "Utwórz najpierw tą stronę. Domyślnie %s/ register"; App::$strings["Page to display after creating a new channel"] = "Strona do wyświetlenia po utworzeniu nowego kanału"; App::$strings["Default: profiles"] = "Domyślnie: profile"; -App::$strings["Optional: site location"] = "Opcjonalnie: lokalizacja serwisu"; +App::$strings["Optional: site location"] = "Opcjonalnie: lokalizacja portalu"; App::$strings["Region or country"] = "Region lub kraj"; App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)"; App::$strings["New Profile Field"] = "Nowe pole profilu"; App::$strings["Field nickname"] = "Krótka nazwa pola"; App::$strings["System name of field"] = "Systemowa nazwa pola"; App::$strings["Input type"] = "Typ wejścia"; -App::$strings["Field Name"] = "Nazwa Pola"; +App::$strings["Field Name"] = "Nazwa pola"; App::$strings["Label on profile pages"] = "Etykieta na stronach profilu"; App::$strings["Help text"] = "Tekst pomocy"; App::$strings["Additional info (optional)"] = "Dodatkowe informacje (opcjonalnie)"; @@ -1306,7 +1306,7 @@ App::$strings["Basic Profile Fields"] = "Podstawowe pola profilu"; App::$strings["Advanced Profile Fields"] = "Zaawansowane pola profilu"; App::$strings["(In addition to basic fields)"] = "(Oprócz podstawowych pól)"; App::$strings["All available fields"] = "Wszystkie dostępne pola"; -App::$strings["Custom Fields"] = "Pola niestandardowe"; +App::$strings["Custom Fields"] = "Pola własne"; App::$strings["Create Custom Field"] = "Utwórz własne pole"; App::$strings["No more system notifications."] = "Nigdy więcej powiadomień systemowych."; App::$strings["System Notifications"] = "Powiadomienia systemowe"; @@ -1327,7 +1327,7 @@ App::$strings["URL for photo of thing (optional)"] = "URL do zdjęcia rzeczy (op App::$strings["Add Thing to your Profile"] = "Dodaj rzecz do swojego profilu"; App::$strings["Suggest Channels App"] = "Aplikacja Sugerowane Kanały"; App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "Propozycje dotyczące kanałów w sieci \$Projectname, które mogą Cię zainteresować"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych propozycji. Jeśli to jest nowy serwis, spróbuj ponownie za 24 godziny."; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 godziny."; App::$strings["Ignore/Hide"] = "Ignoruj/Ukryj"; App::$strings["Channel Suggestions"] = "Sugerowane Kanały"; App::$strings["Email Verification Required"] = "Wymagana jest weryfikacja adresu e-mail"; @@ -1360,16 +1360,16 @@ App::$strings["Add Article"] = "Dodaj artykuł"; App::$strings["Articles"] = "Artykuły"; App::$strings["\$Projectname Server - Setup"] = "Serwer \$Projectname - Konfiguracja"; App::$strings["Could not connect to database."] = "Nie można połączyć się z bazą danych."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Nie można połączyć się z określonym adresem URL serwisu. Możliwy problem z certyfikatem SSL lub DNS."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Nie można połączyć się z określonym adresem URL portalu. Możliwy problem z certyfikatem SSL lub DNS."; App::$strings["Could not create table."] = "Nie udało się utworzyć tabeli."; -App::$strings["Your site database has been installed."] = "Baza danych serwisu została zainstalowana."; +App::$strings["Your site database has been installed."] = "Baza danych portalu została zainstalowana."; App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą klienta bazy danych."; App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Zobacz plik \"install/INSTALL.txt\"."; App::$strings["System check"] = "Sprawdzanie systemu"; App::$strings["Check again"] = "Sprawdź ponownie"; App::$strings["Database connection"] = "Połączenie z bazą danych"; App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Aby zainstalować \$Projectname, musimy wiedzieć, jak połączyć się z twoją bazą danych."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług hostingowych lub administratorem serwisu."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług hostingowych lub administratorem portalu."; App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, utwórz ją przed kontynuowaniem."; App::$strings["Database Server Name"] = "Nazwa serwera bazy danych"; App::$strings["Default is 127.0.0.1"] = "Domyślnie, 127.0.0.1"; @@ -1379,12 +1379,12 @@ App::$strings["Database Login Name"] = "Nazwa logowania do bazy danych"; App::$strings["Database Login Password"] = "Hasło logowania do bazy danych"; App::$strings["Database Name"] = "Nazwa bazy danych"; App::$strings["Database Type"] = "Typ bazy danych"; -App::$strings["Site administrator email address"] = "Adres e-mail administratora serwisu"; +App::$strings["Site administrator email address"] = "Adres e-mail administratora portalu"; App::$strings["Your account email address must match this in order to use the web admin panel."] = "Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać z panelu administratora sieci."; -App::$strings["Website URL"] = "Adres URL serwisu"; +App::$strings["Website URL"] = "Adres URL portalu"; App::$strings["Please use SSL (https) URL if available."] = "Użyj adresu URL z SSL (https), jeśli jest dostępny."; -App::$strings["Please select a default timezone for your website"] = "Wybierz domyślną strefę czasową dla swojego serwisu"; -App::$strings["Site settings"] = "Ustawienia serwisu"; +App::$strings["Please select a default timezone for your website"] = "Wybierz domyślną strefę czasową dla swojego portalu"; +App::$strings["Site settings"] = "Ustawienia portalu"; App::$strings["PHP version 7.1 or greater is required."] = "Wymagany jest PHP w wersji 7.1 lub wyższej."; App::$strings["PHP version"] = "Wersja PHP"; App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW."; @@ -1436,10 +1436,10 @@ App::$strings["%s is writable"] = "%s jest możliwy do zapisu"; App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w folderze serwera WWW najwyższego poziomu"; App::$strings["store is writable"] = "katalog store jest możliwy do zapisu"; App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https do tej witryny."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Jeśli masz dostęp https do swojego serwisu internetowego lub zezwalasz na połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!"; +App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!"; App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na przykład zawierać odniesienia do obrazów na Twoim portalu."; App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej witrynie, ostrzegający o problemie z bezpieczeństwem."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Może to powodować problemy z użytecznością w innym serwisie (nie tylko na Twoim), więc musimy nalegać na to wymaganie."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Może to powodować problemy z użytecznością w innym portalu (nie tylko na Twoim), więc musimy nalegać na to wymaganie."; App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez przeglądarki."; App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one wymagane przez przeglądarki, ale są wymagane do komunikacji między serwerami."; App::$strings["SSL certificate validation"] = "Walidacja certyfikatu SSL"; @@ -1521,30 +1521,30 @@ App::$strings["Permission Categories"] = "Kategorie uprawnień"; App::$strings["Permission category name"] = "Nazwa kategorii uprawnień"; App::$strings["No ratings"] = "Brak ocen"; App::$strings["Rating: "] = "Ocena: "; -App::$strings["Website: "] = "Serwis: "; +App::$strings["Website: "] = "Portal: "; App::$strings["Description: "] = "Opis: "; App::$strings["Nickname is required."] = "Pseudonim jest wymagany."; App::$strings["Email address required"] = "Wymagany jest adres e-mail"; App::$strings["No password provided"] = "Nie podano hasła"; App::$strings["Passwords do not match"] = "Hasła nie pasują do siebie"; -App::$strings["Terms of Service not accepted"] = "Regulamin serwisu nie został zaakceptowany"; +App::$strings["Terms of Service not accepted"] = "Regulamin portalu nie został zaakceptowany"; App::$strings["Invitation code succesfully applied"] = "Kod zaproszenia został pomyślnie zastosowany"; App::$strings["Invitation not in time or too late"] = "Zaproszenie nie na czas lub za późno"; App::$strings["Invitation email failed"] = "Wygenerowanie wiadomość e-mail z zaproszeniem nie powiodło się"; App::$strings["Invitation code failed"] = "Kod zaproszenia nie został wygenerowany"; App::$strings["Invitations are not available"] = "Zaproszenia nie są dostępne"; -App::$strings["Registration on this hub is by invitation only"] = "Rejestracja w tym serwisie odbywa się wyłącznie za zaproszeniem"; +App::$strings["Registration on this hub is by invitation only"] = "Rejestracja w tym portalu odbywa się wyłącznie za zaproszeniem"; App::$strings["Registration confirmation for %s"] = "Potwierdzenie rejestracji dla %s"; App::$strings["New register request"] = "Nowa prośba o rejestrację"; App::$strings["Error creating dId A"] = "Błąd podczas tworzenia dId A"; App::$strings["Registration on this hub is disabled."] = "Rejestracja na tym portalu jest wyłączona."; App::$strings["Registration on this hub is by approval only."] = "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora."; -App::$strings["Register at another affiliated hub in case when prefered"] = "Zarejestruj się w innym stowarzyszonym serwisie w przypadku, gdy potrzebujesz takiego rozwiązania"; +App::$strings["Register at another affiliated hub in case when prefered"] = "Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz takiego rozwiązania"; App::$strings["Registration on this hub is by invitation only."] = "Rejestracja na tym portalu wymaga uprzedniego zaproszenia."; -App::$strings["Register at another affiliated hub"] = "Zarejestruj się w innym stowarzyszonym serwisie"; +App::$strings["Register at another affiliated hub"] = "Zarejestruj się w innym stowarzyszonym portalu"; App::$strings["Terms of Service"] = "Regulamin"; -App::$strings["I accept the %s for this website"] = "Akceptuję % s dla tego serwisu"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Mam ponad % s lat i akceptuję % s dla tego serwisu"; +App::$strings["I accept the %s for this website"] = "Akceptuję % s dla tego portalu"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Mam ponad % s lat i akceptuję % s dla tego portalu"; App::$strings["Your email address"] = "Twój adres e-mail"; App::$strings["Choose a password"] = "Wybierz hasło"; App::$strings["Please re-enter your password"] = "Wprowadź ponownie swoje hasło"; @@ -1552,11 +1552,11 @@ App::$strings["Please enter your invitation code"] = "Wprowadź kod zaproszenia" App::$strings["Your name"] = "Twoja nazwa"; App::$strings["Real name is preferred"] = "Preferowane jest prawdziwe imię i nazwisko"; App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału"; -App::$strings["Why do you want to join this hub?"] = "Dlaczego chcesz dołączyć do tego serwisu?"; +App::$strings["Why do you want to join this hub?"] = "Dlaczego chcesz dołączyć do tego portalu?"; App::$strings["This will help to review your registration"] = "Pomoże to przejrzeć Twoją rejestrację"; App::$strings["I have an invite code"] = "Mam kod zaproszenia"; App::$strings["Register"] = "Zarejestruj się"; -App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Na tym serwisie przekroczono dozwoloną liczbę dziennych rejestracji kont."; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Na tym portalu przekroczono dozwoloną liczbę dziennych rejestracji kont."; App::$strings["__ctx:acl__ Profile"] = "Profil"; App::$strings["network"] = "sieć"; App::$strings["No feature settings configured"] = "Brak skonfigurowanych ustawień funkcji"; @@ -1607,7 +1607,7 @@ App::$strings["Nobody except yourself"] = "Nikt oprócz ciebie"; App::$strings["Only those you specifically allow"] = "Tylko te, na które jawnie zezwalasz"; App::$strings["Approved connections"] = "Zatwierdzone połączenia"; App::$strings["Any connections"] = "Wszelkie połączenia"; -App::$strings["Anybody on this website"] = "Każdy w tym serwisie"; +App::$strings["Anybody on this website"] = "Każdy w tym portalu"; App::$strings["Anybody in this network"] = "Każdy w tej sieci"; App::$strings["Anybody authenticated"] = "Każda uwierzytelniona osoba"; App::$strings["Anybody on the internet"] = "Każdy w internecie"; @@ -1639,10 +1639,10 @@ App::$strings["Allow others to tag your posts"] = "Pozwól innym oznaczać Twoje App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą wsteczną"; App::$strings["Channel Permission Limits"] = "Limity uprawnień kanału"; App::$strings["Expire other channel content after this many days"] = "Po tej ilości dni wygasają inne treści w kanale"; -App::$strings["0 or blank to use the website limit."] = "0 lub puste, aby użyć limitu serwisu."; +App::$strings["0 or blank to use the website limit."] = "0 lub puste, aby użyć limitu portalu."; App::$strings["This website expires after %d days."] = "Ta strona wygasa po %d dniach."; -App::$strings["This website does not expire imported content."] = "Na tym serwis internetowym importowanej zawartości nie jest wygaszana."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Limit serwisu ma pierwszeństwo, jeśli jest niższy niż Twój limit."; +App::$strings["This website does not expire imported content."] = "Na tym portalu importowana treść nie jest wygaszana."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Limit portalu ma pierwszeństwo, jeśli jest niższy niż Twój limit."; App::$strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do znajomych, dziennie:"; App::$strings["May reduce spam activity"] = "Może zmniejszyć aktywność spamu"; App::$strings["Default Privacy Group"] = "Domyślna grupa prywatności"; @@ -1684,7 +1684,7 @@ App::$strings["Unseen public stream activity"] = "Niewidoczna aktywność na pub App::$strings["Unseen likes and dislikes"] = "Niewidoczne polubienia i dezaprobaty"; App::$strings["Unseen forum posts"] = "Niewidoczne wpisy na forum"; App::$strings["Email notification hub (hostname)"] = "Serwer powiadomień e-mail (nazwa hosta)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Jeśli twój kanał jest powielany na wielu serwisach, ustaw to na preferowaną lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Jeśli twój kanał jest powielany na wielu ortalach, ustaw to na preferowaną lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s"; App::$strings["Show new wall posts, private messages and connections under Notices"] = "Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i połączenia"; App::$strings["Notify me of events this many days in advance"] = "Informuj mnie o wydarzeniach z wyprzedzeniem (w dniach)"; App::$strings["Must be greater than 0"] = "Musi być większa od 0"; @@ -1738,7 +1738,7 @@ App::$strings["Your message:"] = "Twoja wiadomość:"; App::$strings["Invite template"] = "Szablon zaproszenia"; App::$strings["Subject:"] = "Temat:"; App::$strings["Here you may enter personal notes to the recipient(s)"] = "Tutaj możesz wprowadzić osobiste notatki do odbiorcy/odbiorców"; -App::$strings["About this site"] = "O tym serwisie"; +App::$strings["About this site"] = "O tym portalu"; App::$strings["Site Name"] = "Nazwa witryny"; App::$strings["Administrator"] = "Administrator"; App::$strings["Software and Project information"] = "Informacje o oprogramowaniu i projekcie"; @@ -1764,7 +1764,7 @@ App::$strings["male"] = "mężczyzna"; App::$strings["%1\$s updated his %2\$s"] = "%1\$s zaktualizował jego %2\$s"; App::$strings["%1\$s updated their %2\$s"] = "%1\$s zaktualizował swoje %2\$s"; App::$strings["cover photo"] = "zdjęcie okładkowe"; -App::$strings["Your cover photo may be visible to anybody on the internet"] = "Twoje zdjęcie okładkowe może być widoczne dla każdego w internecie"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "Twoje zdjęcie okładkowe może być widoczne dla każdego w Internecie"; App::$strings["Change Cover Photo"] = "Zmień zdjęcie na okładkę"; App::$strings["Unable to update menu."] = "Nie można zaktualizować menu."; App::$strings["Unable to create menu."] = "Nie można utworzyć menu."; @@ -1794,7 +1794,7 @@ App::$strings["Source updated."] = "Źródło zaktualizowane."; App::$strings["Sources App"] = "Aplikacja Źródła"; App::$strings["Automatically import channel content from other channels or feeds"] = "Automatycznie importuj zawartość kanału z innych kanałów lub źródeł"; App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Źródła"; +App::$strings["Channel Sources"] = "Źródła kanału"; App::$strings["Manage remote sources of content for your channel."] = "Zarządzaj zdalnymi źródłami treści na swoim kanale."; App::$strings["New Source"] = "Nowe źródło"; App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Zaimportuj wszystkie lub wybrane treści z następującego kanału do tego kanału i rozpowszechniaj je zgodnie z ustawieniami kanału."; @@ -1811,7 +1811,7 @@ App::$strings["Source removed"] = "Źródło zostało usunięte"; App::$strings["Unable to remove source."] = "Nie można usunąć źródła."; App::$strings["Poke App"] = "Aplikacja kuksaniec"; App::$strings["Poke somebody in your addressbook"] = "Zaczep kogoś w swojej książce adresowej"; -App::$strings["Poke"] = "Zaczep"; +App::$strings["Poke"] = "Zaczepka"; App::$strings["Poke somebody"] = "Zaczep kogoś"; App::$strings["Poke/Prod"] = "Zaczepka"; App::$strings["Poke, prod or do other things to somebody"] = "Zaczepić, sprawdzić lub robić z kimś podobne rzeczy"; @@ -1865,23 +1865,23 @@ App::$strings["Edit group"] = "Edytuj grupę"; App::$strings["Add privacy group"] = "Dodaj grupę prywatności"; App::$strings["Channels not in any privacy group"] = "Kanały spoza jakiejkolwiek grupy prywatności"; App::$strings["add"] = "dodaj"; -App::$strings["Channel is blocked on this site."] = "Kanał jest zablokowany na tej stronie."; +App::$strings["Channel is blocked on this site."] = "Kanał jest zablokowany na tym portalu."; App::$strings["Channel location missing."] = "Brak lokalizacji kanału."; -App::$strings["Remote channel or protocol unavailable."] = "Zdalny kanał lub protokół jest niedostępny."; +App::$strings["Remote channel or protocol unavailable."] = "Niedostępny jest zdalny kanał lub protokół."; App::$strings["Channel discovery failed."] = "Wyszukanie kanału nie powiodło się."; App::$strings["Protocol disabled."] = "Protokół wyłączony."; App::$strings["Cannot connect to yourself."] = "Nie można połączyć się ze sobą."; App::$strings["error saving data"] = "błąd podczas zapisywania danych"; App::$strings["Apps"] = "Aplikacje"; App::$strings["Affinity Tool"] = "Narzędzie Zaprzyjaźnienia"; -App::$strings["Site Admin"] = "Administrator serwisu"; +App::$strings["Site Admin"] = "Administrator portalu"; App::$strings["Report Bug"] = "Raport błędów"; App::$strings["Bookmarks"] = "Zakładki"; App::$strings["Chatrooms"] = "Czaty"; App::$strings["Content Filter"] = "Filtr treści"; App::$strings["Content Import"] = "Import treści"; App::$strings["Remote Diagnostics"] = "Zdalna diagnostyka"; -App::$strings["Suggest Channels"] = "Zaproponuj kanały"; +App::$strings["Suggest Channels"] = "Proponowane kanały"; App::$strings["Login"] = "Zaloguj się"; App::$strings["Stream"] = "Strumień"; App::$strings["Wiki"] = "Wiki"; @@ -1891,14 +1891,14 @@ App::$strings["Directory"] = "Katalog"; App::$strings["Mail"] = "Poczta"; App::$strings["Chat"] = "Czat"; App::$strings["Probe"] = "Sonda"; -App::$strings["Suggest"] = "Prpozycja"; +App::$strings["Suggest"] = "Propozycja"; App::$strings["Random Channel"] = "Losowy kanał"; App::$strings["Invite"] = "Zaproszenie"; App::$strings["Features"] = "Możliwości"; App::$strings["Language"] = "Język"; App::$strings["Profile Photo"] = "Zdjęcie profilowe"; App::$strings["Profiles"] = "Profile"; -App::$strings["Notifications"] = "Powiadomienie"; +App::$strings["Notifications"] = "Powiadomienia"; App::$strings["Order Apps"] = "Kolejność aplikacji"; App::$strings["CardDAV"] = "CardDAV"; App::$strings["Guest Access"] = "Dostęp gościa"; @@ -1973,18 +1973,18 @@ App::$strings["%1\$s poked you at %2\$s"] = "%1\$s zaczepił Cię %2\$s"; App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]zaczepił Cię[/zrl]."; App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s oznaczył tagiem Twój wpis"; App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s oznaczył tagiem Twój wpis na %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s tagged [zrl=%2\$s]Twój wpis[/zrl]"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s oznaczył tagiem [zrl=%2\$s]Twój wpis[/zrl]"; App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Otrzymano prośbę o połączenie"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) nowe żądanie połączenia od „%1\$s” na %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s]nowe żądanie połączenia [/zrl] od %2\$s."; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Masz nową prośbę połączenia od „%1\$s” na %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Masz [zrl=%1\$s]nową prośbę połączenia [/zrl] od %2\$s."; App::$strings["You may visit their profile at %s"] = "Możesz odwiedzić ich profil na %s"; App::$strings["Please visit %s to approve or reject the connection request."] = "Odwiedź %s, aby zatwierdzić lub odrzucić prośbę o połączenie."; App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Otrzymano propozycję znajomości"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Otrzymał(eś/aś) propozycję znajomości od „%1\$s” na %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Otrzymał(eś/aś) [zrl=%1\$s] propozycję znajomości[/ zrl] dla %2\$s od %3\$s."; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Masz propozycję znajomości od '%1\$s' na %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Masz [zrl=%1\$s] propozycję znajomości[/ zrl] dla %2\$s od %3\$s."; App::$strings["Name:"] = "Nazwa:"; App::$strings["Photo:"] = "Zdjęcie:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź %s, aby zaakceptować lub odrzucić popozycję."; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Odwiedź %s, aby zaakceptować lub odrzucić propozycję."; App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notify]"; App::$strings["created a new poll"] = "utworzył nową ankietę"; App::$strings["created a new post"] = "utworzył nowy wpis"; @@ -2083,7 +2083,7 @@ App::$strings["Wiki files deleted successfully"] = "Pliki Wiki zostały pomyśln App::$strings["Directory Options"] = "Opcje katalogu"; App::$strings["Safe Mode"] = "Tryb bezpieczny"; App::$strings["Public Forums Only"] = "Tylko fora publiczne"; -App::$strings["This Website Only"] = "Tylko ten serwis"; +App::$strings["This Website Only"] = "Tylko ten portal"; App::$strings["__ctx:permcat__ default"] = "domyślnie"; App::$strings["__ctx:permcat__ follower"] = "obserwujący"; App::$strings["__ctx:permcat__ contributor"] = "współpracownik"; @@ -2145,7 +2145,7 @@ App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Przyk App::$strings["Suggestions"] = "Propozycje"; App::$strings["See more..."] = "Zobacz więcej..."; App::$strings["Tasks"] = "Zadania"; -App::$strings["Member registrations waiting for confirmation"] = "Rejestracja członków czeka na potwierdzenie"; +App::$strings["Member registrations waiting for confirmation"] = "Rejestracje członkowskie czekają na potwierdzenie"; App::$strings["Inspect queue"] = "Sprawdź kolejkę"; App::$strings["DB updates"] = "Aktualizacje bazy danych"; App::$strings["Admin"] = "Admin"; @@ -2804,7 +2804,7 @@ App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; App::$strings["The provided email address is not valid"] = "Podany adres e-mail jest nieprawidłowy"; -App::$strings["The provided email domain is not among those allowed on this site"] = "Podana domena e-mail nie należy do domen dozwolonych w tym serwisie"; +App::$strings["The provided email domain is not among those allowed on this site"] = "Podana domena e-mail nie należy do domen dozwolonych w tym portalu"; App::$strings["The provided email address is already registered at this site"] = "Podany adres e-mail jest już zarejestrowany w tej witrynie"; App::$strings["There is a pending registration for this address - click \"Register\" to continue verification"] = "Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby kontynuować weryfikację"; App::$strings["An invitation is required."] = "Wymagane jest zaproszenie."; @@ -2935,7 +2935,7 @@ App::$strings["invalid target signature"] = "nieprawidłowy podpis docelowy"; App::$strings["Image/photo"] = "Obraz/zdjęcie"; App::$strings["Encrypted content"] = "Zaszyfrowana treść"; App::$strings["Install %1\$s element %2\$s"] = "Zainstaluj element %1\$s %2\$s"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do zainstalowania go w tym serwisie."; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do zainstalowania go w tym portalu."; App::$strings["card"] = "karta"; App::$strings["article"] = "artykuł"; App::$strings["Click to open/close"] = "Kliknij, aby otworzyć/zamknąć"; @@ -2959,10 +2959,10 @@ App::$strings["IRC Chatroom"] = "Pokój rozmów IRC"; App::$strings["Send email to all members"] = "Wyślij e-mail do wszystkich członków"; App::$strings["No recipients found."] = "Nie znaleziono adresatów."; App::$strings["%1\$d of %2\$d messages sent."] = "Wysłano %1\$d wiadomości z %2\$d zadysponowanych."; -App::$strings["Send email to all hub members."] = "Wyślij wiadomość e-mail do wszystkich członków serwisu."; +App::$strings["Send email to all hub members."] = "Wyślij wiadomość e-mail do wszystkich członków portalu."; App::$strings["Message subject"] = "Temat wiadomości"; App::$strings["Sender Email address"] = "Adres e-mail nadawcy"; -App::$strings["Test mode (only send to hub administrator)"] = "Tryb testowy (wysyłaj tylko do administratora serwisu)"; +App::$strings["Test mode (only send to hub administrator)"] = "Tryb testowy (wysyłaj tylko do administratora portalu)"; App::$strings["Your Webbie:"] = "Twój Webbie:"; App::$strings["Fontsize (px):"] = "Wielkość czcionki (px):"; App::$strings["Link:"] = "Link:"; @@ -3169,7 +3169,7 @@ App::$strings["Birth Day"] = "Dzień urodzenia"; App::$strings["Birthdate"] = "Data urodzenia"; App::$strings["OpenID protocol error. No ID returned."] = "Błąd protokołu OpenID. Brak identyfikatora."; App::$strings["Hubzilla File Storage Import"] = "Import z magazynu plików Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Spowoduje to zaimportowanie wszystkich plików w chmurze z innego serwisu Hubzilla."; +App::$strings["This will import all your cloud files from another server."] = "Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu Hubzilla."; App::$strings["Hubzilla Server base URL"] = "Bazowy adres URL serwera Hubzilla"; App::$strings["Since modified date yyyy-mm-dd"] = "Od daty modyfikacji rrrr-mm-dd"; App::$strings["Until modified date yyyy-mm-dd"] = "Do daty modyfikacji rrrr-mm-dd"; @@ -3301,7 +3301,7 @@ App::$strings["Libertree Crosspost Connector"] = "Libertree Crosspost Connector" App::$strings["Post to Libertree"] = "Publikuj w Libertree"; App::$strings["Flag Adult Photos"] = "Oznaczanie zdjęć dla dorosłych"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w domyślnym widoku albumu"; -App::$strings["Post to GNU social"] = "Publikuj w serwisie społecznościowym GNU"; +App::$strings["Post to GNU social"] = "Publikuj na portalu społecznościowym GNU"; App::$strings["API URL"] = "Adres URL API"; App::$strings["Application name"] = "Nazwa aplikacji"; App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API jest nieprawidłowy."; @@ -3317,8 +3317,8 @@ App::$strings["OAuth Consumer Secret"] = "Tajny klucz klienta OAuth"; App::$strings["Base API Path"] = "Podstawowa ścieżka API"; App::$strings["Remember the trailing /"] = "Zapamiętaj końcowy ukośnik /"; App::$strings["GNU social application name"] = "Nazwa aplikacji społecznościowej GNU"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, aby uzyskać kod zabezpieczający z serwisu społecznościowego GNU, który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje publiczne wpisy będą publikowane w społecznościach GNU."; -App::$strings["Log in with GNU social"] = "Zaloguj się za pomocą serwisu społecznościowego GNU"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje publiczne wpisy będą publikowane w społecznościach GNU."; +App::$strings["Log in with GNU social"] = "Zaloguj się za pomocą portalu społecznościowego GNU"; App::$strings["Copy the security code from GNU social here"] = "Skopiuj tutaj kod bezpieczeństwa z GNU Social"; App::$strings["Cancel Connection Process"] = "Anuluj proces łączenia"; App::$strings["Current GNU social API is"] = "Obecne API społecznościowe GNU to"; @@ -3359,7 +3359,7 @@ App::$strings["random geometric pattern"] = "losowy wzór geometryczny"; App::$strings["monster face"] = "twarz potwora"; App::$strings["computer generated face"] = "wygenerowana komputerowo twarz"; App::$strings["retro arcade style face"] = "twarz w stylu retro arcade"; -App::$strings["Hub default profile photo"] = "Domyślne zdjęcie profilowe serwisu"; +App::$strings["Hub default profile photo"] = "Domyślne zdjęcie profilowe portalu"; App::$strings["Information"] = "Informacje"; App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara."; App::$strings["Default avatar image"] = "Domyślny obraz awatara"; @@ -3420,7 +3420,7 @@ App::$strings["There is no corporate funding and no ads, and we do not collect a App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości internetowej i prywatności."; App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także pomagają nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju."; App::$strings["Donate"] = "Wspomóż"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wybierz projekt, dewelopera lub publiczny serwis, aby wesprzeć jednorazową darowizną"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową darowizną"; App::$strings["Donate Now"] = "Wpłać teraz"; App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "lub zostań sponsorem projektu (tylko Projekt Hubzilla)"; App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej liście sponsorów"; @@ -3550,7 +3550,7 @@ App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank App::$strings["Post to WordPress by default"] = "Domyślnie publikuj na WordPress"; App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Przekazywanie komentarzy (wymaga wtyczki hubzilla_wp)"; App::$strings["Wordpress Post"] = "Publikowanie w Wordpress"; -App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Zezwalaj na magiczne uwierzytelnianie tylko w serwisach internetowych Twoich bezpośrednich połączeń"; +App::$strings["Allow magic authentication only to websites of your immediate connections"] = "Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich połączeń"; App::$strings["Authchoose App"] = "Aplikacja Magiczne uwierzytelnianie"; App::$strings["Authchoose"] = "Magiczne uwierzytelnianie"; App::$strings["bitchslap"] = "bitchslap"; -- cgit v1.2.3 From e9088bd52e84f765fc63e030aec6cac771882c61 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 28 May 2021 10:02:05 +0000 Subject: notifications: if we have to return early, make sure to set offset to -1 to prevent looping (cherry picked from commit f72b8ce30fbbcd672f09eaf9de41e8881ec622ad) --- Zotlabs/Module/Sse_bs.php | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php index cc67c8eb7..109b043ad 100644 --- a/Zotlabs/Module/Sse_bs.php +++ b/Zotlabs/Module/Sse_bs.php @@ -144,11 +144,15 @@ class Sse_bs extends Controller { $result['network']['notifications'] = []; $result['network']['count'] = 0; - if(! self::$uid) + if(! self::$uid) { + $result['network']['offset'] = -1; return $result; + } - if(! (self::$vnotify & VNOTIFY_NETWORK)) + if(! (self::$vnotify & VNOTIFY_NETWORK)) { + $result['network']['offset'] = -1; return $result; + } $limit = intval(self::$limit); $offset = self::$offset; @@ -216,11 +220,15 @@ class Sse_bs extends Controller { $result['dm']['notifications'] = []; $result['dm']['count'] = 0; - if(! self::$uid) + if(! self::$uid) { + $result['dm']['offset'] = -1; return $result; + } - if(! (self::$vnotify & VNOTIFY_MAIL)) + if(! (self::$vnotify & VNOTIFY_MAIL)) { + $result['dm']['offset'] = -1; return $result; + } $limit = intval(self::$limit); $offset = self::$offset; @@ -287,11 +295,15 @@ class Sse_bs extends Controller { $result['home']['notifications'] = []; $result['home']['count'] = 0; - if(! self::$uid) + if(! self::$uid) { + $result['home']['offset'] = -1; return $result; + } - if(! (self::$vnotify & VNOTIFY_CHANNEL)) + if(! (self::$vnotify & VNOTIFY_CHANNEL)) { + $result['home']['offset'] = -1; return $result; + } $limit = intval(self::$limit); $offset = self::$offset; @@ -359,15 +371,19 @@ class Sse_bs extends Controller { $result['pubs']['notifications'] = []; $result['pubs']['count'] = 0; - if(! (self::$vnotify & VNOTIFY_PUBS)) + if(! (self::$vnotify & VNOTIFY_PUBS)) { + $result['pubs']['offset'] = -1; return $result; + } if((observer_prohibited(true))) { + $result['pubs']['offset'] = -1; return $result; } if(! intval(get_config('system','open_pubstream',1))) { if(! get_observer_hash()) { + $result['pubs']['offset'] = -1; return $result; } } -- cgit v1.2.3 From 5e07ebe7fa7691869e3ab85dab0a27b3123d335c Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 31 May 2021 09:07:50 +0000 Subject: fix registration bug - issue #1574 --- include/account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/account.php b/include/account.php index d138dab41..98d7f00a8 100644 --- a/include/account.php +++ b/include/account.php @@ -48,7 +48,7 @@ function check_account_email($email) { $result['message'] = t('The provided email address is already registered at this site'); } - $register = q("select reg_did2 from register where reg_vital = 1 and reg_did2 = '%s' limit 1", + $register = q("select reg_did2 from register where reg_vital = 1 and reg_did2 = '%s' and reg_didx = 'e' limit 1", dbesc($email) ); if ($register) { -- cgit v1.2.3 From 2980f852aa6420fd37f1410213abf75b7ba5604e Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 31 May 2021 10:14:26 +0200 Subject: fix admin button state not displayed correctly (cherry picked from commit baabb3a8730708634385abdb366a45c6e234e154) --- Zotlabs/Module/Admin/Site.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 3b2632411..76e117a84 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -480,12 +480,12 @@ class Site { '$invitation_only' => [ 'invitation_only', t("Require invite code"), - $invitation_only + get_config('system', 'invitation_only', 0) ], '$invitation_also' => [ 'invitation_also', t("Allow invite code"), - $invitation_also + get_config('system', 'invitation_also', 0) ], '$verify_email' => [ 'verify_email', -- cgit v1.2.3 From 5ae21d04b0184fef0df8c33c71445d71e76a77ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Budzi=C5=84ski?= Date: Mon, 31 May 2021 13:39:11 +0200 Subject: New traslations: view/pl/invite* files + some fixes --- doc/pl/Translations.md | 58 +- doc/pl/accounts_profiles_channels_basics.bb | 6 +- doc/pl/admin/administrator_guide.md | 8 +- view/pl/hmessages.mo | Bin 304893 -> 305109 bytes view/pl/hmessages.po | 2551 ++++++++++++--------------- view/pl/hstrings.php | 150 +- view/pl/htconfig.tpl | 14 +- view/pl/invite.casual.subject.tpl | 1 + view/pl/invite.casual.tpl | 16 + view/pl/invite.formal.subject.tpl | 1 + view/pl/invite.formal.tpl | 32 + view/pl/invite.material.subject.tpl | 1 + view/pl/invite.material.tpl | 1 + 13 files changed, 1288 insertions(+), 1551 deletions(-) create mode 100644 view/pl/invite.casual.subject.tpl create mode 100644 view/pl/invite.casual.tpl create mode 100644 view/pl/invite.formal.subject.tpl create mode 100644 view/pl/invite.formal.tpl create mode 100644 view/pl/invite.material.subject.tpl create mode 100644 view/pl/invite.material.tpl diff --git a/doc/pl/Translations.md b/doc/pl/Translations.md index bbcf24ce8..54dcb6813 100644 --- a/doc/pl/Translations.md +++ b/doc/pl/Translations.md @@ -4,69 +4,43 @@ Tłumaczenie $Projectname Procedura tłumaczenia na język polski ------------------------------------- -Tłumaczenie interfejsu użytkownika, ekranów kontekstowej pomocy oraz dokumentacji -na język polski odbiega nieco od ogólnej procedury przyjetej w $Projectname. -Po prostu, zrezygnowano z przygotowania pliku translacyjnego hmessages.po -za pośrednictwem serwisu [Transifex][1], tak jak to jest zalecane w $Projectname -i posłużono się sporządzeniem tych plików przy pomocy ogólnie dostępnych narzędzi -translacyjnych przeznaczonych do tworzenia plików [gettext](https://www.gnu.org/software/gettext/) (rozszerzenia .po, .mo, .pot), takich jak [poedit](https://poedit.net/) i inne. +Tłumaczenie interfejsu użytkownika, ekranów kontekstowej pomocy oraz dokumentacji na język polski odbiega nieco od ogólnej procedury przyjetej w $Projectname. Po prostu, zrezygnowano z przygotowania pliku translacyjnego hmessages.po za pośrednictwem serwisu [Transifex][1], tak jak to jest zalecane w $Projectname i posłużono się sporządzeniem tych plików przy pomocy ogólnie dostępnych narzędzi translacyjnych przeznaczonych do tworzenia plików [gettext](https://www.gnu.org/software/gettext/) rozszerzenia .po, .mo, .pot), takich jak [poedit](https://poedit.net/) i inne. -Trzeba podkreślić, że to odstępstwo dotyczy przygotowania pliku hmessages.po -i organizacji prac nad tłumaczeniem. +Trzeba podkreślić, że to odstępstwo dotyczy przygotowania pliku hmessages.po i organizacji prac nad tłumaczeniem. -Tłumaczenie $Projectname na język polski jest obecnie wydzielone w odrębny podprojekt, -utrzymywany w [repozytorium na GitHub](https://github.com/astabski/hubzilla-pl) +Tłumaczenie $Projectname na język polski jest obecnie wydzielone w odrębny podprojekt, utrzymywany w [repozytorium na GitHub] https://github.com/astabski/hubzilla-pl) -Projekt ten obejmuje wszystkie pliki potrzebne do przetłumaczenia interfesju użytkownika, -pomocy kontekstowej i oficjalnej dokumentacji, zawarte w następujących katalogach -kodu $Projectname: +Projekt ten obejmuje wszystkie pliki potrzebne do przetłumaczenia interfesju użytkownika, pomocy kontekstowej i oficjalnej dokumentacji, zawarte w następujących katalogach kodu $Projectname: - view/pl - doc/context/pl - doc/macros/pl - doc/pl -Projekt ten jest obecnie podstawą oficjalnego polskiego tłumaczenia $Projectname. -Po każdej istotnej zmianie, osoba kierująca projektem tłumaczenia zgłasza odpowiednie -żądanie PR do drzewa żródłowego $Projectname. +Projekt ten jest obecnie podstawą oficjalnego polskiego tłumaczenia $Projectname. Po każdej istotnej zmianie, osoba kierująca projektem tłumaczenia zgłasza odpowiednie żądanie PR do drzewa żródłowego $Projectname. ### Zgłaszanie poprawek -Jeśli chcesz zgłosić jakieś zmiany w istniejącym tekście tłumaczenia, otwórz -nową sprawę na stronie https://github.com/astabski/hubzilla-pl/issues i podaj tam -szczegóły proponowanych zmian. +Jeśli chcesz zgłosić jakieś zmiany w istniejącym tekście tłumaczenia, otwórz nową sprawę na stronie https://github.com/astabski/hubzilla-pl/issues i podaj tam szczegóły proponowanych zmian. -Możesz też dokonać poprawek w tym projekcie, zgłaszając odpowiednio przygotowane -żądanie PR. +Możesz też dokonać poprawek w tym projekcie, zgłaszając odpowiednio przygotowane żądanie PR. ### Nowe tłumaczenia -Jeśli chcesz pomóc, tworząc tłumaczenia jeszcze nie przetłumaczonych dokumentów -$Projectname, dołącz do projektu https://github.com/astabski/hubzilla-pl. W tym -celu umieść na stronie https://github.com/astabski/hubzilla-pl/issues odpowiednią -wiadomość. Otrzymasz odpowiedź z dokładną instrukcją. +Jeśli chcesz pomóc, tworząc tłumaczenia jeszcze nie przetłumaczonych dokumentów $Projectname, dołącz do projektu https://github.com/astabski/hubzilla-pl. W tym celu umieść na stronie https://github.com/astabski/hubzilla-pl/issues odpowiednią wiadomość. Otrzymasz odpowiedź z dokładną instrukcją. Ogólne zasady tłumaczeń obowiązujące w $Projectname --------------------------------------------------- -Jeśli chcesz samodzielnie przenieść swoją pracę do drzewa źródłowego $Projectname, -skontaktuj się z zespołem $Projectname i zadaj pytania. +Jeśli chcesz samodzielnie przenieść swoją pracę do drzewa źródłowego $Projectname, skontaktuj się z zespołem $Projectname i zadaj pytania. -Proces jest tłumaczenia prosty, a oprogramowanie $Projectname jest dostarczane ze -wszystkimi niezbędnymi narzędziami. +Proces jest tłumaczenia prosty, a oprogramowanie $Projectname jest dostarczane ze wszystkimi niezbędnymi narzędziami. -Lokalizacją przetłumaczonych plików jest w kodzie źródłowym katalog `/view/LNG-CODE/`, -gdzie `LNG-CODE` jest używanym kodem języka, np. `de` dla niemieckiego lub `fr` -dla francuskiego. +Lokalizacją przetłumaczonych plików jest w kodzie źródłowym katalog `/view/LNG-CODE/`, gdzie `LNG-CODE` jest używanym kodem języka, np. `de` dla niemieckiego albo `pl` dla polskiego. -W przypadku szablonów wiadomości e-mail (pliki `*.tpl`) po prostu trzeba umieścić -je w katalogu i gotowe. Przetłumaczone łańcuchy pochodzą z pliku `hmessages.po` -z serwisu Transifex, który należy przetłumaczyć na plik PHP używany przez $Projectname. -Aby to zrobić, trzeba umieścić plik w wymienionym wyżej katalogu i użyć narzędzia -`po2php` z katalogu `util` w instalacji $Projectname. +W przypadku szablonów wiadomości e-mail (pliki `*.tpl`) po prostu trzeba umieścić je w katalogu i gotowe. Przetłumaczone łańcuchy pochodzą z pliku `hmessages.po` z serwisu Transifex, który należy przetłumaczyć na plik PHP używany przez $Projectname. Aby to zrobić, trzeba umieścić plik w wymienionym wyżej katalogu i użyć narzędzia `po2php` z katalogu `util` w instalacji $Projectname. -Zakładając, że chcesz przetłumaczyć polską wersję umieszczoną pliku -`view/pl/hmessages.po`, wykonaj następujące czynności. +Zakładając, że chcesz przetłumaczyć polską wersję umieszczoną pliku `view/pl/hmessages.po`, wykonaj następujące czynności. 1. Przejdź w wierszu polecenia do katalogu głównego instalacji $Projectname @@ -89,10 +63,8 @@ Zakładając, że chcesz przetłumaczyć polską wersję umieszczoną pliku Narzędzia --------- -Oprócz skryptu po2php, jest jeszcze w katalogu "util" w drzewie źródłowym $Projectname -kilka narzędzi do tłumaczenia. Jeśli tylko chcesz przetłumacz $Projectname na inny -język, którego nie potrzebujesz najbardziej, ale da Ci to wyobrażenie o procesie -tłumaczenia $Projectname. +Oprócz skryptu po2php, jest jeszcze w katalogu "util" w drzewie źródłowym $Projectname kilka narzędzi do tłumaczenia. Jeśli tylko chcesz przetłumacz $Projectname na inny język, którego nie potrzebujesz najbardziej, ale da Ci to wyobrażenie o procesie +tłumaczenia $Projectname. Więcej informacji można znaleźć w pliku utils/README. diff --git a/doc/pl/accounts_profiles_channels_basics.bb b/doc/pl/accounts_profiles_channels_basics.bb index 034c2fa23..224bfd6df 100644 --- a/doc/pl/accounts_profiles_channels_basics.bb +++ b/doc/pl/accounts_profiles_channels_basics.bb @@ -1,11 +1,11 @@ [size=large][b]Konta, profile i kanały[/b][/size] -Po zarejestrowaniu [i]konta[/i], trzeba również utworzyć [i]profil[/i] i [i]kanał[/i]. +Po zarejestrowaniu [i]konta[/i], trzeba również utworzyć [i]profil[/i] i [i]kanał[/i]. Na wielu portalach $Projectname Twój kanał jest zakładany automatycznie, ale to i tak wymaga Twojej interwencji. Profil będzie wymagał uzupełnienia lub poprawienia danych, podobnie jak automatycznie założony kanał. [b]Konto[/b] -W serwisie &Projectname masz [i]jedno[/i] konto. Składa się z Twojego konta e-mail i hasła. Za pomocą swojego konta uzyskujesz dostęp do swojego profilu i kanału. +Na portalu $Projectname masz [i]jedno[/i] konto. Składa się z Twojego adresu e-mail i hasła. Za pomocą swojego konta uzyskujesz dostęp do swojego profilu i kanału. -[i]Pomyśl o swoim koncie jak o sposobie uwierzytelniania na jakimś portalu $Projectname. Pozwala ono na takie rzeczy, jak tworzenie profili i kanałów, za pomocą których możesz łączyć się z innymi osobami.[/i] +[i]Pomyśl o swoim koncie jak o sposobie uwierzytelniania na którymkolwiek portalu $Projectname. Pozwala ono na takie rzeczy, jak tworzenie profili i kanałów, za pomocą których możesz łączyć się z innymi osobami.[/i] [b]Profil[/b] Z pewnością masz już doświadczenie w rejestrowaniu się w jakichś usługach internetowych, takich jak fora lub społeczności internetowe. We wszystkich przypadkach trzeba było podać pewne informacje o sobie, takie jak data urodzenia, kraj, wiek i upodobania. [observer=1]Jeśli chcesz, możesz zobaczyć swój profil tutaj: [baseurl]/profile/[observer.webname] i edytować go, klikając ikonę ołówka obok swojego awatara.[/observer] diff --git a/doc/pl/admin/administrator_guide.md b/doc/pl/admin/administrator_guide.md index 344ce81c0..862cab15f 100644 --- a/doc/pl/admin/administrator_guide.md +++ b/doc/pl/admin/administrator_guide.md @@ -350,17 +350,17 @@ Na dole dostarczonego pliku *.htconfig.php* znajduje się kilka linii, które, j **Trzeci to "dziennik aplikacji"**. Jest to używane przez Hubzillę do zgłaszania tego, co dzieje się w programie i zwykle zapisywane są tu wszelkie trudności lub nieoczekiwane dane, które otrzymaliśmy. Jego nazwę (ścieżkę) trzeba podać na stronie "Administracja - Logi" (/admin/logs), np. *hubzilla.log* wskazuje na plik o tej nazwie zlokalizowany w katalogu głównym Hubzilla. Czasem zgłaszane są tu również komunikaty o stanie "pulsu", aby wskazać, że osiągnęliśmy określony punkt w skrypcie. Jest to dla nas najważniejszy plik dziennika, ponieważ tworzymy go samodzielnie wyłącznie w celu zgłaszania stanu zadań w tle i wszystkiego, co wydaje się dziwne lub nie na miejscu. Te błędy mogą być "śmiertelne", ale też niegroźne i po prostu nieoczekiwane. Jeśli wykonujesz zadanie i występuje problem, daj nam znać, co znajduje się w tym pliku, gdy wystąpił problem. Proszę nie wysyłaj nam 100 milionów zrzutów, bo tylko nas wkurzysz! Tylko kilka odpowiednich wierszy, ab można było wykluczyć kilkaset tysięcy wierszy kodu i skoncentrować się na tym, gdzie zaczyna się pojawiać problem. -To są dzienniki Twojego serwisu. Zgłaszamy poważne problemy na każdym poziomie dziennika. Gorąco polecam poziom dziennika *DEBUG* dla większości witryn. Dostarcza on trochę dodatkowych informacji i nie tworzy dużych plików dziennika. Kiedy pojawia się problem, który uniemożliwia wszelkie próby śledzenia, możesz wtedy włączyć na krótki czas poziom *DATA*, aby uchwycić wszystkie szczegóły struktur, z którymi mieliśmy do czynienia w tym czasie. Ten poziom dziennika zajmuje dużo miejsca, więc jest zalecany tylko na krótkie okresy lub w przypadku witryn testowych dla programistów. +To są dzienniki Twojego serwisu. Zgłaszamy poważne problemy na każdym poziomie dziennika. Gorąco polecamy poziom dziennika *DEBUG* dla większości witryn. Dostarcza on trochę dodatkowych informacji i nie tworzy dużych plików dziennika. Kiedy pojawia się problem, który uniemożliwia wszelkie próby śledzenia, możesz wtedy włączyć na krótki czas poziom *DATA*, aby uchwycić wszystkie szczegóły struktur, z którymi mieliśmy do czynienia w tym czasie. Ten poziom dziennika zajmuje dużo miejsca, więc jest zalecany tylko na krótkie okresy lub w przypadku witryn testowych dla programistów. -Zalecam skonfigurowanie *logrotate* zarówno dla dziennika php, jak i dziennika aplikacji. Zazwyczaj co tydzień lub dwa zaglądam do *dbfail.out*, naprawiam zgłoszone problemy i zaczynam od nowego pliku. Podobnie jest z plikiem dziennika PHP. Odwołuję się do tego od czasu do czasu, aby sprawdzić, czy jest coś, co wymaga naprawy. +Zalecamy skonfigurowanie *logrotate* zarówno dla dziennika php, jak i dziennika aplikacji. Zazwyczaj co tydzień lub dwa zaglądam do *dbfail.out*, naprawiam zgłoszone problemy i zaczynam od nowego pliku. Podobnie jest z plikiem dziennika PHP. Odwołuję się do tego od czasu do czasu, aby sprawdzić, czy jest coś, co wymaga naprawy. -Jeśli coś pójdzie nie tak i nie jest to błąd krytyczny, patrzę na plik dziennika aplikacji. Często robię to: +Jeśli coś pójdzie nie tak i nie jest to błąd krytyczny, warto zajrzeć do pliku dziennika aplikacji. Można zrobić to tak: ``` tail -f logfile.out ``` -ponieważ powtarza operację, która ma problemy. Często wstawiam w kodzie dodatkowe instrukcje rejestracji, jeśli nie ma żadnej wskazówki, co się dzieje. Nawet coś tak prostego jak "got here" lub drukuję wartości zmiennej, która może być podejrzana. Ty też możesz to zrobić - wręcz zachęcam Cię do tego. Gdy już znajdziesz to, czego potrzebujesz, możesz wykonać: +ponieważ powtarzaja się wpisy dla operacju, która ma problemy. MOzna wstawić w kodzie dodatkowe instrukcje rejestracji, jeśli nie ma żadnej wskazówki, co się dzieje. Nawet coś tak prostego jak "got here" lub wydrukować wartości zmiennej, która może być podejrzana. Zachecamy aby to robić. Gdy już znajdziesz to, czego potrzebujesz, możesz wykonać: ``` git checkout file.php diff --git a/view/pl/hmessages.mo b/view/pl/hmessages.mo index e5ec6d689..64db4c71c 100644 Binary files a/view/pl/hmessages.mo and b/view/pl/hmessages.mo differ diff --git a/view/pl/hmessages.po b/view/pl/hmessages.po index a0e293e0c..0fb80a1c6 100644 --- a/view/pl/hmessages.po +++ b/view/pl/hmessages.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 5.7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-05-23 21:08+0200\n" -"PO-Revision-Date: 2021-05-26 16:02+0200\n" +"PO-Revision-Date: 2021-05-31 13:29+0200\n" "Last-Translator: Andrzej Budziński \n" "Language-Team: \n" "Language: pl\n" @@ -64,7 +64,7 @@ msgstr "Może publikować na stronie mojego kanału (ścianie)" #: ../../Zotlabs/Access/Permissions.php:67 msgid "Can comment on or like my posts" -msgstr "Może komentować lub polubić moje wpisy" +msgstr "Może komentować lub oceniać moje wpisy" #: ../../Zotlabs/Access/Permissions.php:68 msgid "Can send me private mail messages" @@ -77,8 +77,8 @@ msgstr "Może lubić/nie lubić profile i rzeczy w profilach" #: ../../Zotlabs/Access/Permissions.php:70 msgid "Can forward to all my channel connections via ! mentions in posts" msgstr "" -"Może przekazywać informacje do wszystkich moich połączeń kanałowych za " -"pośrednictwem !wzmianki w wpisach" +"Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !" +"wzmianki w wpisach" #: ../../Zotlabs/Access/Permissions.php:71 msgid "Can chat with me" @@ -174,19 +174,16 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Appman.php:87 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/New_channel.php:105 ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Filestorage.php:20 ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Filestorage.php:96 ../../Zotlabs/Module/Filestorage.php:119 #: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 ../../Zotlabs/Module/Wiki.php:59 #: ../../Zotlabs/Module/Wiki.php:284 ../../Zotlabs/Module/Wiki.php:427 #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Locs.php:100 ../../Zotlabs/Module/Connedit.php:397 -#: ../../Zotlabs/Module/Profile_photo.php:338 -#: ../../Zotlabs/Module/Profile_photo.php:351 +#: ../../Zotlabs/Module/Profile_photo.php:338 ../../Zotlabs/Module/Profile_photo.php:351 #: ../../Zotlabs/Module/Sharedwithme.php:19 ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 @@ -202,18 +199,16 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Block.php:24 #: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Common.php:38 #: ../../Zotlabs/Module/Editwebpage.php:68 ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Profile.php:99 -#: ../../Zotlabs/Module/Profile.php:114 ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 -#: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Suggest.php:32 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Articles.php:89 -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Mitem.php:129 -#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Register.php:200 -#: ../../Zotlabs/Module/Channel_calendar.php:232 +#: ../../Zotlabs/Module/Editwebpage.php:107 ../../Zotlabs/Module/Editwebpage.php:121 +#: ../../Zotlabs/Module/Profile.php:99 ../../Zotlabs/Module/Profile.php:114 +#: ../../Zotlabs/Module/Article_edit.php:51 ../../Zotlabs/Module/Thing.php:282 +#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:343 +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Mood.php:126 +#: ../../Zotlabs/Module/Register.php:200 ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Cover_photo.php:341 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Cover_photo.php:341 #: ../../Zotlabs/Module/Cover_photo.php:354 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Sources.php:80 #: ../../Zotlabs/Module/Poke.php:157 ../../Zotlabs/Module/Network.php:19 @@ -221,9 +216,8 @@ msgstr "Tryb niestandardowy/ekspercki" #: ../../Zotlabs/Module/Attach_edit.php:106 ../../Zotlabs/Module/Settings.php:59 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Web/WebServer.php:116 #: ../../Zotlabs/Lib/Chatroom.php:135 ../../include/photos.php:27 -#: ../../include/attach.php:156 ../../include/attach.php:205 -#: ../../include/attach.php:278 ../../include/attach.php:329 -#: ../../include/attach.php:424 ../../include/attach.php:438 +#: ../../include/attach.php:156 ../../include/attach.php:205 ../../include/attach.php:278 +#: ../../include/attach.php:329 ../../include/attach.php:424 ../../include/attach.php:438 #: ../../include/attach.php:445 ../../include/attach.php:527 #: ../../include/attach.php:1091 ../../include/attach.php:1164 #: ../../include/attach.php:1327 ../../include/items.php:4088 @@ -341,13 +335,10 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Editpost.php:86 ../../Zotlabs/Module/Affinity.php:87 #: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:309 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Channels.php:147 ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Admin/Site.php:412 +#: ../../Zotlabs/Module/Admin/Addons.php:442 ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Profs.php:178 ../../Zotlabs/Module/Thing.php:328 #: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Setup.php:306 @@ -367,13 +358,12 @@ msgstr "Układ systemowy" #: ../../Zotlabs/Module/Settings/Directory.php:42 #: ../../Zotlabs/Module/Settings/Channel_home.php:91 #: ../../Zotlabs/Module/Settings/Network.php:62 -#: ../../Zotlabs/Module/Settings/Conversation.php:49 -#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Sources.php:125 -#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Poke.php:217 -#: ../../Zotlabs/Storage/Browser.php:382 ../../Zotlabs/Lib/ThreadItem.php:827 -#: ../../Zotlabs/Widget/Wiki_pages.php:42 ../../Zotlabs/Widget/Wiki_pages.php:99 -#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 -#: ../../extend/addon/hubzilla-addons/irc/irc.php:45 +#: ../../Zotlabs/Module/Settings/Conversation.php:49 ../../Zotlabs/Module/Invite.php:550 +#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 +#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Lib/ThreadItem.php:827 ../../Zotlabs/Widget/Wiki_pages.php:42 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../include/js_strings.php:22 ../../extend/addon/hubzilla-addons/irc/irc.php:45 #: ../../extend/addon/hubzilla-addons/hubwall/hubwall.php:95 #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:57 #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:95 @@ -452,8 +442,7 @@ msgstr "z terminala." #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Group.php:99 #: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Subthread.php:89 #: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Web/WebServer.php:115 -#: ../../include/items.php:441 -#: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 +#: ../../include/items.php:441 ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:75 #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:119 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:109 msgid "Permission denied" @@ -575,8 +564,7 @@ msgstr "Czy zezwalasz aplikacji %s na dostęp do danych Twojego kanału?" msgid "Allow" msgstr "Zezwól" -#: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:319 +#: ../../Zotlabs/Module/Authorize.php:33 ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Zabroń" @@ -709,14 +697,12 @@ msgstr "Kalendarze CalDAV" #: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Module/Connedit.php:933 #: ../../Zotlabs/Module/Editlayout.php:138 ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Connections.php:329 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:320 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:269 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Lib/Apps.php:558 -#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../include/conversation.php:730 -#: ../../include/conversation.php:777 +#: ../../Zotlabs/Module/Admin/Channels.php:149 ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Thing.php:269 ../../Zotlabs/Storage/Browser.php:384 +#: ../../Zotlabs/Lib/Apps.php:558 ../../Zotlabs/Lib/ThreadItem.php:171 +#: ../../include/conversation.php:730 ../../include/conversation.php:777 msgid "Delete" msgstr "Usuń" @@ -731,14 +717,13 @@ msgstr "Usuń wszystko" #: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 #: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profile_photo.php:507 -#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Editblock.php:141 -#: ../../Zotlabs/Module/Editpost.php:111 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:427 -#: ../../Zotlabs/Module/Cover_photo.php:428 ../../Zotlabs/Storage/Browser.php:383 -#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 +#: ../../Zotlabs/Module/Profile_photo.php:507 ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:111 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:427 ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Storage/Browser.php:383 ../../include/conversation.php:1460 +#: ../../include/conversation.php:1515 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:209 #: ../../extend/addon/hubzilla-addons/hsse/hsse.php:258 msgid "Cancel" @@ -757,8 +742,7 @@ msgstr "Utwórz" #: ../../Zotlabs/Module/Cdav.php:1061 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "" -"Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze " -"zaimplementowana." +"Przepraszamy! Edycja powtarzających się wydarzeń nie została jeszcze zaimplementowana." #: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 @@ -775,9 +759,8 @@ msgstr "Kategorie" #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 #: ../../Zotlabs/Module/Sharedwithme.php:106 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Storage/Browser.php:377 ../../Zotlabs/Lib/NativeWikiPage.php:576 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../Zotlabs/Module/Admin/Channels.php:159 ../../Zotlabs/Storage/Browser.php:377 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:172 msgid "Name" msgstr "Nazwa" @@ -798,8 +781,7 @@ msgid "Phone" msgstr "Numer telefonu" #: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:789 -#: ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Connedit.php:920 ../../Zotlabs/Module/Admin/Accounts.php:316 #: ../../Zotlabs/Module/Admin/Accounts.php:330 ../../include/network.php:1768 #: ../../extend/addon/hubzilla-addons/redred/Mod_Redred.php:71 #: ../../extend/addon/hubzilla-addons/openid/MysqlProvider.php:56 @@ -820,8 +802,7 @@ msgstr "Strona internetowa" #: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:504 #: ../../Zotlabs/Module/Profiles.php:792 ../../Zotlabs/Module/Locs.php:129 -#: ../../Zotlabs/Module/Connedit.php:923 -#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Admin/Channels.php:160 msgid "Address" msgstr "Adres" @@ -909,8 +890,8 @@ msgstr "Proszę się zalogować, aby kontynuować." #: ../../Zotlabs/Module/Api.php:97 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Do you want to authorize this application to access your posts and contacts, and/or " +"create new posts for you?" msgstr "" "Czy chcesz zezwolić tej aplikacji na dostęp do Twoich wpisów i kontaktów albo " "tworzenie dla Ciebie nowych wpisów ?" @@ -919,13 +900,12 @@ msgstr "" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:321 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Register.php:512 +#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Photos.php:673 +#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 #: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 @@ -993,14 +973,13 @@ msgstr "Tak" #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Import.php:636 ../../Zotlabs/Module/Import.php:640 #: ../../Zotlabs/Module/Import.php:641 ../../Zotlabs/Module/Defperms.php:198 -#: ../../Zotlabs/Module/Filestorage.php:203 -#: ../../Zotlabs/Module/Filestorage.php:211 ../../Zotlabs/Module/Wiki.php:226 -#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Photos.php:673 -#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Register.php:512 -#: ../../Zotlabs/Module/Settings/Display.php:88 +#: ../../Zotlabs/Module/Filestorage.php:203 ../../Zotlabs/Module/Filestorage.php:211 +#: ../../Zotlabs/Module/Wiki.php:226 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Connedit.php:404 ../../Zotlabs/Module/Connedit.php:789 +#: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Register.php:512 ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Settings/Channel.php:311 ../../Zotlabs/Module/Menu.php:163 #: ../../Zotlabs/Module/Menu.php:222 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Storage/Browser.php:310 @@ -1080,11 +1059,10 @@ msgid "or select an existing folder (doubleclick)" msgstr "lub wybierz istniejący folder (kliknij dwukrotnie)" #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Cards.php:113 -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Articles.php:117 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -#: ../../Zotlabs/Widget/Notes.php:23 ../../include/text.php:1145 -#: ../../include/text.php:1157 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Admin/Profs.php:114 +#: ../../Zotlabs/Module/Articles.php:117 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Widget/Notes.php:23 +#: ../../include/text.php:1145 ../../include/text.php:1157 #: ../../extend/addon/hubzilla-addons/queueworker/Mod_Queueworker.php:116 msgid "Save" msgstr "Zapisz" @@ -1093,21 +1071,18 @@ msgstr "Zapisz" msgid "Save to Folder" msgstr "Zapisz do folderu" -#: ../../Zotlabs/Module/Events.php:113 -#: ../../Zotlabs/Module/Channel_calendar.php:62 +#: ../../Zotlabs/Module/Events.php:113 ../../Zotlabs/Module/Channel_calendar.php:62 msgid "Event can not end before it has started." msgstr "Wydarzenie nie może zakończyć się przed rozpoczęciem." #: ../../Zotlabs/Module/Events.php:115 ../../Zotlabs/Module/Events.php:124 -#: ../../Zotlabs/Module/Events.php:146 -#: ../../Zotlabs/Module/Channel_calendar.php:64 +#: ../../Zotlabs/Module/Events.php:146 ../../Zotlabs/Module/Channel_calendar.php:64 #: ../../Zotlabs/Module/Channel_calendar.php:72 #: ../../Zotlabs/Module/Channel_calendar.php:87 msgid "Unable to generate preview." msgstr "Nie można wygenerować podglądu." -#: ../../Zotlabs/Module/Events.php:122 -#: ../../Zotlabs/Module/Channel_calendar.php:70 +#: ../../Zotlabs/Module/Events.php:122 ../../Zotlabs/Module/Channel_calendar.php:70 msgid "Event title and start time are required." msgstr "Wymaga się wprowadzenia tytułu wydarzenia i godziny rozpoczęcia." @@ -1118,8 +1093,7 @@ msgid "Event not found." msgstr "Nie znaleziono wydarzenia." #: ../../Zotlabs/Module/Events.php:266 ../../Zotlabs/Module/Like.php:441 -#: ../../Zotlabs/Module/Tagger.php:75 -#: ../../Zotlabs/Module/Channel_calendar.php:221 +#: ../../Zotlabs/Module/Tagger.php:75 ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../include/conversation.php:132 ../../include/text.php:2257 #: ../../include/event.php:1259 msgid "event" @@ -1175,11 +1149,11 @@ msgstr "Dostosuj do strefy czasowej widza" #: ../../Zotlabs/Module/Events.php:479 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +"Important for events that happen in a particular place. Not practical for global " +"holidays." msgstr "" -"Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na " -"globalne święta." +"Ważne dla wydarzeń, które mają miejsce w określonym miejscu. Niepraktyczne na globalne " +"święta." #: ../../Zotlabs/Module/Events.php:481 msgid "Edit Description" @@ -1209,13 +1183,11 @@ msgstr "Zaawansowane opcje" msgid "l, F j" msgstr "l, F j" -#: ../../Zotlabs/Module/Events.php:641 -#: ../../Zotlabs/Module/Channel_calendar.php:370 +#: ../../Zotlabs/Module/Events.php:641 ../../Zotlabs/Module/Channel_calendar.php:370 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: ../../Zotlabs/Module/Events.php:643 -#: ../../Zotlabs/Module/Channel_calendar.php:372 +#: ../../Zotlabs/Module/Events.php:643 ../../Zotlabs/Module/Channel_calendar.php:372 msgid "Delete event" msgstr "Usuń wydarzenie" @@ -1223,8 +1195,7 @@ msgstr "Usuń wydarzenie" msgid "Link to Source" msgstr "Link do źródła" -#: ../../Zotlabs/Module/Events.php:677 -#: ../../Zotlabs/Module/Channel_calendar.php:406 +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Channel_calendar.php:406 msgid "calendar" msgstr "kalendarz" @@ -1251,8 +1222,7 @@ msgstr "Widok" msgid "Event removed" msgstr "Wydarzenie usunięte" -#: ../../Zotlabs/Module/Events.php:742 -#: ../../Zotlabs/Module/Channel_calendar.php:493 +#: ../../Zotlabs/Module/Events.php:742 ../../Zotlabs/Module/Channel_calendar.php:493 msgid "Failed to remove event" msgstr "Nie udało się usunąć wydarzenia" @@ -1355,10 +1325,8 @@ msgstr "Strony internetowe" #: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Connections.php:321 -#: ../../Zotlabs/Module/Connections.php:363 -#: ../../Zotlabs/Module/Connections.php:383 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Article_edit.php:98 +#: ../../Zotlabs/Module/Connections.php:363 ../../Zotlabs/Module/Connections.php:383 +#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Thing.php:268 #: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 ../../Zotlabs/Widget/Cdav.php:138 @@ -1456,11 +1424,11 @@ msgstr "Partner romantyczny" #: ../../Zotlabs/Module/Profiles.php:469 ../../Zotlabs/Module/Profiles.php:774 msgid "Likes" -msgstr "Polubienia" +msgstr "Oceny pozytywne" #: ../../Zotlabs/Module/Profiles.php:473 ../../Zotlabs/Module/Profiles.php:775 msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Oceny negatywne" #: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:782 msgid "Work/Employment" @@ -1741,13 +1709,13 @@ msgstr "Importuj kanał" #: ../../Zotlabs/Module/Import.php:629 msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." +"Use this form to import an existing channel from a different server/hub. You may " +"retrieve the channel identity from the old server/hub via the network or provide an " +"export file." msgstr "" -"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera " -"(portalu).Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez " -"sieć lub dostarczyć plik eksportu." +"Użyj tego formularza, aby zaimportować istniejący kanał z innego serwera (portalu)." +"Możesz pobrać tożsamość kanału ze starego serwera (portalu) przez sieć lub dostarczyć " +"plik eksportu." #: ../../Zotlabs/Module/Import.php:630 ../../Zotlabs/Module/Import_items.php:127 msgid "File to Upload" @@ -1772,20 +1740,19 @@ msgstr "Twoje stare hasło logowania" #: ../../Zotlabs/Module/Import.php:636 msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną " -"pamięcią)" +"Zaimportuj wpisy z kilku miesięcy, jeśli to możliwe (ograniczone dostępną pamięcią)" #: ../../Zotlabs/Module/Import.php:638 msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +"For either option, please choose whether to make this hub your new primary address, or " +"whether your old location should continue this role. You will be able to post from " +"either location, but only one can be marked as the primary location for files, photos, " +"and media." msgstr "" -"W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres " -"podstawowy, czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz " -"mógł/mogła publikować z dowolnej lokalizacji, ale tylko jedna z nich może być " -"oznaczona jako główna lokalizacja plików, zdjęć i multimediów." +"W obu przypadkach wybierz, czy chcesz ustawić ten portal jako nowy adres podstawowy, " +"czy też rolę tą powinna pełnić Twoja stara lokalizacja. Będziesz mógł/mogła publikować " +"z dowolnej lokalizacji, ale tylko jedna z nich może być oznaczona jako główna " +"lokalizacja plików, zdjęć i multimediów." #: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" @@ -1801,23 +1768,23 @@ msgstr "Użyj tego pseudonimu kanału zamiast podanego" #: ../../Zotlabs/Module/Import.php:642 msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." +"Leave blank to keep your existing channel nickname. You will be randomly assigned a " +"similar nickname if either name is already allocated on this site." msgstr "" -"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo " -"podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu." +"Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny " +"pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu." #: ../../Zotlabs/Module/Import.php:644 msgid "" -"This process may take several minutes to complete. Please submit the form only " -"once and leave this page open until finished." +"This process may take several minutes to complete. Please submit the form only once " +"and leave this page open until finished." msgstr "" -"Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę " -"stronę otwartą do zakończenia procedury." +"Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę " +"otwartą do zakończenia procedury." #: ../../Zotlabs/Module/Like.php:106 msgid "Like/Dislike" -msgstr "Polub/Dezaprobuj" +msgstr "Oceń pozytywnie/negatywnie" #: ../../Zotlabs/Module/Like.php:112 msgid "This action is restricted to members." @@ -1825,11 +1792,11 @@ msgstr "Ta akcja jest ograniczona do członków." #: ../../Zotlabs/Module/Like.php:113 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -"Aby kontynuować, zaloguj się za pomocą ID $Projectname " -"lub zarejestruj się jako nowy członek $Projectname." +"Aby kontynuować, zaloguj się za pomocą ID $Projectname lub zarejestruj się jako nowy członek $Projectname." #: ../../Zotlabs/Module/Like.php:166 ../../Zotlabs/Module/Like.php:192 #: ../../Zotlabs/Module/Like.php:230 @@ -1873,14 +1840,14 @@ msgstr "stan" #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2138 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s polubił %3$s %2$s" +msgstr "%1$s ocenił pozytywnie %3$s %2$s" #: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #: ../../include/conversation.php:177 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2140 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s dezaprobował %3$s %2$s" +msgstr "%1$s ocenił negatywnie %3$s %2$s" #: ../../Zotlabs/Module/Like.php:475 #, php-format @@ -1927,8 +1894,7 @@ msgstr "Dziękujemy." msgid "Could not access contact record." msgstr "Brak dostępu do rekordu kontaktu." -#: ../../Zotlabs/Module/Defperms.php:112 -#: ../../Zotlabs/Module/Settings/Channel.php:267 +#: ../../Zotlabs/Module/Defperms.php:112 ../../Zotlabs/Module/Settings/Channel.php:267 #: ../../extend/addon/hubzilla-addons/msgfooter/msgfooter.php:54 #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:116 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:82 @@ -1956,11 +1922,9 @@ msgstr "Domyślne uprawnienia połączenia" msgid "Apply these permissions automatically" msgstr "Zastosuj te uprawnienia automatycznie" -#: ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Module/Settings/Channel.php:472 +#: ../../Zotlabs/Module/Defperms.php:256 ../../Zotlabs/Module/Settings/Channel.php:472 msgid "If enabled, connection requests will be approved without your interaction" -msgstr "" -"Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" +msgstr "Jeśli jest włączone, prośby o połączenie będą zatwierdzane bez Twojej interakcji" #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Permission role" @@ -1977,11 +1941,9 @@ msgid "Add permission role" msgstr "Dodaj rolę uprawnień" #: ../../Zotlabs/Module/Defperms.php:262 ../../Zotlabs/Module/Connedit.php:876 -msgid "" -"The permissions indicated on this page will be applied to all new connections." +msgid "The permissions indicated on this page will be applied to all new connections." msgstr "" -"Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych " -"połączeń." +"Uprawnienia wskazane na tej stronie zostaną zastosowane do wszystkich nowych połączeń." #: ../../Zotlabs/Module/Defperms.php:263 msgid "Automatic approval settings" @@ -2004,11 +1966,11 @@ msgstr "Uprawnienia indywidualne" #: ../../Zotlabs/Module/Defperms.php:271 msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." +"Some individual permissions may have been preset or locked based on your channel type " +"and privacy settings." msgstr "" -"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub " -"zablokowane w zależności od typu kanału i ustawień prywatności." +"Niektóre indywidualne uprawnienia mogły zostać wstępnie ustawione lub zablokowane w " +"zależności od typu kanału i ustawień prywatności." #: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 #: ../../Zotlabs/Module/Editlayout.php:128 @@ -2147,10 +2109,8 @@ msgstr "Kliknij kanał, aby przełączyć członkostwo" #: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" -"Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." +"Channel removals are not allowed within 48 hours of changing the account password." +msgstr "Usunięcie kanału nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" @@ -2174,8 +2134,7 @@ msgstr "Ta akcja jest bezpowrotna i nie można jej cofnąć!" msgid "Please enter your password for verification:" msgstr "Wprowadź hasło do weryfikacji:" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings/Channel.php:596 msgid "Remove Channel" msgstr "Usuń kanał" @@ -2233,11 +2192,9 @@ msgstr "Lokalizacja (URL) do zakupu aplikacji" #: ../../Zotlabs/Module/Changeaddr.php:35 msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." +"Channel name changes are not allowed within 48 hours of changing the account password." msgstr "" -"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do " -"konta." +"Zmiana nazwy kanału jest niedozwolona w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Changeaddr.php:46 ../../Zotlabs/Module/Register.php:100 #: ../../include/channel.php:226 ../../include/channel.php:706 @@ -2247,8 +2204,7 @@ msgstr "Ten pseudonim jest już zarezerwowany. Proszę wybrać inny." #: ../../Zotlabs/Module/Changeaddr.php:51 ../../Zotlabs/Module/Register.php:105 #: ../../include/channel.php:231 ../../include/channel.php:711 msgid "Nickname has unsupported characters or is already being used on this site." -msgstr "" -"Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu." +msgstr "Pseudonim zawiera nieobsługiwane znaki lub jest już używany w tym portalu." #: ../../Zotlabs/Module/Changeaddr.php:77 msgid "Change channel nickname/address" @@ -2302,8 +2258,7 @@ msgstr "Klucz konsumenta" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:115 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 msgid "Automatically generated - change if desired. Max length 20" -msgstr "" -"Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" +msgstr "Wygenerowane automatycznie - w razie potrzeby zmień. Maksymalna długość 20" #: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 @@ -2319,11 +2274,9 @@ msgstr "Przekierowanie" #: ../../Zotlabs/Module/Oauth.php:116 ../../Zotlabs/Module/Oauth2.php:120 #: ../../Zotlabs/Module/Oauth2.php:148 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +msgid "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego " -"wymaga" +"Identyfikator URI przekierowania - pozostaw puste, chyba że aplikacja tego wymaga" #: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Oauth.php:143 msgid "Icon url" @@ -2354,8 +2307,7 @@ msgstr "Brak nazwy" msgid "Remove authorization" msgstr "Usuń autoryzację" -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 ../../Zotlabs/Module/Email_validation.php:24 msgid "Token verification failed." msgstr "Weryfikacja tokena nie powiodła się." @@ -2460,8 +2412,7 @@ msgstr "Importuj elementy" #: ../../Zotlabs/Module/Import_items.php:126 msgid "Use this form to import existing posts and content from an export file." msgstr "" -"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku " -"eksportu." +"Użyj tego formularza, aby zaimportować istniejące wpisy i treść z pliku eksportu." #: ../../Zotlabs/Module/Connect.php:65 ../../Zotlabs/Module/Connect.php:118 msgid "Continue" @@ -2488,8 +2439,8 @@ msgid "" "This channel may require additional steps or acknowledgement of the following " "conditions prior to connecting:" msgstr "" -"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub " -"potwierdzenia następujących warunków:" +"Ten kanał, przed podłączeniem, może wymagać dodatkowych kroków lub potwierdzenia " +"następujących warunków:" #: ../../Zotlabs/Module/Connect.php:105 msgid "Potential connections will then see the following text before proceeding:" @@ -2497,8 +2448,8 @@ msgstr "Potencjalne połączenia zobaczą następujący tekst przed kontynuowani #: ../../Zotlabs/Module/Connect.php:106 ../../Zotlabs/Module/Connect.php:127 msgid "" -"By continuing, I certify that I have complied with any instructions provided on " -"this page." +"By continuing, I certify that I have complied with any instructions provided on this " +"page." msgstr "" "Kontynuując, oświadczam, że postępowałem zgodnie z instrukcjami podanymi na tej " "stronie." @@ -2522,18 +2473,15 @@ msgstr "Zalecane jest podania prawdziwego imienia i nazwiska lub nazwy." #: ../../Zotlabs/Module/New_channel.php:160 msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group" -"\"" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" msgstr "" -"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa " -"lotnicza\"" +"Przykłady: \"Bob Jameson\", \"Lisa i jej konie\", \"Piłka nożna\", \"Grupa lotnicza\"" #: ../../Zotlabs/Module/New_channel.php:165 -msgid "" -"This will be used to create a unique network address (like an email address)." +msgid "This will be used to create a unique network address (like an email address)." msgstr "" -"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego " -"do adresu e-mail)." +"Zostanie to zastosowane do utworzenia unikalnego adresu sieciowego (podobnego do " +"adresu e-mail)." #: ../../Zotlabs/Module/New_channel.php:167 msgid "Allowed characters are a-z 0-9, - and _" @@ -2547,8 +2495,7 @@ msgstr "Nazwa kanału" msgid "Choose a short nickname" msgstr "Wybierz krótki pseudonim" -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 +#: ../../Zotlabs/Module/New_channel.php:178 ../../Zotlabs/Module/Settings/Channel.php:537 msgid "Channel role and privacy" msgstr "Rola kanału i prywatność" @@ -2557,8 +2504,8 @@ msgid "" "Select a channel permission role compatible with your usage needs and privacy " "requirements." msgstr "" -"Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i " -"wymaganiami dotyczącymi prywatności." +"Wybierz rolę uprawnień do kanału, zgodną z Twoimi potrzebami użytkowania i wymaganiami " +"dotyczącymi prywatności." #: ../../Zotlabs/Module/New_channel.php:178 msgid "Read more about channel permission roles" @@ -2570,19 +2517,17 @@ msgstr "Utwórz kanał" #: ../../Zotlabs/Module/New_channel.php:182 msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." +"A channel is a unique network identity. It can represent a person (social network " +"profile), a forum (group), a business or celebrity page, a newsfeed, and many other " +"things." msgstr "" "Kanał to unikalna tożsamość sieciowa. Może reprezentować osobę (profil sieci " -"społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał " -"informacyjny i wiele innych rzeczy." +"społecznościowej), forum (grupę), stronę biznesową lub celebrycką, kanał informacyjny " +"i wiele innych rzeczy." #: ../../Zotlabs/Module/New_channel.php:183 -msgid "" -"or import an existing channel from another location." -msgstr "" -"lub zaimportuj istniejący kanał z innej lokalizacji." +msgid "or import an existing channel from another location." +msgstr "lub zaimportuj istniejący kanał z innej lokalizacji." #: ../../Zotlabs/Module/New_channel.php:188 msgid "Validate" @@ -2606,18 +2551,15 @@ msgstr "Utwórz własną aplikację" #: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" -"Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." +"Account removals are not allowed within 48 hours of changing the account password." +msgstr "Usunięcie konta nie jest dozwolone w ciągu 48 godzin od zmiany hasła do konta." #: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Usuń to konto" #: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the network. " +msgid "This account and all its channels will be completely removed from the network. " msgstr "To konto i wszystkie jego kanały zostaną całkowicie usunięte z sieci. " #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -2631,16 +2573,15 @@ msgstr "Przestarzałe!" #: ../../Zotlabs/Module/Filestorage.php:29 ../../Zotlabs/Module/Display.php:42 #: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:260 ../../Zotlabs/Module/Thing.php:96 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:4011 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Admin/Addons.php:260 +#: ../../Zotlabs/Module/Thing.php:96 ../../Zotlabs/Module/Viewsrc.php:25 +#: ../../include/items.php:4011 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:284 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:285 msgid "Item not found." msgstr "Nie znaleziono elementu." -#: ../../Zotlabs/Module/Filestorage.php:109 -#: ../../Zotlabs/Module/Attach_edit.php:69 +#: ../../Zotlabs/Module/Filestorage.php:109 ../../Zotlabs/Module/Attach_edit.php:69 msgid "File not found." msgstr "Nie znaleziono pliku." @@ -2696,8 +2637,7 @@ msgstr "Pokaż w folderze udostępnionym kontaktów" #: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 #: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 #: ../../Zotlabs/Module/Editblock.php:95 ../../Zotlabs/Module/Editpost.php:24 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 msgid "Item not found" msgstr "Nie znaleziono elementu" @@ -2726,28 +2666,28 @@ msgstr "Edytuj kartę" msgid "No connections." msgstr "Brak połączeń." -#: ../../Zotlabs/Module/Viewconnections.php:80 -#: ../../Zotlabs/Module/Connections.php:289 ../../include/text.php:1038 +#: ../../Zotlabs/Module/Viewconnections.php:80 ../../Zotlabs/Module/Connections.php:289 +#: ../../include/text.php:1038 msgid "Accepts" msgstr "Akceptacje" -#: ../../Zotlabs/Module/Viewconnections.php:83 -#: ../../Zotlabs/Module/Connections.php:292 ../../include/text.php:1041 +#: ../../Zotlabs/Module/Viewconnections.php:83 ../../Zotlabs/Module/Connections.php:292 +#: ../../include/text.php:1041 msgid "Comments" msgstr "Komentarze" -#: ../../Zotlabs/Module/Viewconnections.php:88 -#: ../../Zotlabs/Module/Connections.php:297 ../../include/text.php:1046 +#: ../../Zotlabs/Module/Viewconnections.php:88 ../../Zotlabs/Module/Connections.php:297 +#: ../../include/text.php:1046 msgid "Stream items" msgstr "Elementy strumienia" -#: ../../Zotlabs/Module/Viewconnections.php:93 -#: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:1051 +#: ../../Zotlabs/Module/Viewconnections.php:93 ../../Zotlabs/Module/Connections.php:302 +#: ../../include/text.php:1051 msgid "Wall posts" msgstr "Wpisy ścienne" -#: ../../Zotlabs/Module/Viewconnections.php:97 -#: ../../Zotlabs/Module/Connections.php:306 ../../include/text.php:1055 +#: ../../Zotlabs/Module/Viewconnections.php:97 ../../Zotlabs/Module/Connections.php:306 +#: ../../include/text.php:1055 msgid "Nothing" msgstr "Nic" @@ -2800,8 +2740,7 @@ msgstr "pozostaw puste, chyba że Twoja aplikacja wyraźnie tego wymaga" msgid "Connected OAuth2 Apps" msgstr "Aplikacje połączeń OAuth2" -#: ../../Zotlabs/Module/Wiki.php:35 -#: ../../extend/addon/hubzilla-addons/cart/cart.php:1410 +#: ../../Zotlabs/Module/Wiki.php:35 ../../extend/addon/hubzilla-addons/cart/cart.php:1410 #: ../../extend/addon/hubzilla-addons/flashcards/Mod_Flashcards.php:51 msgid "Profile Unavailable." msgstr "Profil niedostępny." @@ -2814,8 +2753,7 @@ msgstr "Aplikacja Wiki" msgid "Provide a wiki for your channel" msgstr "Udostępnij wiki dla swojego kanału" -#: ../../Zotlabs/Module/Wiki.php:77 -#: ../../extend/addon/hubzilla-addons/cart/cart.php:1556 +#: ../../Zotlabs/Module/Wiki.php:77 ../../extend/addon/hubzilla-addons/cart/cart.php:1556 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:478 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:456 #: ../../extend/addon/hubzilla-addons/cart/myshop.php:37 @@ -2854,8 +2792,7 @@ msgstr "Rodzaj treści" #: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:370 #: ../../Zotlabs/Widget/Wiki_pages.php:38 ../../Zotlabs/Widget/Wiki_pages.php:95 -#: ../../include/text.php:2118 -#: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 +#: ../../include/text.php:2118 ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:41 msgid "Markdown" msgstr "Markdown" @@ -3071,10 +3008,8 @@ msgstr "Wyszukiwanie lokalizacji nie powiodło się." #: ../../Zotlabs/Module/Locs.php:79 msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "" -"Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną." +"Please select another location to become primary before removing the primary location." +msgstr "Przed usunięciem lokalizacji podstawowej wybierz inną lokalizację jako główną." #: ../../Zotlabs/Module/Locs.php:108 msgid "Syncing locations" @@ -3107,16 +3042,14 @@ msgstr "Poczekaj kilka minut między kolejnymi operacjami." #: ../../Zotlabs/Module/Locs.php:135 msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +"When possible, drop a location by logging into that website/hub and removing your " +"channel." msgstr "" -"Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając " -"swój kanał." +"Jeśli to możliwe, upuść lokalizację, logując się do tego portalu i usuwając swój kanał." #: ../../Zotlabs/Module/Locs.php:136 msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" -"Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa." +msgstr "Użyj tego formularza, aby usunąć lokalizację, jeśli portal już nie działa." #: ../../Zotlabs/Module/Chatsvc.php:131 msgid "Away" @@ -3205,13 +3138,11 @@ msgstr "Ostatnia aktywność" msgid "View recent posts and comments" msgstr "Wyświetl najnowsze wpisy i komentarze" -#: ../../Zotlabs/Module/Connedit.php:629 -#: ../../Zotlabs/Module/Admin/Accounts.php:322 +#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:322 msgid "Unblock" msgstr "Odblokuj" -#: ../../Zotlabs/Module/Connedit.php:629 -#: ../../Zotlabs/Module/Admin/Accounts.php:321 +#: ../../Zotlabs/Module/Connedit.php:629 ../../Zotlabs/Module/Admin/Accounts.php:321 msgid "Block" msgstr "Zablokuj" @@ -3248,11 +3179,10 @@ msgid "Archive" msgstr "Archiwizuj" #: ../../Zotlabs/Module/Connedit.php:648 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgid "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale " -"zachowaj zawartość" +"Archiwizuj (lub przywróć) to połączenie - zaznacz kanał jako martwy, ale zachowaj " +"zawartość" #: ../../Zotlabs/Module/Connedit.php:649 msgid "This connection is archived!" @@ -3306,14 +3236,13 @@ msgstr "Ja" msgid "Family" msgstr "Rodzina" -#: ../../Zotlabs/Module/Connedit.php:718 -#: ../../Zotlabs/Module/Settings/Channel.php:71 +#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 #: ../../Zotlabs/Module/Settings/Channel.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:90 -#: ../../Zotlabs/Widget/Affinity.php:32 ../../include/channel.php:506 -#: ../../include/channel.php:509 ../../include/selectors.php:134 +#: ../../Zotlabs/Module/Settings/Channel.php:90 ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/channel.php:506 ../../include/channel.php:509 +#: ../../include/selectors.php:134 msgid "Friends" msgstr "Przyjaciele" @@ -3371,8 +3300,8 @@ msgid "" "This connection is unreachable from this location. Location independence is not " "supported by their network." msgstr "" -"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie " -"jest obsługiwana przez ich sieć." +"To połączenie jest nieosiągalne z tej lokalizacji. Niezależność lokalizacji nie jest " +"obsługiwana przez ich sieć." #: ../../Zotlabs/Module/Connedit.php:860 ../../include/items.php:4618 #, php-format @@ -3423,11 +3352,10 @@ msgstr "Importuj tylko wpisy z tym tekstem" #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 #: ../../Zotlabs/Module/Admin/Site.php:512 ../../Zotlabs/Module/Admin/Site.php:513 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all " -"posts" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts" msgstr "" -"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, " -"aby zaimportować wszystkie wpisy" +"słowa po jednym w wierszu lub #tags lub /patterns/ lub lang=xx, pozostaw puste, aby " +"zaimportować wszystkie wpisy" #: ../../Zotlabs/Module/Connedit.php:886 msgid "Do not import posts with this text" @@ -3444,11 +3372,11 @@ msgstr "Połączenie oczekujące na zatwierdzenie" #: ../../Zotlabs/Module/Connedit.php:898 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +"Please choose the profile you would like to display to %s when viewing your profile " +"securely." msgstr "" -"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego " -"przeglądania swojego profilu." +"Wybierz profil, który chcesz wyświetlić dla %s, podczas bezpiecznego przeglądania " +"swojego profilu." #: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Tokens.php:180 msgid "Their Settings" @@ -3458,26 +3386,24 @@ msgstr "Ich ustawienia" #: ../../Zotlabs/Module/Permcats.php:128 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +"\">privacy settings, which have higher priority than individual " +"settings. You can not change those settings here." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, które mają wyższy " -"priorytet niż indywidualne ustawienia. Nie możesz tutaj " -"zmienić tych ustawień." +"Niektóre uprawnienia mogą być dziedziczone z ustawień " +"prywatności Twojego kanału, które mają wyższy priorytet niż indywidualne " +"ustawienia. Nie możesz tutaj zmienić tych ustawień." #: ../../Zotlabs/Module/Connedit.php:905 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have any " -"impact unless the inherited setting changes." +"\">privacy settings, which have higher priority than individual " +"settings. You can change those settings here but they wont have any impact unless the " +"inherited setting changes." msgstr "" -"Niektóre uprawnienia mogą być dziedziczone z ustawień prywatności Twojego kanału, te które mają " -"wyższy priorytet niż indywidualne ustawienia. Możesz zmienić te ustawienia " -"tutaj, ale nie będą one miały żadnego wpływu, chyba że odziedziczone ustawienie " -"ulegnie zmianie." +"Niektóre uprawnienia mogą być dziedziczone z ustawień " +"prywatności Twojego kanału, te które mają wyższy priorytet niż " +"indywidualne ustawienia. Możesz zmienić te ustawienia tutaj, ale nie będą one miały " +"żadnego wpływu, chyba że odziedziczone ustawienie ulegnie zmianie." #: ../../Zotlabs/Module/Connedit.php:906 msgid "Last update:" @@ -3574,11 +3500,11 @@ msgstr "Twój identyfikator logowania to" #: ../../Zotlabs/Module/Regate.php:340 msgid "" -"After your account has been approved by our administrator you will be able to " -"login with your login ID and your provided password." +"After your account has been approved by our administrator you will be able to login " +"with your login ID and your provided password." msgstr "" -"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się " -"za pomocą swojego identyfikatora logowania i podanego hasła." +"Po zatwierdzeniu konta przez naszego administratora będziesz mógł zalogować się za " +"pomocą swojego identyfikatora logowania i podanego hasła." #: ../../Zotlabs/Module/Regate.php:352 msgid "Registration request revoked" @@ -3616,19 +3542,16 @@ msgstr "Nieznany lub wygasły identyfikator" msgid "dId2 malformed" msgstr "źle sformułowany dId2" -#: ../../Zotlabs/Module/Profile_photo.php:93 -#: ../../Zotlabs/Module/Cover_photo.php:85 +#: ../../Zotlabs/Module/Profile_photo.php:93 ../../Zotlabs/Module/Cover_photo.php:85 msgid "Image uploaded but image cropping failed." msgstr "Obraz został przesłany, ale przycinanie obrazu nie powiodło się." -#: ../../Zotlabs/Module/Profile_photo.php:147 -#: ../../Zotlabs/Module/Profile_photo.php:284 +#: ../../Zotlabs/Module/Profile_photo.php:147 ../../Zotlabs/Module/Profile_photo.php:284 #: ../../include/photo/photo_driver.php:435 msgid "Profile Photos" msgstr "Zdjęcia profilowe" -#: ../../Zotlabs/Module/Profile_photo.php:166 -#: ../../Zotlabs/Module/Cover_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:166 ../../Zotlabs/Module/Cover_photo.php:212 msgid "Image resize failed." msgstr "Zmiana rozmiaru obrazu nie powiodła się." @@ -3638,54 +3561,48 @@ msgid "" "Shift-reload the page or clear browser cache if the new photo does not display " "immediately." msgstr "" -"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie " -"nie zostanie wyświetlone od razu." +"Przeładuj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie " +"zostanie wyświetlone od razu." -#: ../../Zotlabs/Module/Profile_photo.php:261 -#: ../../Zotlabs/Module/Cover_photo.php:241 ../../include/photos.php:196 +#: ../../Zotlabs/Module/Profile_photo.php:261 ../../Zotlabs/Module/Cover_photo.php:241 +#: ../../include/photos.php:196 msgid "Unable to process image" msgstr "Nie można przetworzyć obrazu" -#: ../../Zotlabs/Module/Profile_photo.php:296 -#: ../../Zotlabs/Module/Cover_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:296 ../../Zotlabs/Module/Cover_photo.php:265 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Cover_photo.php:282 +#: ../../Zotlabs/Module/Profile_photo.php:315 ../../Zotlabs/Module/Cover_photo.php:282 msgid "Unable to process image." msgstr "Nie można przetworzyć obrazu." -#: ../../Zotlabs/Module/Profile_photo.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:431 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:379 ../../Zotlabs/Module/Profile_photo.php:431 +#: ../../Zotlabs/Module/Cover_photo.php:367 ../../Zotlabs/Module/Cover_photo.php:382 msgid "Photo not available." msgstr "Zdjęcie nie jest dostępne." #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" +"Your default profile photo is visible to anybody on the internet. Profile photos for " +"alternate profiles will inherit the permissions of the profile" msgstr "" -"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. " -"Zdjęcia profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" +"Twoje domyślne zdjęcie profilowe jest widoczne dla każdego w internecie. Zdjęcia " +"profilowe dla profili alternatywnych odziedziczą uprawnienia profilu" #: ../../Zotlabs/Module/Profile_photo.php:495 msgid "" -"Your profile photo is visible to anybody on the internet and may be distributed " -"to other websites." +"Your profile photo is visible to anybody on the internet and may be distributed to " +"other websites." msgstr "" "Twoje zdjęcie profilowe jest widoczne dla każdego w internecie i może być " "rozpowszechniane na innych stronach internetowych." -#: ../../Zotlabs/Module/Profile_photo.php:497 -#: ../../Zotlabs/Module/Cover_photo.php:420 +#: ../../Zotlabs/Module/Profile_photo.php:497 ../../Zotlabs/Module/Cover_photo.php:420 msgid "Upload File:" msgstr "Prześlij plik:" -#: ../../Zotlabs/Module/Profile_photo.php:498 -#: ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Profile_photo.php:498 ../../Zotlabs/Module/Cover_photo.php:421 msgid "Select a profile:" msgstr "Wybierz profil:" @@ -3702,10 +3619,10 @@ msgid "Use" msgstr "Użyj" #: ../../Zotlabs/Module/Profile_photo.php:500 ../../Zotlabs/Module/Photos.php:688 -#: ../../Zotlabs/Module/Cover_photo.php:423 -#: ../../Zotlabs/Module/Embedphotos.php:189 ../../Zotlabs/Storage/Browser.php:540 -#: ../../Zotlabs/Widget/Cdav.php:146 ../../Zotlabs/Widget/Cdav.php:182 -#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 +#: ../../Zotlabs/Module/Cover_photo.php:423 ../../Zotlabs/Module/Embedphotos.php:189 +#: ../../Zotlabs/Storage/Browser.php:540 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:182 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 msgid "Upload" msgstr "Prześlij" @@ -3716,30 +3633,24 @@ msgstr "Prześlij" msgid "Remove" msgstr "Usuń" -#: ../../Zotlabs/Module/Profile_photo.php:505 -#: ../../Zotlabs/Module/Profile_photo.php:506 -#: ../../Zotlabs/Module/Cover_photo.php:426 -#: ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:505 ../../Zotlabs/Module/Profile_photo.php:506 +#: ../../Zotlabs/Module/Cover_photo.php:426 ../../Zotlabs/Module/Cover_photo.php:427 msgid "Use a photo from your albums" msgstr "Użyj zdjęcia ze swoich albumów" -#: ../../Zotlabs/Module/Profile_photo.php:516 -#: ../../Zotlabs/Module/Cover_photo.php:438 +#: ../../Zotlabs/Module/Profile_photo.php:516 ../../Zotlabs/Module/Cover_photo.php:438 msgid "Select existing photo" msgstr "Wybierz istniejące zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:535 -#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:535 ../../Zotlabs/Module/Cover_photo.php:455 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: ../../Zotlabs/Module/Profile_photo.php:536 -#: ../../Zotlabs/Module/Cover_photo.php:456 +#: ../../Zotlabs/Module/Profile_photo.php:536 ../../Zotlabs/Module/Cover_photo.php:456 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalne wyświetlanie." -#: ../../Zotlabs/Module/Profile_photo.php:538 -#: ../../Zotlabs/Module/Cover_photo.php:458 +#: ../../Zotlabs/Module/Profile_photo.php:538 ../../Zotlabs/Module/Cover_photo.php:458 msgid "Done Editing" msgstr "Zakończono edycję" @@ -3837,7 +3748,7 @@ msgstr "Twój komentarz oczekuje na zatwierdzenie." #: ../../Zotlabs/Module/Item.php:1498 msgid "Unable to obtain post information from database." -msgstr "Nie można uzyskać z bazy danych informacji o tym poście." +msgstr "Nie można uzyskać z bazy danych informacji o tym wpisie." #: ../../Zotlabs/Module/Item.php:1505 #, php-format @@ -3881,18 +3792,18 @@ msgstr "Nie znaleziono strony." #: ../../Zotlabs/Module/Page.php:173 msgid "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " -"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis " -"nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " -"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu " -"fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in " -"culpa qui officia deserunt mollit anim id est laborum." +"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud " +"exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure " +"dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. " +"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt " +"mollit anim id est laborum." msgstr "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor " -"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis " -"nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. " -"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu " -"fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in " -"culpa qui officia deserunt mollit anim id est laborum." +"incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud " +"exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure " +"dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. " +"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt " +"mollit anim id est laborum." #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -3948,7 +3859,7 @@ msgstr "menu" #: ../../Zotlabs/Module/Impel.php:185 #, php-format msgid "%s element installed" -msgstr "Element %s zainstalowany" +msgstr "Element %s został zainstalowany" #: ../../Zotlabs/Module/Impel.php:188 #, php-format @@ -3961,17 +3872,15 @@ msgstr "Portale publiczne" #: ../../Zotlabs/Module/Pubsites.php:28 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." +"The listed hubs allow public registration for the $Projectname network. All hubs in " +"the network are interlinked so membership on any of them conveys membership in the " +"network as a whole. Some hubs may require subscription or provide tiered service " +"plans. The hub itself may provide additional details." msgstr "" -"Wymienione portale umożliwiają publiczną rejestrację w sieci $Projectname. " -"Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w " -"którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą " -"wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację " -"można znaleźć na poszczególnych portalach." +"Wymienione portale umożliwiają publiczną rejestrację w sieci $Projectname. Wszystkie " +"portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza " +"członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować " +"stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach." #: ../../Zotlabs/Module/Pubsites.php:34 msgid "Hub URL" @@ -4005,7 +3914,7 @@ msgstr "Ocena" #: ../../Zotlabs/Module/Chat.php:29 ../../Zotlabs/Module/Channel.php:44 #: ../../Zotlabs/Module/Ochannel.php:32 msgid "You must be logged in to see this page." -msgstr "Musisz być zalogowany, aby zobaczyć tę stronę." +msgstr "Trzeba być zalogowanym, aby zobaczyć tę stronę." #: ../../Zotlabs/Module/Chat.php:100 msgid "Chatrooms App" @@ -4017,15 +3926,15 @@ msgstr "Dostęp do kontrolowanych czatów" #: ../../Zotlabs/Module/Chat.php:194 msgid "Room not found" -msgstr "Nie znaleziono pokoju" +msgstr "Nie znaleziono czatu" #: ../../Zotlabs/Module/Chat.php:210 msgid "Leave Room" -msgstr "Opuść pokój" +msgstr "Opuść czat" #: ../../Zotlabs/Module/Chat.php:211 msgid "Delete Room" -msgstr "Usuń pokój" +msgstr "Usuń czat" #: ../../Zotlabs/Module/Chat.php:212 msgid "I am away right now" @@ -4098,12 +4007,12 @@ msgstr "Eksport Kanału" #: ../../Zotlabs/Module/Uexport.php:75 msgid "" "Export your basic channel information to a file. This acts as a backup of your " -"connections, permissions, profile and basic data, which can be used to import " -"your data to a new server hub, but does not contain your content." +"connections, permissions, profile and basic data, which can be used to import your " +"data to a new server hub, but does not contain your content." msgstr "" -"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia " -"zapasowa połączeń, uprawnień, profilu i podstawowych danych, których można użyć " -"do zaimportowania danych do nowego portalu, ale nie zawiera treści." +"Wyeksportuj do pliku podstawowe informacje o kanale. Działa to jako kopia zapasowa " +"połączeń, uprawnień, profilu i podstawowych danych, których można użyć do " +"zaimportowania danych do nowego portalu, ale nie zawiera treści." #: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" @@ -4112,16 +4021,15 @@ msgstr "Eksport Treści" #: ../../Zotlabs/Module/Uexport.php:77 msgid "" "Export your channel information and recent content to a JSON backup that can be " -"restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This file " -"may be VERY large. Please be patient - it may take several minutes for this " -"download to begin." +"restored or imported to another server hub. This backs up all of your connections, " +"permissions, profile data and several months of posts. This file may be VERY large. " +"Please be patient - it may take several minutes for this download to begin." msgstr "" -"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, " -"którą można przywrócić lub zaimportować do innego portalu. Tworzy to kopie " -"zapasowe wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku " -"miesięcy. Ten plik może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie " -"pobierania może zająć kilka minut." +"Wyeksportuj informacje o kanale i najnowsze treści do kopii zapasowej JSON, którą " +"można przywrócić lub zaimportować do innego portalu. Tworzy to kopie zapasowe " +"wszystkich połączeń, uprawnień, danych profilu i wpisów z kilku miesięcy. Ten plik " +"może być BARDZO duży. Prosimy o cierpliwość - rozpoczęcie pobierania może zająć kilka " +"minut." #: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." @@ -4129,44 +4037,44 @@ msgstr "Eksportuj swoje wpisy z danego roku." #: ../../Zotlabs/Module/Uexport.php:81 msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. If " -"the export fails (possibly due to memory exhaustion on your server hub), please " -"try again selecting a more limited date range." +"You may also export your posts and conversations for a particular year or month. " +"Adjust the date in your browser location bar to select other dates. If the export " +"fails (possibly due to memory exhaustion on your server hub), please try again " +"selecting a more limited date range." msgstr "" -"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub " -"miesiąca. Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. " -"Jeśli eksport się nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w " -"serwera portalu), spróbuj ponownie, wybierając bardziej ograniczony zakres dat." +"Można także wyeksportować swoje wpisy i rozmowy z określonego roku lub miesiąca. " +"Dostosuj datę na pasku adresu przeglądarki, aby wybrać inne daty. Jeśli eksport się " +"nie powiedzie (prawdopodobnie z powodu wyczerpania pamięci w serwera portalu), spróbuj " +"ponownie, wybierając bardziej ograniczony zakres dat." #: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" -"To select all posts for a given year, such as this year, visit " -"%2$s" +"To select all posts for a given year, such as this year, visit %2$s" msgstr "" -"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" +"Aby wybrać wszystkie wpisy z danego roku, na przykład tego roku, odwiedź %2$s" #: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" -"To select all posts for a given month, such as January of this year, visit %2$s" +"To select all posts for a given month, such as January of this year, visit %2$s" msgstr "" -"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź " -"%2$s" +"Aby wybrać wszystkie wpisy z danego miesiąca, np. stycznia tego roku, odwiedź %2$s" #: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import or " -"restore these in date order (oldest first)." +"These content files may be imported or restored by visiting %2$s " +"on any site containing your channel. For best results please import or restore these " +"in date order (oldest first)." msgstr "" -"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę %2$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać " -"najlepsze wyniki, zaimportuj lub przywróć je w kolejności (od najstarszych)." +"Te pliki treści można zaimportować lub przywrócić, odwiedzając stronę " +"%2$s w dowolnym portalu zawierającym Twój kanał. Aby uzyskać najlepsze wyniki, " +"zaimportuj lub przywróć je w kolejności (od najstarszych)." #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4188,11 +4096,11 @@ msgstr "Zresetowano hasło na %s" #: ../../Zotlabs/Module/Lostpass.php:68 msgid "" -"Request could not be verified. (You may have previously submitted it.) Password " -"reset failed." +"Request could not be verified. (You may have previously submitted it.) Password reset " +"failed." msgstr "" -"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). " -"Resetowanie hasła nie powiodło się." +"Nie można zweryfikować żądania. (Możliwe, że zostało już przesłane). Resetowanie hasła " +"nie powiodło się." #: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" @@ -4208,7 +4116,7 @@ msgstr "Twoje nowe hasło to" #: ../../Zotlabs/Module/Lostpass.php:94 msgid "Save or copy your new password - and then" -msgstr "Zapisz lub skopiuj nowe hasło - a następnie" +msgstr "Zapisz lub skopiuj nowe hasło, a następnie" #: ../../Zotlabs/Module/Lostpass.php:95 msgid "click here to login" @@ -4216,8 +4124,7 @@ msgstr "kliknij tutaj aby się zalogować" #: ../../Zotlabs/Module/Lostpass.php:96 msgid "" -"Your password may be changed from the Settings page after successful " -"login." +"Your password may be changed from the Settings page after successful login." msgstr "" "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym " "zalogowaniu." @@ -4233,11 +4140,11 @@ msgstr "Zapomniałeś hasła?" #: ../../Zotlabs/Module/Lostpass.php:131 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Enter your email address and submit to have your password reset. Then check your email " +"for further instructions." msgstr "" -"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź " -"swoja skrzynkę e-mail, aby uzyskać dalsze instrukcje." +"Wpisz swój adres e-mail i prześlij, aby zresetować hasło. Następnie sprawdź swoja " +"skrzynkę e-mail, aby uzyskać dalsze instrukcje." #: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" @@ -4285,11 +4192,9 @@ msgid "shared a file with you" msgstr "udostępnił Ci plik" #: ../../Zotlabs/Module/Display.php:354 ../../Zotlabs/Module/Channel.php:483 -msgid "" -"You must enable javascript for your browser to be able to view this content." +msgid "You must enable javascript for your browser to be able to view this content." msgstr "" -"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej " -"przeglądarce." +"Aby przeglądać te treści, musisz włączyć obsługę JavaScript w swojej przeglądarce." #: ../../Zotlabs/Module/Display.php:372 msgid "Article" @@ -4330,13 +4235,10 @@ msgid "Your software should be updated" msgstr "Twoje oprogramowanie powinno zostać zaktualizowane" #: ../../Zotlabs/Module/Admin.php:141 ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Security.php:98 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Admin/Security.php:98 #: ../../Zotlabs/Module/Admin/Accounts.php:307 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:440 +#: ../../Zotlabs/Module/Admin/Channels.php:145 ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Addons.php:342 ../../Zotlabs/Module/Admin/Addons.php:440 #: ../../Zotlabs/Module/Admin/Site.php:408 msgid "Administration" msgstr "Administracja" @@ -4351,7 +4253,7 @@ msgstr "Zarejestrowane konta" #: ../../Zotlabs/Module/Admin.php:146 msgid "Pending registrations" -msgstr "Rejestracja oczekująca" +msgstr "Rejestracje oczekujące" #: ../../Zotlabs/Module/Admin.php:147 msgid "Registered channels" @@ -4446,8 +4348,7 @@ msgstr "Zobacz zdjęcie" #: ../../Zotlabs/Lib/Apps.php:1196 ../../Zotlabs/Lib/Activity.php:1552 #: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Pinned.php:268 #: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1214 -#: ../../include/cdav.php:158 ../../include/cdav.php:159 -#: ../../include/cdav.php:167 +#: ../../include/cdav.php:158 ../../include/cdav.php:159 ../../include/cdav.php:167 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1189 msgid "Unknown" msgstr "Nieznane" @@ -4523,7 +4424,7 @@ msgstr "Oznacz jako \"dla dorosłych\" w widoku albumu" #: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:318 msgid "I like this (toggle)" -msgstr "Lubię to (przełącz)" +msgstr "Podoba mis sie to (przełącz)" #: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:319 msgid "I don't like this (toggle)" @@ -4547,12 +4448,12 @@ msgstr "Komentarz" #: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:652 msgctxt "title" msgid "Likes" -msgstr "Polubienia" +msgstr "Ocen pozytywnych" #: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:653 msgctxt "title" msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Ocen negatywnych" #: ../../Zotlabs/Module/Photos.php:1114 ../../Zotlabs/Widget/Pinned.php:77 #: ../../include/conversation.php:654 @@ -4601,18 +4502,18 @@ msgstr "Pokaż wszystkie" msgctxt "noun" msgid "Like" msgid_plural "Likes" -msgstr[0] "Polubienie" -msgstr[1] "Polubienia" -msgstr[2] "Polubień" +msgstr[0] "Ocena pozytywna" +msgstr[1] "Oceny pozytywne" +msgstr[2] "Oce pozytywanych" #: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:248 #: ../../include/conversation.php:1755 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" -msgstr[0] "Niepolubienie" -msgstr[1] "Niepolubienia" -msgstr[2] "Niepolubień" +msgstr[0] "Ocena negartwna" +msgstr[1] "Oceny negatywne" +msgstr[2] "Ocen negatywnych" #: ../../Zotlabs/Module/Photos.php:1247 msgid "Photo Tools" @@ -4629,12 +4530,12 @@ msgstr "Mapa" #: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:491 msgctxt "noun" msgid "Likes" -msgstr "Polubienia" +msgstr "Oceny pozytywne" #: ../../Zotlabs/Module/Photos.php:1270 ../../Zotlabs/Lib/ThreadItem.php:492 msgctxt "noun" msgid "Dislikes" -msgstr "Niepolubienia" +msgstr "Oceny negatywne" #: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Storage/Browser.php:411 #: ../../Zotlabs/Lib/ThreadItem.php:497 ../../Zotlabs/Widget/Pinned.php:158 @@ -4660,8 +4561,7 @@ msgstr "Tylko wpisy" #: ../../Zotlabs/Module/Channel.php:206 msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" -"Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu." +msgstr "Niewystarczające uprawnienia. Żądanie zostało przekierowane na stronę profilu." #: ../../Zotlabs/Module/Channel.php:221 ../../Zotlabs/Module/Network.php:168 msgid "Search Results For:" @@ -4737,50 +4637,42 @@ msgid "View your connections and/or add somebody whose address you already know" msgstr "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz" #: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" +msgid "View your personal stream (this may be empty until you add some connections)" msgstr "" -"Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych " -"połączeń)" +"Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)" #: ../../Zotlabs/Module/Go.php:52 msgid "View the public stream. Warning: this content is not moderated" -msgstr "" -"Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" +msgstr "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana" -#: ../../Zotlabs/Module/Connections.php:58 -#: ../../Zotlabs/Module/Connections.php:116 +#: ../../Zotlabs/Module/Connections.php:58 ../../Zotlabs/Module/Connections.php:116 #: ../../Zotlabs/Module/Connections.php:274 msgid "Active" -msgstr "Aktywny" +msgstr "Aktywne" -#: ../../Zotlabs/Module/Connections.php:63 -#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:63 ../../Zotlabs/Module/Connections.php:182 #: ../../Zotlabs/Module/Connections.php:279 msgid "Blocked" -msgstr "Zablokowany" +msgstr "Zablokowane" -#: ../../Zotlabs/Module/Connections.php:68 -#: ../../Zotlabs/Module/Connections.php:189 +#: ../../Zotlabs/Module/Connections.php:68 ../../Zotlabs/Module/Connections.php:189 #: ../../Zotlabs/Module/Connections.php:278 msgid "Ignored" -msgstr "Ignorowany" +msgstr "Ignorowane" -#: ../../Zotlabs/Module/Connections.php:73 -#: ../../Zotlabs/Module/Connections.php:203 +#: ../../Zotlabs/Module/Connections.php:73 ../../Zotlabs/Module/Connections.php:203 #: ../../Zotlabs/Module/Connections.php:277 msgid "Hidden" -msgstr "Ukryty" +msgstr "Ukryte" -#: ../../Zotlabs/Module/Connections.php:78 -#: ../../Zotlabs/Module/Connections.php:196 +#: ../../Zotlabs/Module/Connections.php:78 ../../Zotlabs/Module/Connections.php:196 msgid "Archived/Unreachable" msgstr "Zarchiwizowane/Nieosiągalne" #: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Connections.php:92 #: ../../Zotlabs/Module/Notifications.php:53 ../../Zotlabs/Module/Menu.php:180 msgid "New" -msgstr "Nowy" +msgstr "Nowe" #: ../../Zotlabs/Module/Connections.php:158 msgid "Active Connections" @@ -4790,8 +4682,7 @@ msgstr "Aktywne połączenia" msgid "Show active connections" msgstr "Pokaż aktywne połączenia" -#: ../../Zotlabs/Module/Connections.php:165 -#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Module/Connections.php:165 ../../Zotlabs/Widget/Notifications.php:104 msgid "New Connections" msgstr "Nowe połączenia" @@ -4862,14 +4753,14 @@ msgstr "Stan" #: ../../Zotlabs/Module/Connections.php:340 msgid "Connected" -msgstr "Połączene" +msgstr "Połączone" #: ../../Zotlabs/Module/Connections.php:342 msgid "Approve connection" msgstr "Zatwierdź połączenie" -#: ../../Zotlabs/Module/Connections.php:343 -#: ../../Zotlabs/Module/Admin/Accounts.php:318 ../../include/conversation.php:776 +#: ../../Zotlabs/Module/Connections.php:343 ../../Zotlabs/Module/Admin/Accounts.php:318 +#: ../../include/conversation.php:776 msgid "Approve" msgstr "Zatwierdź" @@ -4932,15 +4823,15 @@ msgstr "Zaktualizowano ustawienia narzędzia koligacji." #: ../../Zotlabs/Module/Affinity.php:47 msgid "" -"This app presents a slider control in your connection editor and also on your " -"network page. The slider represents your degree of friendship (affinity) with " -"each connection. It allows you to zoom in or out and display conversations from " -"only your closest friends or everybody in your stream." +"This app presents a slider control in your connection editor and also on your network " +"page. The slider represents your degree of friendship (affinity) with each connection. " +"It allows you to zoom in or out and display conversations from only your closest " +"friends or everybody in your stream." msgstr "" -"Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie " -"internetowej. Suwak przedstawia stopień przyjaźni (koligacji) z każdym " -"połączeniem. Umożliwia powiększanie i pomniejszanie oraz wyświetlanie rozmów " -"tylko od najbliższych znajomych lub wszystkich w strumieniu." +"Ta aplikacja przedstawia suwak w edytorze połączeń, a także na stronie internetowej. " +"Suwak przedstawia stopień przyjaźni (koligacji) z każdym połączeniem. Umożliwia " +"powiększanie i pomniejszanie oraz wyświetlanie rozmów tylko od najbliższych znajomych " +"lub wszystkich w strumieniu." #: ../../Zotlabs/Module/Affinity.php:52 msgid "Affinity Tool App" @@ -4948,11 +4839,11 @@ msgstr "Aplikacja Narzędzie koligacji" #: ../../Zotlabs/Module/Affinity.php:57 msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." +"The numbers below represent the minimum and maximum slider default positions for your " +"network/stream page as a percentage." msgstr "" -"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków " -"na stronie sieci/strumienia w procentach." +"Poniższe liczby przedstawiają minimalne i maksymalne domyślne pozycje suwaków na " +"stronie sieci/strumienia w procentach." #: ../../Zotlabs/Module/Affinity.php:64 msgid "Default maximum affinity level" @@ -4975,8 +4866,7 @@ msgid "Persistent affinity levels" msgstr "Trwałe poziomy więzi" #: ../../Zotlabs/Module/Affinity.php:76 -msgid "" -"If disabled the max and min levels will be reset to default after page reload" +msgid "If disabled the max and min levels will be reset to default after page reload" msgstr "" "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości " "domyślnych po ponownym załadowaniu strony" @@ -4991,11 +4881,11 @@ msgstr "Brak kanału." #: ../../Zotlabs/Module/Common.php:45 msgid "No connections in common." -msgstr "Brak wspólnych połączeń." +msgstr "Brak popularnych połączeń." #: ../../Zotlabs/Module/Common.php:65 msgid "View Common Connections" -msgstr "Wyświetl typowe połączenia" +msgstr "Wyświetl popularne połączenia" #: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 #, php-format @@ -5026,8 +4916,7 @@ msgstr "Edytuj artykuł" msgid "Authentication failed." msgstr "Uwierzytelnianie nie powiodło się." -#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 -#: ../../boot.php:1717 +#: ../../Zotlabs/Module/Rmagic.php:96 ../../include/channel.php:2625 ../../boot.php:1717 msgid "Remote Authentication" msgstr "Zdalne uwierzytelnianie" @@ -5045,8 +4934,7 @@ msgstr "Element nie jest dostępny." #: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 msgid "This setting requires special processing and editing has been blocked." -msgstr "" -"To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." +msgstr "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana." #: ../../Zotlabs/Module/Pconfig.php:57 msgid "Configuration Editor" @@ -5054,13 +4942,13 @@ msgstr "Edytor konfiguracji" #: ../../Zotlabs/Module/Pconfig.php:58 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how to " -"correctly use this feature." +"Warning: Changing some settings could render your channel inoperable. Please leave " +"this page unless you are comfortable with and knowledgeable about how to correctly use " +"this feature." msgstr "" -"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał " -"przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie " -"wiesz, jak prawidłowo korzystać z tej funkcji." +"Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie " +"działać. Opuść tę stronę, chyba że czujesz się kompetentnie i wiesz, jak prawidłowo " +"korzystać z tej funkcji." #: ../../Zotlabs/Module/Randprof.php:29 msgid "Random Channel App" @@ -5078,13 +4966,11 @@ msgstr "Zaktualizowano ustawienia motywu." msgid "No themes found." msgstr "Nie znaleziono motywów." -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:311 +#: ../../Zotlabs/Module/Admin/Themes.php:95 ../../Zotlabs/Module/Admin/Addons.php:311 msgid "Disable" msgstr "Wyłącz" -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:314 +#: ../../Zotlabs/Module/Admin/Themes.php:97 ../../Zotlabs/Module/Admin/Addons.php:314 msgid "Enable" msgstr "Włącz" @@ -5092,30 +4978,26 @@ msgstr "Włącz" msgid "Screenshot" msgstr "Zrzut ekranu" -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Module/Admin/Themes.php:157 +#: ../../Zotlabs/Widget/Admin.php:28 msgid "Themes" msgstr "Motywy" -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:124 ../../Zotlabs/Module/Admin/Addons.php:344 msgid "Toggle" msgstr "Przełącz" -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:345 ../../Zotlabs/Lib/Apps.php:339 -#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../Zotlabs/Widget/Newmember.php:53 -#: ../../include/nav.php:106 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Module/Admin/Addons.php:345 +#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Widget/Settings_menu.php:61 +#: ../../Zotlabs/Widget/Newmember.php:53 ../../include/nav.php:106 msgid "Settings" msgstr "Ustawienia" -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:134 ../../Zotlabs/Module/Admin/Addons.php:352 msgid "Author: " msgstr "Autor: " -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:353 +#: ../../Zotlabs/Module/Admin/Themes.php:135 ../../Zotlabs/Module/Admin/Addons.php:353 msgid "Maintainer: " msgstr "Opiekun: " @@ -5129,35 +5011,33 @@ msgstr "[Nieobsługiwane]" #: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +"By default, unfiltered HTML is allowed in embedded media. This is inherently insecure." msgstr "" -"Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z " -"natury niebezpieczne." +"Domyślnie, w osadzonych mediach jest dozwolony niefiltrowany HTML. Jest to z natury " +"niebezpieczne." #: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +"The recommended setting is to only allow unfiltered HTML from the following sites:" msgstr "" -"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z " -"następujących portali:" +"Zalecane ustawienie to zezwalanie na niefiltrowany kodu HTML tylko z następujących " +"portali:" #: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://" +"vimeo.com/
https://soundcloud.com/
" msgstr "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://" +"vimeo.com/
https://soundcloud.com/
" #: ../../Zotlabs/Module/Admin/Security.php:94 msgid "" -"All other embedded content will be filtered, unless embedded " -"content from that site is explicitly blocked." +"All other embedded content will be filtered, unless embedded content " +"from that site is explicitly blocked." msgstr "" -"Wszystkie inne osadzone treści będą filtrowane, chyba że " -"osadzone treści z tego portalu są jawnie zablokowane." +"Wszystkie inne osadzone treści będą filtrowane, chyba że osadzone " +"treści z tego portalu są jawnie zablokowane." #: ../../Zotlabs/Module/Admin/Security.php:99 ../../Zotlabs/Widget/Admin.php:25 msgid "Security" @@ -5169,8 +5049,8 @@ msgstr "Zablokuj publiczny dostęp" #: ../../Zotlabs/Module/Admin/Security.php:101 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +"Check to block public access to all otherwise public personal pages on this site " +"unless you are currently authenticated." msgstr "" "Zaznacz, aby zablokować publiczny dostęp do wszystkich innych publicznych stron " "osobistych na tym portalu, chyba że jesteś obecnie uwierzytelniony." @@ -5180,16 +5060,14 @@ msgid "Provide a cloud root directory" msgstr "Podaj katalog główny w chmurze" #: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"The cloud root directory lists all channel names which provide public files" +msgid "The cloud root directory lists all channel names which provide public files" msgstr "" -"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które " -"udostępniają pliki publiczne" +"Katalog główny w chmurze zawiera listę wszystkich nazw kanałów, które udostępniają " +"pliki publiczne" #: ../../Zotlabs/Module/Admin/Security.php:103 msgid "Show total disk space available to cloud uploads" -msgstr "" -"Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury" +msgstr "Pokaż całkowitą powierzchnię dyskową dostępną dla przesyłania plików do chmury" #: ../../Zotlabs/Module/Admin/Security.php:104 msgid "Set \"Transport Security\" HTTP header" @@ -5205,12 +5083,12 @@ msgstr "Dozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:106 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" +"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, które są dozwolone w adresach e-mail " -"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " -"pole oznacza zezwolenie na dowolne domeny" +"Rozdzielana przecinkami lista domen, które są dozwolone w adresach e-mail podczas " +"rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza " +"zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "Not allowed email domains" @@ -5219,24 +5097,23 @@ msgstr "Niedozwolone domeny e-mail" #: ../../Zotlabs/Module/Admin/Security.php:107 msgid "" "Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any domains, " -"unless allowed domains have been defined." +"registrations to this site. Wildcards are accepted. Empty to allow any domains, unless " +"allowed domains have been defined." msgstr "" -"Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail " -"podczas rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste " -"pole oznacza zezwolenie na wszystkie domeny, chyba że zostały uprzednio " -"zdefiniowane jakieś dozwolone domeny." +"Rozdzielana przecinkami lista domen, które nie są dozwolone w adresach e-mail podczas " +"rejestracji w tym portalu. Akceptowane są symbole wieloznaczne. Puste pole oznacza " +"zezwolenie na wszystkie domeny, chyba że zostały uprzednio zdefiniowane jakieś " +"dozwolone domeny." #: ../../Zotlabs/Module/Admin/Security.php:108 msgid "Allow communications only from these sites" msgstr "Zezwalaj na komunikację tylko z tych portali" #: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by default" +msgid "One site per line. Leave empty to allow communication from anywhere by default" msgstr "" -"Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na " -"komunikację z każdym portalem" +"Jeden portal w każdym wierszu. Pozostaw puste, aby domyślnie zezwolić na komunikację z " +"każdym portalem" #: ../../Zotlabs/Module/Admin/Security.php:109 msgid "Block communications from these sites" @@ -5247,11 +5124,9 @@ msgid "Allow communications only from these channels" msgstr "Zezwalaj na komunikację tylko z tych kanałów" #: ../../Zotlabs/Module/Admin/Security.php:110 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +msgid "One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -"Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny " -"kanał" +"Jeden kanał (hasz) na linię. Pozostaw puste, aby domyślnie zezwolić na dowolny kanał" #: ../../Zotlabs/Module/Admin/Security.php:111 msgid "Block communications from these channels" @@ -5407,33 +5282,30 @@ msgstr "Klasa usługi" #: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało " -"opublikowane na tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno " -"usunąć?" +"Wybrane konta zostaną usunięte!\\n\\nWszystko, co z tych kont zostało opublikowane na " +"tym portalu, zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"The account {0} will be deleted!\\n\\nEverything this account has posted on this site " +"will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym " -"portalu zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Konto {0} zostanie usuniete!\\n\\nWszystko co opublikowano z tego konta na tym portalu " +"zostanie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Accounts.php:347 ../../include/conversation.php:1123 msgid "Message" msgstr "Wiadowmość" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Admin/Features.php:55 ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "Off" msgstr "WYŁ" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Admin/Features.php:55 ../../Zotlabs/Module/Admin/Features.php:56 #: ../../Zotlabs/Module/Settings/Features.php:38 ../../include/features.php:55 msgid "On" msgstr "WŁ" @@ -5475,8 +5347,7 @@ msgstr "Pusta kolejka dla tego portalu" msgid "Last known contact" msgstr "Ostatni znany kontakt" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako pomyślna" @@ -5484,11 +5355,9 @@ msgstr "Aktualizacja została oznaczona jako pomyślna" #, php-format msgid "Verification of update %s failed. Check system logs." msgstr "" -"Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki " -"systemowe." +"Weryfikacja aktualizacji %s nie zakończyła się pomyślnie. Sprawdź dzienniki systemowe." -#: ../../Zotlabs/Module/Admin/Dbsync.php:35 -#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 ../../Zotlabs/Module/Admin/Dbsync.php:74 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizacja %s została pomyślnie zastosowana." @@ -5496,16 +5365,14 @@ msgstr "Aktualizacja %s została pomyślnie zastosowana." #: ../../Zotlabs/Module/Admin/Dbsync.php:39 #, php-format msgid "Verifying update %s did not return a status. Unknown if it succeeded." -msgstr "" -"Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." +msgstr "Weryfikacja aktualizacji %s nie zwróciła stanu. Nie wiadomo, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:42 #, php-format msgid "Update %s does not contain a verification function." msgstr "Aktualizacja %s nie zawiera funkcji weryfikacji." -#: ../../Zotlabs/Module/Admin/Dbsync.php:46 -#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 ../../Zotlabs/Module/Admin/Dbsync.php:81 #, php-format msgid "Update function %s could not be found." msgstr "Nie można znaleźć funkcji aktualizacji %s." @@ -5514,13 +5381,11 @@ msgstr "Nie można znaleźć funkcji aktualizacji %s." #, php-format msgid "Executing update procedure %s failed. Check system logs." msgstr "" -"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki " -"systemowe." +"Wykonanie procedury aktualizacji %s nie powiodło się. Sprawdź dzienniki systemowe." #: ../../Zotlabs/Module/Admin/Dbsync.php:78 #, php-format -msgid "" -"Update %s did not return a status. It cannot be determined if it was successful." +msgid "Update %s did not return a status. It cannot be determined if it was successful." msgstr "Aktualizacja %s nie zwróciła stanu. Nie można ustalić, czy się udało." #: ../../Zotlabs/Module/Admin/Dbsync.php:99 @@ -5533,8 +5398,7 @@ msgstr "Oznacz sukces (jeśli aktualizacja została wykonana ręcznie)" #: ../../Zotlabs/Module/Admin/Dbsync.php:102 msgid "Attempt to verify this update if a verification procedure exists" -msgstr "" -"Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" +msgstr "Spróbuj zweryfikować tą aktualizację, jeśli istnieje procedura weryfikacji" #: ../../Zotlabs/Module/Admin/Dbsync.php:103 msgid "Attempt to execute this update step automatically" @@ -5601,13 +5465,11 @@ msgstr "Niedozwolony kod kanału '%s'" msgid "select all" msgstr "wybierz wszystkie" -#: ../../Zotlabs/Module/Admin/Channels.php:150 -#: ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../Zotlabs/Module/Directory.php:362 msgid "Censor" msgstr "Cenzoruj" -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Directory.php:362 +#: ../../Zotlabs/Module/Admin/Channels.php:151 ../../Zotlabs/Module/Directory.php:362 msgid "Uncensor" msgstr "Usuń cenzurę" @@ -5629,16 +5491,16 @@ msgstr "UID" #: ../../Zotlabs/Module/Admin/Channels.php:162 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +"Selected channels will be deleted!\\n\\nEverything that was posted in these channels " +"on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -"Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane " -"będzie bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" +"Wybrane kanały zostaną usunięte!\\n\\nWszystko co zostało w nich opublikowane będzie " +"bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" #: ../../Zotlabs/Module/Admin/Channels.php:163 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" "Kanał {0} zostanie usunięty!\\n\\nWszystko co opublikowano na tym kanale będzie " "bezpowrotnie usunięte!\\n\\nCzy na pewno usunąć?" @@ -5665,11 +5527,10 @@ msgid "Log file" msgstr "Plik dziennika" #: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver directory." +msgid "Must be writable by web server. Relative to your top-level webserver directory." msgstr "" -"Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu " -"głównego serwera WWW." +"Musi mieć możliwość zapisu przez serwer WWW. Ścieżka względna do katalogu głównego " +"serwera WWW." #: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" @@ -5714,8 +5575,8 @@ msgstr "Wtyczka %s jest wyłączona." msgid "Plugin %s enabled." msgstr "Wtyczka %s jest włączona." -#: ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Addons.php:441 ../../Zotlabs/Widget/Admin.php:27 +#: ../../Zotlabs/Module/Admin/Addons.php:343 ../../Zotlabs/Module/Admin/Addons.php:441 +#: ../../Zotlabs/Widget/Admin.php:27 msgid "Addons" msgstr "Dodatki" @@ -5739,8 +5600,7 @@ msgstr "Kompatybilne role serwera: " msgid "Requires: " msgstr "Wymagania: " -#: ../../Zotlabs/Module/Admin/Addons.php:359 -#: ../../Zotlabs/Module/Admin/Addons.php:446 +#: ../../Zotlabs/Module/Admin/Addons.php:359 ../../Zotlabs/Module/Admin/Addons.php:446 msgid "Disabled - version incompatibility" msgstr "Wyłączone - niezgodność wersji" @@ -5809,8 +5669,7 @@ msgstr "Zaktualizowano ustawienia portalu." msgid "Default" msgstr "Domyślnie" -#: ../../Zotlabs/Module/Admin/Site.php:262 -#: ../../Zotlabs/Module/Settings/Display.php:118 +#: ../../Zotlabs/Module/Admin/Site.php:262 ../../Zotlabs/Module/Settings/Display.php:118 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (niekompatybilne)" @@ -5861,11 +5720,11 @@ msgstr "Minuta/Minuty" #: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 msgid "Hour(s)" -msgstr "Godzin/Godziny" +msgstr "Godzina/Godziny" #: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 msgid "Day(s)" -msgstr "Dzień.Dni" +msgstr "Dzień/Dni" #: ../../Zotlabs/Module/Admin/Site.php:356 msgid "Week(s)" @@ -5940,11 +5799,11 @@ msgstr "Informacje o administratorze" #: ../../Zotlabs/Module/Admin/Site.php:423 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" +"Contact information for site administrators. Displayed on siteinfo page. BBCode can " +"be used here" msgstr "" -"Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie " -"informacji o portalu. Tutaj można użyć BBCode" +"Informacje kontaktowe o administratorach portalu. Wyświetlane na stronie informacji o " +"portalu. Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:424 ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" @@ -5952,11 +5811,11 @@ msgstr "Informacje o portalu" #: ../../Zotlabs/Module/Admin/Site.php:424 msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. BBCode " -"can be used here" +"Publicly visible description of this site. Displayed on siteinfo page. BBCode can be " +"used here" msgstr "" -"Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o " -"portalu. Tutaj można użyć BBCode" +"Publicznie widoczny opis tego portalu. Wyświetlane na stronie informacji o portalu. " +"Tutaj można użyć BBCode" #: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" @@ -5971,8 +5830,8 @@ msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -"Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - " -"zmień ustawienia motywu" +"Domyślny motyw systemu - może zostać zastąpiony w profilu użytkownika w opcji - zmień ustawienia motywu" #: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" @@ -5987,11 +5846,10 @@ msgid "Maximum image size" msgstr "Maksymalny rozmiar obrazu" #: ../../Zotlabs/Module/Admin/Site.php:430 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no limits." +msgid "Maximum size in bytes of uploaded images. Default is 0, which means no limits." msgstr "" -"Maksymalny rozmiar przesłanych obrazów w bajtach. Wartość domyślna to 0, co " -"oznacza brak ograniczeń." +"Maksymalny rozmiar przesyłanych obrazów w bajtach. Wartość domyślna to 0, co oznacza " +"brak ograniczeń." #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" @@ -5999,14 +5857,13 @@ msgstr "Minimalny wiek" #: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." -msgstr "" -"Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tej stronie." +msgstr "Minimalny wiek (w latach) dla osób, które mogą zarejestrować się na tym portalu." #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "Which best describes the types of account offered by this hub?" msgstr "" -"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez " -"ten portal?" +"Które z poniższych stwierdzeń najlepiej opisuje rodzaje kont oferowanych przez ten " +"portal?" #: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." @@ -6031,38 +5888,36 @@ msgstr "Skonfiguruj dni i godziny otwarte rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:453 msgid "Empty or '-:-' value will keep registration open 24/7 (default)" msgstr "" -"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na " -"dobę i 7 dni w tygodniu (domyślne ustawienie)" +"Wartość pusta lub '-:-' sprawi, że rejestracja będzie otwarta 24 godziny na dobę i 7 " +"dni w tygodniu (domyślne ustawienie)" #: ../../Zotlabs/Module/Admin/Site.php:454 msgid "" -"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-" -"` example: 1:800-1200" +"Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` " +"example: 1:800-1200" msgstr "" -"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do " -"myślnikiem '-'. Przykład: 1:800-1200" +"Dni tygodnia i godziny należy rozdzielić dwukropkiem ':', zakresy od-do myślnikiem " +"'-'. Przykład: 1:800-1200" #: ../../Zotlabs/Module/Admin/Site.php:455 -msgid "" -"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" +msgid "Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700" msgstr "" -"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: " -"1:900-1700 2:900-1700" +"Pary 'dzień tygodnia:godzina' muszą być rozdzielone spacją. Przykład: 1:900-1700 " +"2:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:456 msgid "" "From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or " "1-2,4-5:900-1700" msgstr "" -"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: " -"1:800-1200,1300-1700 lub 1-2,4-5:900-1700" +"Zakresy 'od-do' muszą być rozdzielone przecinkiem. Przykład: 1:800-1200,1300-1700 lub " +"1-2,4-5:900-1700" #: ../../Zotlabs/Module/Admin/Site.php:457 msgid "Advanced examples:" msgstr "Zaawansowane przykłady:" -#: ../../Zotlabs/Module/Admin/Site.php:457 -#: ../../Zotlabs/Module/Settings/Channel.php:420 +#: ../../Zotlabs/Module/Admin/Site.php:457 ../../Zotlabs/Module/Settings/Channel.php:420 msgid "or" msgstr "lub" @@ -6092,11 +5947,11 @@ msgstr "Automatyczne tworzenie kanałów" #: ../../Zotlabs/Module/Admin/Site.php:478 msgid "" -"If disabled the channel will be created in a separate step during the " -"registration process" +"If disabled the channel will be created in a separate step during the registration " +"process" msgstr "" -"Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas " -"procesu rejestracji" +"Jeśli opcja jest wyłączona, kanał zostanie utworzony w osobnym kroku podczas procesu " +"rejestracji" #: ../../Zotlabs/Module/Admin/Site.php:482 msgid "Require invite code" @@ -6120,26 +5975,25 @@ msgstr "Konto porzucone po x dniach" #: ../../Zotlabs/Module/Admin/Site.php:500 msgid "" -"Will not waste system resources polling external sites for abandonded accounts. " -"Enter 0 for no time limit." +"Will not waste system resources polling external sites for abandonded accounts. Enter " +"0 for no time limit." msgstr "" -"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w " -"poszukiwaniu porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." +"Nie marnuje zasobów systemowych na odpytywanie zewnętrznych witryn w poszukiwaniu " +"porzuconych kont. Wpisz 0, aby nie mieć limitu czasu." #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "Site homepage to show visitors (default: login box)" msgstr "" -"Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz " -"logowania)" +"Strona główna portalu do wyświetlania odwiedzającym (domyślnie: formularz logowania)" #: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" -"example: 'pubstream' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." +"example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage " +"called 'home' or 'include:home.html' to include a file." msgstr "" -"przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby " -"wyświetlić systemową stronę internetową o nazwie 'home' lub 'include: home." -"html', aby dołączyć plik." +"przykład: 'pubstream', aby pokazać strumień publiczny, 'page/sys/home', aby wyświetlić " +"systemową stronę internetową o nazwie 'home' lub 'include: home.html', aby dołączyć " +"plik." #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" @@ -6147,8 +6001,7 @@ msgstr "Zachowaj adres URL strony głównej portalu" #: ../../Zotlabs/Module/Admin/Site.php:506 msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" +"Present the site homepage in a frame at the original location instead of redirecting" msgstr "" "Przedstaw stronę główną portalu w ramce w oryginalnej lokalizacji zamiast " "przekierowywania" @@ -6159,23 +6012,21 @@ msgstr "Dozwolone domeny znajomych" #: ../../Zotlabs/Module/Admin/Site.php:507 msgid "" -"Comma separated list of domains which are allowed to establish friendships with " -"this site. Wildcards are accepted. Empty to allow any domains" +"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ą zawierać przyjaźnie z tą " -"witryną. Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na " -"dowolne domeny" +"Rozdzielana przecinkami lista domen, które mogą zawierać przyjaźnie z tą witryną. " +"Akceptowane są symbole wieloznaczne. Puste oznacza zezwolenie na dowolne domeny" #: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Wymuś publikację" #: ../../Zotlabs/Module/Admin/Site.php:508 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." +msgid "Check to force all profiles on this site to be listed in the site directory." msgstr "" -"Zaznacz, aby wymusić opublikowanie w katalogu portalu wszystkich profili " -"założonych w tym portalu." +"Zaznacz, aby wymusić opublikowanie w katalogu wszystkich profili założonych na tym " +"portalu." #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" @@ -6183,35 +6034,34 @@ msgstr "Importuj strumienie publiczne" #: ../../Zotlabs/Module/Admin/Site.php:509 msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." +"Import and allow access to public content pulled from other sites. Warning: this " +"content is unmoderated." msgstr "" "Importuj i zezwalaj na dostęp do treści publicznych pobranych z innych portali. " "Ostrzeżenie: ta zawartość jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" -msgstr "Strumienie publiczne tylko z tego portalu" +msgstr "Strumień publiczny tylko z tego portalu" #: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." +"Allow access to public content originating only from this site if Imported Public " +"Streams are disabled." msgstr "" -"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, " -"jeśli importowane strumienie publiczne są wyłączone." +"Zezwalaj na dostęp do treści publicznych pochodzących tylko z tego portalu, jeśli " +"importowane strumienie publiczne są wyłączone." #: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" -msgstr "Zezwól każdemu w internecie na dostęp do strumieni publicznych" +msgstr "Zezwól każdemu w Internecie na dostęp do strumienia publicznego" #: ../../Zotlabs/Module/Admin/Site.php:511 msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." +"Disable to require authentication before viewing. Warning: this content is unmoderated." msgstr "" -"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta " -"zawartość jest niemoderowana." +"Wyłącz, aby wymagać uwierzytelnienia przed przeglądaniem. Ostrzeżenie: ta zawartość " +"jest niemoderowana." #: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" @@ -6230,7 +6080,7 @@ msgid "" "Present a login box to visitors on the home page if no other content has been " "configured." msgstr "" -"Przedstaw formularz logowania odwiedzającym na stronie głównej, jeśli nie " +"Wyświetlaj formularz logowania odwiedzającym na stronie głównej, jeśli nie " "skonfigurowano żadnych innych treści." #: ../../Zotlabs/Module/Admin/Site.php:517 @@ -6238,11 +6088,9 @@ msgid "Enable context help" msgstr "Włącz pomoc kontekstową" #: ../../Zotlabs/Module/Admin/Site.php:517 -msgid "" -"Display contextual help for the current page when the help button is pressed." +msgid "Display contextual help for the current page when the help button is pressed." msgstr "" -"Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku " -"pomocy." +"Wyświetlanie pomocy kontekstowej dla bieżącej strony po naciśnięciu przycisku pomocy." #: ../../Zotlabs/Module/Admin/Site.php:519 msgid "Reply-to email address for system generated email." @@ -6270,11 +6118,11 @@ msgstr "Włącz powiadomienia SSE" #: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" -"If disabled, traditional polling will be used. Warning: this setting might not " -"be suited for shared hosting" +"If disabled, traditional polling will be used. Warning: this setting might not be " +"suited for shared hosting" msgstr "" -"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to " -"ustawienie może nie być odpowiednie dla hostingu współdzielonego" +"Jeśli wyłączone, będzie używane tradycyjne odpytywanie. Ostrzeżenie: to ustawienie " +"może nie być odpowiednie dla hostingu współdzielonego" #: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" @@ -6302,9 +6150,9 @@ msgid "" "Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large " "dedicated servers." msgstr "" -"Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów " -"prywatnych. 0-1 dla dużych serwerów dedykowanych." +"Opóźnij procesy dostarczania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. " +"Zalecane: 4-5 dla hostów współdzielonych, 2-3 dla wirtualnych serwerów prywatnych. 0-1 " +"dla dużych serwerów dedykowanych." #: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" @@ -6315,8 +6163,8 @@ msgid "" "Number of deliveries to attempt in a single operating system process. Adjust if " "necessary to tune system performance. Recommend: 1-5." msgstr "" -"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W " -"razie potrzeby dostosuj, aby dostroić wydajność systemu. Polecam: 1-5." +"Liczba dostaw do podjęcia w ramach jednego procesu systemu operacyjnego. W razie " +"potrzeby dostosuj, aby dostroić wydajność systemu. Zalecane: 1-5." #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" @@ -6324,11 +6172,10 @@ msgstr "Próg kolejki" #: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." +"Always defer immediate delivery if queue contains more than this number of entries." msgstr "" -"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej " -"pozycji niż ta liczba." +"Zawsze odraczaj natychmiastowe dostarczenie, jeśli kolejka zawiera więcej pozycji niż " +"ta liczba." #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" @@ -6336,11 +6183,11 @@ msgstr "Okres odpytywania" #: ../../Zotlabs/Module/Admin/Site.php:533 msgid "" -"Delay background polling processes by this many seconds to reduce system load. " -"If 0, use delivery interval." +"Delay background polling processes by this many seconds to reduce system load. If 0, " +"use delivery interval." msgstr "" -"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie " -"systemu. Jeśli 0, użyty będzie interwał dostawy." +"Opóźnij procesy sondowania w tle o kilka sekund, aby zmniejszyć obciążenie systemu. " +"Jeśli 0, użyty będzie interwał dostawy." #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" @@ -6348,25 +6195,22 @@ msgstr "Ścieżka do programu konwertującego ImageMagick" #: ../../Zotlabs/Module/Admin/Site.php:534 msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > 4000 " -"pixels in either dimension), otherwise memory exhaustion may occur. Example: /" -"usr/bin/convert" +"If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels " +"in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert" msgstr "" -"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla " -"dużych obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może " -"wystąpić wyczerpanie pamięci. Przykład: /usr/bin/convert" +"Jeśli jest ustawiona, użyj tego programu do generowania miniatur zdjęć dla dużych " +"obrazów (> 4000 pikseli w każdym wymiarze), w przeciwnym razie może wystąpić " +"wyczerpanie pamięci. Przykład: /usr/bin/convert" #: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" msgstr "Maksymalne średnie obciążenie" #: ../../Zotlabs/Module/Admin/Site.php:535 -msgid "" -"Maximum system load before delivery and poll processes are deferred - default " -"50." +msgid "Maximum system load before delivery and poll processes are deferred - default 50." msgstr "" -"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i " -"odpytywania - domyślnie 50." +"Maksymalne obciążenie systemu przed odroczeniem procesów dostarczania i odpytywania - " +"domyślnie 50." #: ../../Zotlabs/Module/Admin/Site.php:536 msgid "Expiration period in days for imported (grid/network) content" @@ -6379,19 +6223,18 @@ msgstr "0 dla braku wygaśnięcia zaimportowanej treści" #: ../../Zotlabs/Module/Admin/Site.php:537 msgid "Do not expire any posts which have comments less than this many days ago" msgstr "" -"Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta " -"wartość dni od teraz" +"Nie wygaszaj żadnych wpisów, które mają komentarze z datami mniejszymi niż ta wartość " +"dni od teraz" #: ../../Zotlabs/Module/Admin/Site.php:538 msgid "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "" -"Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych " -"rejestrujących" +"Serwery publiczne: opcjonalna strona lądowania (marketingowa) dla nowych rejestrujących" #: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format msgid "Create this page first. Default is %s/register" -msgstr "Utwórz najpierw tą stronę. Domyślnie %s/ register" +msgstr "Utwórz najpierw tą stronę. Domyślnie %s/register" #: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Page to display after creating a new channel" @@ -6399,7 +6242,7 @@ msgstr "Strona do wyświetlenia po utworzeniu nowego kanału" #: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Default: profiles" -msgstr "Domyślnie: profile" +msgstr "Domyślnie: profiles" #: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" @@ -6417,38 +6260,31 @@ msgstr "Nieprawidłowa wartość czasu 24-godzinnego (hhmm/hmm)" msgid "New Profile Field" msgstr "Nowe pole profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 msgid "Field nickname" msgstr "Krótka nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 +#: ../../Zotlabs/Module/Admin/Profs.php:90 ../../Zotlabs/Module/Admin/Profs.php:110 msgid "System name of field" msgstr "Systemowa nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 +#: ../../Zotlabs/Module/Admin/Profs.php:91 ../../Zotlabs/Module/Admin/Profs.php:111 msgid "Input type" msgstr "Typ wejścia" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Field Name" msgstr "Nazwa pola" -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:92 ../../Zotlabs/Module/Admin/Profs.php:112 msgid "Label on profile pages" msgstr "Etykieta na stronach profilu" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Help text" msgstr "Tekst pomocy" -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 +#: ../../Zotlabs/Module/Admin/Profs.php:93 ../../Zotlabs/Module/Admin/Profs.php:113 msgid "Additional info (optional)" msgstr "Dodatkowe informacje (opcjonalnie)" @@ -6502,7 +6338,7 @@ msgstr "Odmowa dostępu." #: ../../Zotlabs/Module/Thing.php:122 msgid "Thing updated" -msgstr "Rzecz zaktualizowana" +msgstr "Obiekt został zaktualizowany" #: ../../Zotlabs/Module/Thing.php:174 msgid "Object store: failed" @@ -6510,7 +6346,7 @@ msgstr "Magazyn obiektów: błąd" #: ../../Zotlabs/Module/Thing.php:178 msgid "Thing added" -msgstr "Rzecz dodana" +msgstr "Obiekt został dodany" #: ../../Zotlabs/Module/Thing.php:204 #, php-format @@ -6519,15 +6355,15 @@ msgstr "OBJ: %1$s %2$s %3$s" #: ../../Zotlabs/Module/Thing.php:267 msgid "Show Thing" -msgstr "Wyświetl rzecz" +msgstr "Wyświetl obiekt" #: ../../Zotlabs/Module/Thing.php:274 msgid "item not found." -msgstr "pozycja nie została znaleziona." +msgstr "element nie została znaleziony." #: ../../Zotlabs/Module/Thing.php:307 msgid "Edit Thing" -msgstr "Edytuj rzecz" +msgstr "Edytuj obiekt" #: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 msgid "Select a profile" @@ -6543,36 +6379,32 @@ msgstr "Wysyłane tylko do osób przeglądających odpowiedni profil" #: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 msgid "Name of thing e.g. something" -msgstr "Nazwa rzeczy, np. coś" +msgstr "Nazwa obiektu, np. coś" #: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 msgid "URL of thing (optional)" -msgstr "URL rzeczy (opcjonalnie)" +msgstr "URL obiektu (opcjonalnie)" #: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 msgid "URL for photo of thing (optional)" -msgstr "URL do zdjęcia rzeczy (opcjonalnie)" +msgstr "URL do zdjęcia obiektu (opcjonalnie)" #: ../../Zotlabs/Module/Thing.php:364 msgid "Add Thing to your Profile" -msgstr "Dodaj rzecz do swojego profilu" +msgstr "Dodaj obiekt do swojego profilu" #: ../../Zotlabs/Module/Suggest.php:40 msgid "Suggest Channels App" msgstr "Aplikacja Sugerowane Kanały" #: ../../Zotlabs/Module/Suggest.php:41 -msgid "" -"Suggestions for channels in the $Projectname network you might be interested in" -msgstr "" -"Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" +msgid "Suggestions for channels in the $Projectname network you might be interested in" +msgstr "Propozycje dotyczące kanałów w sieci $Projectname, które mogą Cię zainteresować" #: ../../Zotlabs/Module/Suggest.php:54 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 hours." +msgid "No suggestions available. If this is a new site, please try again in 24 hours." msgstr "" -"Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 " -"godziny." +"Brak dostępnych propozycji. Jeśli to jest nowy portal, spróbuj ponownie za 24 godziny." #: ../../Zotlabs/Module/Suggest.php:73 ../../Zotlabs/Widget/Suggestions.php:48 msgid "Ignore/Hide" @@ -6590,13 +6422,13 @@ msgstr "Wymagana jest weryfikacja adresu e-mail" #: ../../Zotlabs/Module/Email_validation.php:37 #, php-format msgid "" -"A verification token was sent to your email address [%s]. Enter that token here " -"to complete the account verification step. Please allow a few minutes for " -"delivery, and check your spam folder if you do not see the message." +"A verification token was sent to your email address [%s]. Enter that token here to " +"complete the account verification step. Please allow a few minutes for delivery, and " +"check your spam folder if you do not see the message." msgstr "" -"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta " -"ten token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na " -"dostarczenie i jeśli nie widzisz wiadomości, sprawdź folder ze spamem." +"Token weryfikacyjny został wysłany na Twój adres e-mail [% s]. Wprowadź tuta ten " +"token, aby zakończyć etap weryfikacji konta. Poczekaj kilka minut na dostarczenie i " +"jeśli nie widzisz wiadomości, sprawdź folder ze spamem." #: ../../Zotlabs/Module/Email_validation.php:38 msgid "Resend Email" @@ -6634,29 +6466,28 @@ msgstr "Aplikacja Dostęp Gościnny" #: ../../Zotlabs/Module/Tokens.php:100 msgid "Create access tokens so that non-members can access private content" msgstr "" -"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do " -"Twoich treści prywatnych" +"Utwórz tokeny dostępu, aby osoby niebędące członkami mogły uzyskać dostęp do Twoich " +"treści prywatnych" #: ../../Zotlabs/Module/Tokens.php:133 msgid "" -"Use this form to create temporary access identifiers to share things with non-" -"members. These identities may be used in Access Control Lists and visitors may " -"login using these credentials to access private content." +"Use this form to create temporary access identifiers to share things with non-members. " +"These identities may be used in Access Control Lists and visitors may login using " +"these credentials to access private content." msgstr "" -"Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby " -"udostępniać rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane " -"na listach kontroli dostępu, a odwiedzający mogą logować się przy użyciu tych " -"poświadczeń, aby uzyskać dostęp do treści prywatnych." +"Użyj tego formularza, aby utworzyć tymczasowe identyfikatory dostępu, aby udostępniać " +"rzeczy osobom niebędącym członkami. Tożsamości te mogą być używane na listach kontroli " +"dostępu, a odwiedzający mogą logować się przy użyciu tych poświadczeń, aby uzyskać " +"dostęp do treści prywatnych." #: ../../Zotlabs/Module/Tokens.php:135 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +"You may also provide dropbox style access links to friends and associates by " +"adding the Login Password to any specific site URL as shown. Examples:" msgstr "" -"Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu " -"dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak " -"pokazano na ilustracji. Przykłady:" +"Możesz także udostępnić znajomym i współpracownikom łącza dostępu w stylu dropbox, dodając hasło logowania do dowolnego adresu URL witryny, jak pokazano na " +"ilustracji. Przykłady:" #: ../../Zotlabs/Module/Tokens.php:170 msgid "Guest Access Tokens" @@ -6684,11 +6515,10 @@ msgstr "Zmień kolejność aplikacji na pasku aplikacji" #: ../../Zotlabs/Module/Apporder.php:48 msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" +"Use arrows to move the corresponding app left (top) or right (bottom) in the navbar" msgstr "" -"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo " -"(u dołu) na pasku nawigacyjnym" +"Użyj strzałek, aby przesunąć odpowiednią aplikację w lewo (u góry) lub w prawo (u " +"dołu) na pasku nawigacyjnym" #: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" @@ -6738,8 +6568,7 @@ msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." #: ../../Zotlabs/Module/Setup.php:177 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS issue." +msgid "Could not connect to specified site URL. Possible SSL certificate or DNS issue." msgstr "" "Nie można połączyć się z określonym adresem URL portalu. Możliwy problem z " "certyfikatem SSL lub DNS." @@ -6754,11 +6583,11 @@ msgstr "Baza danych portalu została zainstalowana." #: ../../Zotlabs/Module/Setup.php:196 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +"You may need to import the file \"install/schema_xxx.sql\" manually using a database " +"client." msgstr "" -"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za " -"pomocą klienta bazy danych." +"Może być konieczne ręczne zaimportowanie pliku „install/schema_xxx.sql” za pomocą " +"klienta bazy danych." #: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 #: ../../Zotlabs/Module/Setup.php:768 @@ -6778,28 +6607,25 @@ msgid "Database connection" msgstr "Połączenie z bazą danych" #: ../../Zotlabs/Module/Setup.php:285 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +msgid "In order to install $Projectname we need to know how to connect to your database." msgstr "" -"Aby zainstalować $Projectname, musimy wiedzieć, jak połączyć się z twoją bazą " -"danych." +"Aby zainstalować $Projectname, musimy wiedzieć, jak połączyć się z twoją bazą danych." #: ../../Zotlabs/Module/Setup.php:286 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +"Please contact your hosting provider or site administrator if you have questions about " +"these settings." msgstr "" "Jeśli masz pytania dotyczące tych ustawień, skontaktuj się z dostawcą usług " "hostingowych lub administratorem portalu." #: ../../Zotlabs/Module/Setup.php:287 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +"The database you specify below should already exist. If it does not, please create it " +"before continuing." msgstr "" -"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie " -"stało, utwórz ją przed kontynuowaniem." +"Baza danych, którą określisz poniżej, powinna już istnieć. Jeśli tak się nie stało, " +"utwórz ją przed kontynuowaniem." #: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" @@ -6838,11 +6664,10 @@ msgid "Site administrator email address" msgstr "Adres e-mail administratora portalu" #: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 -msgid "" -"Your account email address must match this in order to use the web admin panel." +msgid "Your account email address must match this in order to use the web admin panel." msgstr "" -"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc " -"korzystać z panelu administratora sieci." +"Adres e-mail Twojego konta będzie musi być zgodny z tym adresem, aby móc korzystać z " +"panelu administratora sieci." #: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" @@ -6874,11 +6699,11 @@ msgstr "Nie można znaleźć wersji CLI PHP w zmiennej PATH serwerze WWW." #: ../../Zotlabs/Module/Setup.php:399 msgid "" -"If you don't have a command line version of PHP installed on server, you will " -"not be able to run background polling via cron." +"If you don't have a command line version of PHP installed on server, you will not be " +"able to run background polling via cron." msgstr "" -"Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można " -"uruchomić odpytywania w tle przez cron." +"Jeśli nie masz wersji CLI PHP zainstalowanej na serwerze, nie będzie można uruchomić " +"odpytywania w tle przez cron." #: ../../Zotlabs/Module/Setup.php:403 msgid "PHP executable path" @@ -6889,24 +6714,23 @@ msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole " -"puste, aby kontynuować instalację." +"Wpisz pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby " +"kontynuować instalację." #: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" msgstr "PHP CLI" #: ../../Zotlabs/Module/Setup.php:418 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is required." +msgid "Unable to check command line PHP, as shell_exec() is disabled. This is required." msgstr "" -"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To " -"jest wymagane." +"Nie można sprawdzić PHP CLI, ponieważ funkcja shell_exec() jest wyłączona. To jest " +"wymagane." #: ../../Zotlabs/Module/Setup.php:422 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"The command line version of PHP on your system does not have \"register_argc_argv\" " +"enabled." msgstr "PHP CLI w Twoim systemie nie ma włączonego \"register_argc_argv\"." #: ../../Zotlabs/Module/Setup.php:423 @@ -6919,21 +6743,20 @@ msgstr "PHP register_argc_argv" #: ../../Zotlabs/Module/Setup.php:446 msgid "" -"This is not sufficient to upload larger images or files. You should be able to " -"upload at least 4 MB at once." +"This is not sufficient to upload larger images or files. You should be able to upload " +"at least 4 MB at once." msgstr "" -"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc " -"przesłać co najmniej 4 MB na raz." +"To nie wystarczy, aby przesłać większe obrazy lub pliki. Powinieneś móc przesłać co " +"najmniej 4 MB na raz." #: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +"Your max allowed total upload size is set to %s. Maximum size of one file to upload is " +"set to %s. You are allowed to upload up to %d files at once." msgstr "" -"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. " -"Maksymalny rozmiar jednego pliku do przesłania to %s. Możesz przesłać " -"jednocześnie do %d plików." +"Twój maksymalny dopuszczalny łączny rozmiar przesyłanych plików to %s. Maksymalny " +"rozmiar jednego pliku do przesłania to %s. Możesz przesłać jednocześnie do %d plików." #: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." @@ -6948,16 +6771,16 @@ msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to generate " "encryption keys" msgstr "" -"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować " -"kluczy szyfrujących" +"Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy " +"szyfrujących" #: ../../Zotlabs/Module/Setup.php:480 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." msgstr "" -"Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/" -"openssl.installation.php\"." +"Jeśli pracujesz w systemie Windows, przeczytaj \"http://www.php.net/manual/en/openssl." +"installation.php\"." #: ../../Zotlabs/Module/Setup.php:483 msgid "Generate encryption keys" @@ -6998,8 +6821,7 @@ msgstr "Moduł Apache mod_rewrite" #: ../../Zotlabs/Module/Setup.php:510 msgid "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest " -"zainstalowany." +"Błąd: wymagany jest moduł mod-rewrite serwera Apache, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" @@ -7007,11 +6829,10 @@ msgstr "exec" #: ../../Zotlabs/Module/Setup.php:516 msgid "" -"Error: exec is required but is either not installed or has been disabled in php." -"ini" +"Error: exec is required but is either not installed or has been disabled in php.ini" msgstr "" -"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został " -"wyłączony w php.ini" +"Błąd: wymagany jest program exec ale nie jest on zainstalowany lub został wyłączony w " +"php.ini" #: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" @@ -7019,11 +6840,11 @@ msgstr "shell_exec" #: ../../Zotlabs/Module/Setup.php:522 msgid "" -"Error: shell_exec is required but is either not installed or has been disabled " -"in php.ini" +"Error: shell_exec is required but is either not installed or has been disabled in php." +"ini" msgstr "" -"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony " -"w php.ini" +"Błąd: wymagany jest shell_exec, ale nie jest zainstalowany lub został wyłączony w php." +"ini" #: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." @@ -7031,11 +6852,11 @@ msgstr "Błąd: wymagany jest moduł PHP libCURL, ale nie jest zainstalowany." #: ../../Zotlabs/Module/Setup.php:534 msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library required " -"but not installed." +"Error: GD PHP module with JPEG support or ImageMagick graphics library required but " +"not installed." msgstr "" -"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką " -"graficzną ImageMagick, ale nie jest on zainstalowany." +"Błąd: wymagany jest moduł PHP GD z obsługą formatu JPEG lub biblioteką graficzną " +"ImageMagick, ale nie jest on zainstalowany." #: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." @@ -7067,19 +6888,19 @@ msgstr ".htconfig.php jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:585 msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" in " -"the top folder of your web server and it is unable to do so." +"The web installer needs to be able to create a file called \".htconfig.php\" in the " +"top folder of your web server and it is unable to do so." msgstr "" -"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"." -"htconfig.php\" w głównym folderze serwera WWW a nie może tego zrobić." +"Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \".htconfig.php\" " +"w głównym folderze serwera WWW a nie może tego zrobić." #: ../../Zotlabs/Module/Setup.php:586 msgid "" -"This is most often a permission setting, as the web server may not be able to " -"write files in your folder - even if you can." +"This is most often a permission setting, as the web server may not be able to write " +"files in your folder - even if you can." msgstr "" -"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w " -"stanie zapisywać plików w Twoim folderze - nawet jeśli możesz." +"Najczęściej jest to ustawienie uprawnień, ponieważ serwer WWW może nie być w stanie " +"zapisywać plików w Twoim folderze - nawet jeśli możesz." #: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." @@ -7096,28 +6917,28 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" -"In order to store these compiled templates, the web server needs to have write " -"access to the directory %s under the top level web folder." +"In order to store these compiled templates, the web server needs to have write access " +"to the directory %s under the top level web folder." msgstr "" -"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do " -"zapisu w katalogu %s zlokalizowanym w folderze głównym serwera WWW." +"Aby przechowywać te skompilowane szablony, serwer sieciowy musi mieć dostęp do zapisu " +"w katalogu %s zlokalizowanym w folderze głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +"Please ensure that the user that your web server runs as (e.g. www-data) has write " +"access to this folder." msgstr "" -"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do " -"zapisu w tym folderze." +"Upewnij się, że właściciel procesu serwer WWW (np. www-data), ma prawo do zapisu w tym " +"folderze." #: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" -"Note: as a security measure, you should give the web server write access to %s " -"only--not the template files (.tpl) that it contains." +"Note: as a security measure, you should give the web server write access to %s only--" +"not the template files (.tpl) that it contains." msgstr "" -"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu " -"tylko do %s - nie do plików szablonów (.tpl), które on zawiera." +"Uwaga: ze względów bezpieczeństwa powinno się dać serwerowi WWW prawo zapisu tylko do " +"%s - nie do plików szablonów (.tpl), które on zawiera." #: ../../Zotlabs/Module/Setup.php:609 #, php-format @@ -7126,12 +6947,12 @@ msgstr "%s jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:625 msgid "" -"This software uses the store directory to save uploaded files. The web server " -"needs to have write access to the store directory under the top level web folder" +"This software uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the top level web folder" msgstr "" -"To oprogramowanie używa katalogu store do zapisywania przesyłanych " -"plików. Serwer WWW musi mieć dostęp do zapisu w katalogu store, " -"znajdującego się w folderze serwera WWW najwyższego poziomu" +"To oprogramowanie używa katalogu store do zapisywania przesyłanych plików. " +"Serwer WWW musi mieć dostęp do zapisu w katalogu store, znajdującego się w " +"folderze serwera WWW najwyższego poziomu" #: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" @@ -7139,78 +6960,72 @@ msgstr "katalog store jest możliwy do zapisu" #: ../../Zotlabs/Module/Setup.php:661 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access to " -"this site." +"SSL certificate cannot be validated. Fix certificate or disable https access to this " +"site." msgstr "" -"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp " -"https do tej witryny." +"Nie można zweryfikować certyfikatu SSL. Napraw certyfikat lub wyłącz dostęp https do " +"tej witryny." #: ../../Zotlabs/Module/Setup.php:662 msgid "" -"If you have https access to your website or allow connections to TCP port 443 " -"(the https: port), you MUST use a browser-valid certificate. You MUST NOT use " -"self-signed certificates!" +"If you have https access to your website or allow connections to TCP port 443 (the " +"https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed " +"certificates!" msgstr "" -"Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na " -"połączenia z portem TCP 443 (port https:), MUSISZ użyć certyfikatu " -"akceptowanego przez przeglądarki. NIE WOLNO używać certyfikatów z podpisem " -"własnym!" +"Jeśli masz dostęp https do swojego portalu internetowego lub zezwalasz na połączenia z " +"portem TCP 443 (port https:), MUSISZ użyć certyfikatu akceptowanego przez " +"przeglądarki. NIE WOLNO używać certyfikatów z podpisem własnym!" #: ../../Zotlabs/Module/Setup.php:663 msgid "" -"This restriction is incorporated because public posts from you may for example " -"contain references to images on your own hub." +"This restriction is incorporated because public posts from you may for example contain " +"references to images on your own hub." msgstr "" -"To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na " -"przykład zawierać odniesienia do obrazów na Twoim portalu." +"To ograniczenie zostało wprowadzone, ponieważ Twoje publiczne wpisy mogą na przykład " +"zawierać odniesienia do obrazów na Twoim portalu." #: ../../Zotlabs/Module/Setup.php:664 msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +"If your certificate is not recognized, members of other sites (who may themselves have " +"valid certificates) will get a warning message on their own site complaining about " +"security issues." msgstr "" -"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy " -"sami mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej " -"witrynie, ostrzegający o problemie z bezpieczeństwem." +"Jeśli Twój certyfikat nie zostanie rozpoznany, członkowie innych witryn (którzy sami " +"mogą mieć ważne certyfikaty) otrzymają komunikat ostrzegawczy we własnej witrynie, " +"ostrzegający o problemie z bezpieczeństwem." #: ../../Zotlabs/Module/Setup.php:665 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +"This can cause usability issues elsewhere (not just on your own site) so we must " +"insist on this requirement." msgstr "" -"Może to powodować problemy z użytecznością w innym portalu (nie tylko na " -"Twoim), więc musimy nalegać na to wymaganie." +"Może to powodować problemy z użytecznością w innym portalu (nie tylko na Twoim), więc " +"musimy nalegać na to wymaganie." #: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +msgid "Providers are available that issue free certificates which are browser-valid." msgstr "" "Są dostępni dostawcy, którzy wydają bezpłatne certyfikaty akceptowane przez " "przeglądarki." #: ../../Zotlabs/Module/Setup.php:667 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +"If you are confident that the certificate is valid and signed by a trusted authority, " +"check to see if you have failed to install an intermediate cert. These are not " +"normally required by browsers, but are required for server-to-server communications." msgstr "" -"Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, " -"sprawdź, czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są " -"one wymagane przez przeglądarki, ale są wymagane do komunikacji między " -"serwerami." +"Jeśli masz pewność, że certyfikat jest ważny i podpisany przez zaufany urząd, sprawdź, " +"czy nie udało się zainstalować certyfikatu pośredniego. Zwykle nie są one wymagane " +"przez przeglądarki, ale są wymagane do komunikacji między serwerami." #: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" msgstr "Walidacja certyfikatu SSL" #: ../../Zotlabs/Module/Setup.php:675 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration.Test: " +msgid "Url rewrite in .htaccess is not working. Check your server configuration.Test: " msgstr "" -"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. " -"Test: " +"Przepisywanie adresu URL w .htaccess nie działa. Sprawdź konfigurację serwera. Test: " #: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" @@ -7218,12 +7033,11 @@ msgstr "Przepisywanie adresu URL działa" #: ../../Zotlabs/Module/Setup.php:691 msgid "" -"The database configuration file \".htconfig.php\" could not be written. Please " -"use the enclosed text to create a configuration file in your web server root." +"The database configuration file \".htconfig.php\" could not be written. Please use the " +"enclosed text to create a configuration file in your web server root." msgstr "" "Nie można zapisać pliku konfiguracyjnego bazy danych \".htconfig.php\". Użyj " -"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera " -"WWW." +"załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera WWW." #: ../../Zotlabs/Module/Setup.php:720 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:401 @@ -7235,8 +7049,7 @@ msgid "

What next?

" msgstr "

Co następnie?

" #: ../../Zotlabs/Module/Setup.php:767 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowanie zadania Cron." #: ../../Zotlabs/Module/Directory.php:122 @@ -7501,11 +7314,9 @@ msgstr "Utwórz własne limity uprawnień do połączeń" #: ../../Zotlabs/Module/Permcats.php:80 msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +"Use this form to create permission rules for various classes of people or connections." msgstr "" -"Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub " -"połączeń." +"Użyj tego formularza, aby utworzyć reguły uprawnień dla różnych klas osób lub połączeń." #: ../../Zotlabs/Module/Permcats.php:113 ../../Zotlabs/Lib/Apps.php:374 msgid "Permission Categories" @@ -7600,8 +7411,8 @@ msgstr "Rejestracja na tym portalu wymaga zatwierdzenia przez administratora." #: ../../Zotlabs/Module/Register.php:445 msgid "Register at another affiliated hub in case when prefered" msgstr "" -"Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz " -"takiego rozwiązania" +"Zarejestruj się w innym stowarzyszonym portalu w przypadku, gdy potrzebujesz takiego " +"rozwiązania" #: ../../Zotlabs/Module/Register.php:458 msgid "Registration on this hub is by invitation only." @@ -7618,12 +7429,12 @@ msgstr "Regulamin" #: ../../Zotlabs/Module/Register.php:479 #, php-format msgid "I accept the %s for this website" -msgstr "Akceptuję % s dla tego portalu" +msgstr "Akceptuję %s dla tego portalu" #: ../../Zotlabs/Module/Register.php:486 #, php-format msgid "I am over %s years of age and accept the %s for this website" -msgstr "Mam ponad % s lat i akceptuję % s dla tego portalu" +msgstr "Mam ponad %s lat i akceptuję %s dla tego portalu" #: ../../Zotlabs/Module/Register.php:496 msgid "Your email address" @@ -7651,8 +7462,7 @@ msgstr "Preferowane jest prawdziwe imię i nazwisko" #: ../../Zotlabs/Module/Register.php:510 msgid "Your nickname will be used to create an easy to remember channel address" -msgstr "" -"Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" +msgstr "Twój pseudonim posłuży do stworzenia łatwego do zapamiętania adresu kanału" #: ../../Zotlabs/Module/Register.php:514 msgid "Why do you want to join this hub?" @@ -7666,8 +7476,7 @@ msgstr "Pomoże to przejrzeć Twoją rejestrację" msgid "I have an invite code" msgstr "Mam kod zaproszenia" -#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 -#: ../../boot.php:1696 +#: ../../Zotlabs/Module/Register.php:542 ../../include/nav.php:168 ../../boot.php:1696 msgid "Register" msgstr "Zarejestruj się" @@ -7708,8 +7517,7 @@ msgstr "Chroniony adres e-mail. Nie można zmienić tego adresu e-mail." #: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "" -"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj " -"ponownie." +"Błąd systemu podczas zapisywania nowej wiadomości e-mail. Proszę spróbuj ponownie." #: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." @@ -7814,8 +7622,7 @@ msgstr "Przeładuj obrazy przed renderowaniem strony" #: ../../Zotlabs/Module/Settings/Display.php:195 msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +"The subjective page load time will be longer but the page will be ready when displayed" msgstr "" "Subiektywny czas ładowania strony będzie dłuższy, ale strona będzie gotowa po " "wyświetleniu" @@ -7856,8 +7663,7 @@ msgstr "Domyślnie: menu kanału znajduje się w menu aplikacji" msgid "Link post titles to source" msgstr "Połącz tytuły wpisów ze źródłem" -#: ../../Zotlabs/Module/Settings/Display.php:203 -#: ../../Zotlabs/Widget/Newmember.php:75 +#: ../../Zotlabs/Module/Settings/Display.php:203 ../../Zotlabs/Widget/Newmember.php:75 msgid "New Member Links" msgstr "Linki dla nowych członków" @@ -7908,8 +7714,7 @@ msgstr "Opublikuj swój domyślny profil w katalogu sieciowym" #: ../../Zotlabs/Module/Settings/Channel.php:416 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego " -"przyjaciela?" +"Czy pozwalasz nam sugerować nowym członkom Ciebie jako potencjalnego przyjaciela?" #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" @@ -7961,11 +7766,11 @@ msgstr "Treść dla dorosłych" #: ../../Zotlabs/Module/Settings/Channel.php:507 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag any " -"adult material and/or nudity with #NSFW)" +"This channel frequently or regularly publishes adult content. (Please tag any adult " +"material and/or nudity with #NSFW)" msgstr "" -"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz " -"wszelkie materiały dla dorosłych albo nagość tagiem #NSFW)" +"Ten kanał często lub regularnie publikuje treści dla dorosłych. (Oznacz wszelkie " +"materiały dla dorosłych albo nagość tagiem #NSFW)" #: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "Security and Privacy Settings" @@ -7973,8 +7778,7 @@ msgstr "Ustawienia bezpieczeństwa i prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" -"Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" +msgstr "Twoje uprawnienia są już skonfigurowane. Kliknij, aby wyświetlić/dostosować" #: ../../Zotlabs/Module/Settings/Channel.php:513 msgid "Hide my online presence" @@ -7990,17 +7794,15 @@ msgstr "Proste ustawienia prywatności:" #: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Very Public - extremely permissive (should be used with caution)" -msgstr "" -"Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" +msgstr "Bardzo publiczne - wyjątkowo pobłażliwe (należy używać ostrożnie)" #: ../../Zotlabs/Module/Settings/Channel.php:517 msgid "" "Typical - default public, privacy when desired (similar to social network " "permissions but with improved privacy)" msgstr "" -"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do " -"uprawnień w popularnych sieciach społecznościowych, ale z podwyższoną " -"prywatnością)" +"Typowe - domyślne publiczne, prywatność w razie potrzeby (podobne do uprawnień w " +"popularnych sieciach społecznościowych, ale z podwyższoną prywatnością)" #: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Private - default private, never open or public" @@ -8017,8 +7819,7 @@ msgstr "Pozwól innym oznaczać Twoje wpisy" #: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "Often used by the community to retro-actively flag inappropriate content" msgstr "" -"Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą " -"wsteczną" +"Często używany przez społeczność do oznaczania nieodpowiednich treści z mocą wsteczną" #: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Channel Permission Limits" @@ -8059,8 +7860,7 @@ msgstr "Domyślna grupa prywatności" #: ../../Zotlabs/Module/Settings/Channel.php:529 msgid "Use my default audience setting for the type of object published" -msgstr "" -"Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" +msgstr "Użyj mojego domyślnego ustawienia odbiorców dla typu publikowanego obiektu" #: ../../Zotlabs/Module/Settings/Channel.php:538 msgid "Default permissions category" @@ -8132,7 +7932,7 @@ msgstr "Zaczepiono Ciebie we wpisie" #: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Someone likes your post/comment" -msgstr "Ktoś polubił Twój wpis/komentarz" +msgstr "Ktoś ocenił pozytywnie Twój wpis/komentarz" #: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Show visual notifications including:" @@ -8203,7 +8003,7 @@ msgstr "Niewidoczna aktywność na publicznym strumieniu" #: ../../Zotlabs/Module/Settings/Channel.php:580 msgid "Unseen likes and dislikes" -msgstr "Niewidoczne polubienia i dezaprobaty" +msgstr "Niewidoczne oceny pozytywne i negatywne" #: ../../Zotlabs/Module/Settings/Channel.php:581 msgid "Unseen forum posts" @@ -8216,8 +8016,8 @@ msgstr "Serwer powiadomień e-mail (nazwa hosta)" #: ../../Zotlabs/Module/Settings/Channel.php:582 #, php-format msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" +"If your channel is mirrored to multiple hubs, set this to your preferred location. " +"This will prevent duplicate email notifications. Example: %s" msgstr "" "Jeśli twój kanał jest powielany na wielu ortalach, ustaw to na preferowaną " "lokalizację. Zapobiegnie to powielaniu powiadomień e-mail. Przykład: % s" @@ -8225,8 +8025,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:583 msgid "Show new wall posts, private messages and connections under Notices" msgstr "" -"Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i " -"połączenia" +"Pokaż w powiadomieniach nowe wpisy na ścianie oraz prywatne wiadomości i połączenia" #: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Notify me of events this many days in advance" @@ -8427,8 +8226,7 @@ msgstr "Zaproszenia, z których korzystamy" #: ../../Zotlabs/Module/Invite.php:537 msgid "§ Note, the email(s) sent will be recorded in the system logs" -msgstr "" -"§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" +msgstr "§ Uwaga, wysłane wiadomości e-mail zostaną zapisane w dziennikach systemowych" #: ../../Zotlabs/Module/Invite.php:538 msgid "Enter email addresses, one per line:" @@ -8474,11 +8272,10 @@ msgid "This site is powered by $Projectname" msgstr "Ta witryna jest oparta na $Projectname" #: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" +msgid "Federated and decentralised networking and identity services provided by Zot" msgstr "" -"Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące " -"protokół Zot" +"Sfederowane i zdecentralizowane usługi sieciowe i tożsamości wykorzystujące protokół " +"Zot" #: ../../Zotlabs/Module/Siteinfo.php:34 msgid "Additional federated transport protocols:" @@ -8533,8 +8330,7 @@ msgstr "Witamy w Hubzilla!" msgid "You have got no unseen posts..." msgstr "Nie masz żadnych nieoglądniętych wpisów..." -#: ../../Zotlabs/Module/Cover_photo.php:196 -#: ../../Zotlabs/Module/Cover_photo.php:254 +#: ../../Zotlabs/Module/Cover_photo.php:196 ../../Zotlabs/Module/Cover_photo.php:254 msgid "Cover Photos" msgstr "Zdjęcia na okładkę" @@ -8545,7 +8341,7 @@ msgstr "kobieta" #: ../../Zotlabs/Module/Cover_photo.php:298 ../../include/items.php:4967 #, php-format msgid "%1$s updated her %2$s" -msgstr "%1$s zaktualizował ją %2$s" +msgstr "%1$s zaktualizował jej %2$s" #: ../../Zotlabs/Module/Cover_photo.php:299 ../../include/items.php:4968 msgid "male" @@ -8559,7 +8355,7 @@ msgstr "%1$s zaktualizował jego %2$s" #: ../../Zotlabs/Module/Cover_photo.php:302 ../../include/items.php:4971 #, php-format msgid "%1$s updated their %2$s" -msgstr "%1$s zaktualizował swoje %2$s" +msgstr "%1$s zaktualizował ich %2$s" #: ../../Zotlabs/Module/Cover_photo.php:304 ../../include/channel.php:2356 msgid "cover photo" @@ -8611,7 +8407,7 @@ msgstr "Prześlij i kontynuuj" #: ../../Zotlabs/Module/Menu.php:171 ../../include/text.php:2713 msgid "Menus" -msgstr "Menu" +msgstr "Kolekcja menu" #: ../../Zotlabs/Module/Menu.php:181 msgid "Bookmarks allowed" @@ -8647,7 +8443,7 @@ msgstr "Nazwa menu" #: ../../Zotlabs/Module/Menu.php:220 msgid "Must be unique, only seen by you" -msgstr "Musi być wyjątkowy, widoczny tylko dla Ciebie" +msgstr "Musi być unikalna, widoczna tylko dla Ciebie" #: ../../Zotlabs/Module/Menu.php:221 msgid "Menu title" @@ -8718,9 +8514,7 @@ msgid "Channel Name" msgstr "Nazwa kanału" #: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" +msgid "Add the following categories to posts imported from this source (comma separated)" msgstr "" "Dodaj następujące kategorie do wpisów zaimportowanych z tego źródła (oddzielone " "przecinkami)" @@ -8944,16 +8738,16 @@ msgstr "Upuść pliki tutaj, aby natychmiast przesłać" #: ../../Zotlabs/Storage/Browser.php:554 msgid "" -"You can select files via the upload button or drop them right here or into an " -"existing folder." +"You can select files via the upload button or drop them right here or into an existing " +"folder." msgstr "" "Możesz wybrać pliki za pomocą przycisku przesyłania lub upuścić je tutaj lub do " "istniejącego folderu." #: ../../Zotlabs/Zot/Auth.php:154 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"Remote authentication blocked. You are logged into this site locally. Please logout " +"and retry." msgstr "" "Zdalne uwierzytelnianie zablokowane. Jesteś zalogowany lokalnie na tej stronie. " "Wyloguj się i spróbuj ponownie." @@ -8967,13 +8761,13 @@ msgstr "Witaj %s. Zdalne uwierzytelnianie powiodło się." #: ../../Zotlabs/Lib/Group.php:28 ../../include/group.php:23 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is not " -"what you intended, please create another group with a different name." +"A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, " +"please create another group with a different name." msgstr "" -"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące " -"elementów mogą dotyczyć tej grupy i wszystkich przyszłych " -"członków. Jeśli nie tego chciałeś, utwórz kolejną grupę o innej nazwie." +"Przywrócono usuniętą grupę o tej nazwie. Istniejące uprawnienia dotyczące elementów " +"mogą dotyczyć tej grupy i wszystkich przyszłych członków. Jeśli nie " +"tego chciałeś, utwórz kolejną grupę o innej nazwie." #: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:271 msgid "Add new connections to this privacy group" @@ -9073,8 +8867,8 @@ msgstr "Zdalna diagnostyka" msgid "Suggest Channels" msgstr "Proponowane kanały" -#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 -#: ../../include/nav.php:131 ../../boot.php:1716 +#: ../../Zotlabs/Lib/Apps.php:336 ../../include/nav.php:127 ../../include/nav.php:131 +#: ../../boot.php:1716 msgid "Login" msgstr "Zaloguj się" @@ -9090,8 +8884,8 @@ msgstr "Wiki" msgid "Channel Home" msgstr "Strona główna kanału" -#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:82 -#: ../../include/nav.php:463 ../../include/nav.php:466 +#: ../../Zotlabs/Lib/Apps.php:346 ../../include/features.php:82 ../../include/nav.php:463 +#: ../../include/nav.php:466 msgid "Calendar" msgstr "Kalendarz" @@ -9224,13 +9018,13 @@ msgstr "Aktualizacja %s nie powiodła się. Zobacz dzienniki błędów." #: ../../Zotlabs/Lib/AccessList.php:28 msgid "" -"A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is not " -"what you intended, please create another list with a different name." +"A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you intended, " +"please create another list with a different name." msgstr "" -"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące " -"elementów mogą dotyczyć tej listy i wszystkich przyszłych " -"członków. Jeśli nie tego chciałeś, utwórz kolejną listę z inną nazwą." +"Przywrócono usuniętą listę o tej nazwie. Istniejące uprawnienia dotyczące elementów " +"mogą dotyczyć tej listy i wszystkich przyszłych członków. Jeśli nie " +"tego chciałeś, utwórz kolejną listę z inną nazwą." #: ../../Zotlabs/Lib/AccessList.php:286 msgid "Add new connections to this access list" @@ -9324,8 +9118,7 @@ msgstr "Ta wiadomość e-mail została wysłana przez %1$s z %2$s." #: ../../Zotlabs/Lib/Enotify.php:67 #, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings at %s" +msgid "To stop receiving these messages, please adjust your Notification Settings at %s" msgstr "Aby nie otrzymywać tych wiadomości, zmień ustawienia powiadomień na %s" #: ../../Zotlabs/Lib/Enotify.php:68 @@ -9360,8 +9153,7 @@ msgstr "prywatna wiadomość" #: ../../Zotlabs/Lib/Enotify.php:131 #, php-format msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" -"Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." +msgstr "Odwiedź %s, aby wyświetlić albo odpowiedzieć na swoje prywatne wiadomości." #: ../../Zotlabs/Lib/Enotify.php:144 msgid "commented on" @@ -9369,11 +9161,11 @@ msgstr "skomentował" #: ../../Zotlabs/Lib/Enotify.php:157 msgid "liked" -msgstr "polubił" +msgstr "ocenił pozytywnie" #: ../../Zotlabs/Lib/Enotify.php:160 msgid "disliked" -msgstr "nie polubił" +msgstr "ocenił negatywnie" #: ../../Zotlabs/Lib/Enotify.php:165 msgid "voted on" @@ -9424,17 +9216,17 @@ msgstr "Odwiedź %s, aby zaakceptować lub odrzucić ten komentarz." #: ../../Zotlabs/Lib/Enotify.php:306 #, php-format msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "%1$s polubił [zrl=%2$s]Twój %3$s[/zrl]" +msgstr "%1$s ocenił pozytywnie [zrl=%2$s]Twój %3$s[/zrl]" #: ../../Zotlabs/Lib/Enotify.php:320 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Polubienie wysłane dla rozmowy #%1$d przez %2$s" +msgstr "[$Projectname:Notify] Ocena poytywna wysłana dla rozmowy #%1$d przez %2$s" #: ../../Zotlabs/Lib/Enotify.php:321 #, php-format msgid "%1$s liked an item/conversation you created." -msgstr "%1$s polubił utworzony przez Ciebie element/rozmowę." +msgstr "%1$s ocenił pozytywnie utworzony przez Ciebie element/rozmowę." #: ../../Zotlabs/Lib/Enotify.php:332 #, php-format @@ -9613,8 +9405,7 @@ msgstr "Nie znaleziono wiki." msgid "Destination name already exists" msgstr "Nazwa celu już istnieje" -#: ../../Zotlabs/Lib/NativeWikiPage.php:167 -#: ../../Zotlabs/Lib/NativeWikiPage.php:368 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "Strona nie znaleziona" @@ -9622,10 +9413,8 @@ msgstr "Strona nie znaleziona" msgid "Error reading page content" msgstr "Błąd podczas odczytu zawartości strony" -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -#: ../../Zotlabs/Lib/NativeWikiPage.php:409 -#: ../../Zotlabs/Lib/NativeWikiPage.php:480 -#: ../../Zotlabs/Lib/NativeWikiPage.php:522 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Błąd podczas odczytu wiki" @@ -9653,19 +9442,16 @@ msgstr "Bez tytułu" msgid "Wiki resource_id required for git commit" msgstr "Identyfikator zasobu Wiki wymagany do zatwierdzenia przez Git" -#: ../../Zotlabs/Lib/NativeWikiPage.php:577 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 ../../Zotlabs/Widget/Wiki_page_history.php:23 msgctxt "wiki_history" msgid "Message" msgstr "Wiadomość" -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -#: ../../Zotlabs/Widget/Wiki_page_history.php:24 +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 ../../Zotlabs/Widget/Wiki_page_history.php:24 msgid "Date" msgstr "Data" -#: ../../Zotlabs/Lib/NativeWikiPage.php:580 -#: ../../Zotlabs/Widget/Wiki_page_history.php:26 +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 ../../Zotlabs/Widget/Wiki_page_history.php:26 msgid "Compare" msgstr "Porównaj" @@ -9944,8 +9730,7 @@ msgid "May not attend %s's event" msgstr "Nie może uczestniczyć w wydarzeniu %s" #: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 -#: ../../include/network.php:1767 -#: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 +#: ../../include/network.php:1767 ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1490 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:1939 #: ../../extend/addon/hubzilla-addons/pubcrawl/as.php:2147 msgid "ActivityPub" @@ -9999,13 +9784,11 @@ msgstr "wydawca" msgid "Unable to verify channel signature" msgstr "Nie można zweryfikować podpisu kanału" -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Widoczne dla domyślnych odbiorców" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:136 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 ../../include/acl_selectors.php:136 msgid "Only me" msgstr "Tylko ja" @@ -10039,32 +9822,27 @@ msgid "Any connections including those who haven't yet been approved" msgstr "Wszelkie połączenia, w tym te, które nie zostały jeszcze zatwierdzone" #: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and posts." -msgstr "" -"To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." +msgid "This is your default setting for the audience of your normal stream, and posts." +msgstr "To jest domyślne ustawienie odbiorców Twojego normalnego strumienia i wpisów." #: ../../Zotlabs/Lib/PermissionDescription.php:151 msgid "This is your default setting for who can view your default channel profile" msgstr "" -"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny " -"profil kanału" +"To jest domyślne ustawienie określające, kto może wyświetlać Twój domyślny profil " +"kanału" #: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "This is your default setting for who can view your connections" -msgstr "" -"To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" +msgstr "To jest domyślne ustawienie określające, kto może wyświetlać Twoje połączenia" #: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "This is your default setting for who can view your file storage and photos" msgstr "" -"Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i " -"zdjęć" +"Jest to domyślne ustawienie określające, kto może przeglądać magazyn plików i zdjęć" #: ../../Zotlabs/Lib/PermissionDescription.php:154 msgid "This is your default setting for the audience of your webpages" -msgstr "" -"To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" +msgstr "To jest domyślne ustawienie dotyczące odbiorców Twoich stron internetowych" #: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 #: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:115 @@ -10199,10 +9977,9 @@ msgstr "Czaty dodane do zakładek" msgid "photo/image" msgstr "zdjęcie/obraz" -#: ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:123 -#: ../../Zotlabs/Widget/Notifications.php:139 -#: ../../Zotlabs/Widget/Notifications.php:140 ../../include/acl_selectors.php:125 +#: ../../Zotlabs/Widget/Forums.php:100 ../../Zotlabs/Widget/Activity_filter.php:123 +#: ../../Zotlabs/Widget/Notifications.php:139 ../../Zotlabs/Widget/Notifications.php:140 +#: ../../include/acl_selectors.php:125 msgid "Forums" msgstr "Fora" @@ -10446,22 +10223,17 @@ msgstr "Powiadomienia o nowej aktywności sieciowej" msgid "View your network activity" msgstr "Wyświetl swoją aktywność w sieci" -#: ../../Zotlabs/Widget/Notifications.php:23 -#: ../../Zotlabs/Widget/Notifications.php:62 +#: ../../Zotlabs/Widget/Notifications.php:23 ../../Zotlabs/Widget/Notifications.php:62 msgid "Mark all notifications read" msgstr "Oznacz wszystkie powiadomienia jako przeczytane" -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:65 -#: ../../Zotlabs/Widget/Notifications.php:172 +#: ../../Zotlabs/Widget/Notifications.php:26 ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:65 ../../Zotlabs/Widget/Notifications.php:172 msgid "Show new posts only" msgstr "Pokaż tylko nowe wpisy" -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:47 -#: ../../Zotlabs/Widget/Notifications.php:66 -#: ../../Zotlabs/Widget/Notifications.php:142 +#: ../../Zotlabs/Widget/Notifications.php:27 ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:66 ../../Zotlabs/Widget/Notifications.php:142 #: ../../Zotlabs/Widget/Notifications.php:173 msgid "Filter by name or address" msgstr "Filtruj według nazwy lub adresu" @@ -10479,8 +10251,7 @@ msgstr "Powiadomienia o nowej aktywności domowej" msgid "View your home activity" msgstr "Wyświetl swoją aktywność domową" -#: ../../Zotlabs/Widget/Notifications.php:43 -#: ../../Zotlabs/Widget/Notifications.php:169 +#: ../../Zotlabs/Widget/Notifications.php:43 ../../Zotlabs/Widget/Notifications.php:169 msgid "Mark all notifications seen" msgstr "Oznacz wszystkie powiadomienia jako oglądnięte" @@ -10544,8 +10315,7 @@ msgstr "Nowe pliki" msgid "New Files Notifications" msgstr "Powiadomienia o nowych plikach" -#: ../../Zotlabs/Widget/Notifications.php:124 -#: ../../Zotlabs/Widget/Notifications.php:125 +#: ../../Zotlabs/Widget/Notifications.php:124 ../../Zotlabs/Widget/Notifications.php:125 msgid "Notices" msgstr "Powiadomienia" @@ -10742,12 +10512,12 @@ msgstr "Wyświetl wszystkie %d popularne połączenia" #: ../../include/conversation.php:183 #, php-format msgid "likes %1$s's %2$s" -msgstr "polubił %2$s %1$s" +msgstr "ocenił pozytywnie %2$s %1$s" #: ../../include/conversation.php:186 #, php-format msgid "doesn't like %1$s's %2$s" -msgstr "nie polubił %1$s %2$s" +msgstr "ocenił negatywnie %1$s %2$s" #: ../../include/conversation.php:226 ../../include/conversation.php:228 #, php-format @@ -11090,14 +10860,12 @@ msgid "Change your profile photo" msgstr "Zmień swoje zdjęcie profilowe" #: ../../include/channel.php:1748 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 +#: ../../include/selectors.php:77 ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:87 msgid "Female" msgstr "Kobieta" #: ../../include/channel.php:1750 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 -#: ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 +#: ../../include/selectors.php:77 ../../extend/addon/hubzilla-addons/openid/Mod_Id.php:85 msgid "Male" msgstr "Mężczyzna" @@ -11115,7 +10883,7 @@ msgstr "Nie określono" #: ../../include/channel.php:1798 msgid "Like this channel" -msgstr "Polub ten kanał" +msgstr "Oceń pozytywnie ten kanał" #: ../../include/channel.php:1822 msgid "j F, Y" @@ -11156,11 +10924,11 @@ msgstr "Hobby/Zainteresowania:" #: ../../include/channel.php:1873 msgid "Likes:" -msgstr "Polubień:" +msgstr "Ocen pozytywnych:" #: ../../include/channel.php:1875 msgid "Dislikes:" -msgstr "Niepolubień:" +msgstr "Ocen negatywnych:" #: ../../include/channel.php:1877 msgid "Contact information and Social Networks:" @@ -11248,8 +11016,7 @@ msgstr "Filtrowanie połączeń" #: ../../include/features.php:138 msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" -"Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści" +msgstr "Filtruj przychodzące wpisy z połączeń, na podstawie słów kluczowych lub treści" #: ../../include/features.php:146 msgid "Conversation" @@ -11313,11 +11080,11 @@ msgstr "Duże zdjęcia" #: ../../include/features.php:219 msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) " +"photo thumbnails" msgstr "" -"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie " -"jest to włączone, można używać tylko małych miniatur (640 px)" +"Możliwość zamieszczania dużych miniatur zdjęć (1024px) we wpisach. Jeśli nie jest to " +"włączone, można używać tylko małych miniatur (640 px)" #: ../../include/features.php:226 msgid "Even More Encryption" @@ -11326,8 +11093,8 @@ msgstr "Jeszcze więcej szyfrowania" #: ../../include/features.php:227 msgid "Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego " -"tajnego klucza" +"Zezwalaj na opcjonalne pełne (e2e) szyfrowanie treści za pomocą wspólnego tajnego " +"klucza" #: ../../include/features.php:234 msgid "Disable Comments" @@ -11359,11 +11126,11 @@ msgstr "Pomijaj zduplikowane wpisy i komentarze" #: ../../include/features.php:259 msgid "" -"Prevent posts with identical content to be published with less than two minutes " -"in between submissions." +"Prevent posts with identical content to be published with less than two minutes in " +"between submissions." msgstr "" -"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie " -"minuty między przesłaniami." +"Zapobiegaj publikowaniu wpisów o identycznej treści, mających mniej niż dwie minuty " +"między przesłaniami." #: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" @@ -11371,8 +11138,8 @@ msgstr "Automatyczne zapisywanie wersji roboczych wpisów i komentarzy" #: ../../include/features.php:267 msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" +"Automatically saves post and comment drafts in local browser storage to help prevent " +"accidental loss of compositions" msgstr "" "Automatycznie zapisuje wersje robocze wpisów i komentarzy w lokalnej pamięci " "przeglądarki, aby zapobiec przypadkowej utracie kompozycji" @@ -11422,8 +11189,8 @@ msgid "" "Ability to order the stream by last post date, last comment date or unthreaded " "activities" msgstr "" -"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty " -"ostatniego komentarza lub nieprzeczytanych aktywności" +"Możliwość uporządkowania strumienia według daty ostatniego wpisu, daty ostatniego " +"komentarza lub nieprzeczytanych aktywności" #: ../../include/features.php:334 msgid "Contact Filter" @@ -11455,8 +11222,7 @@ msgstr "Lokalizacja zdjęcia" #: ../../include/features.php:373 msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" -"Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą." +msgstr "Jeśli dane lokalizacji są dostępne na przesłanych zdjęciach, połącz je z mapą." #: ../../include/features.php:386 msgid "Advanced Profiles" @@ -11492,8 +11258,7 @@ msgstr "Wylogowano." #: ../../include/auth.php:294 msgid "Email validation is incomplete. Please check your email." -msgstr "" -"Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." +msgstr "Weryfikacja adresu e-mail jest niekompletna. Proszę sprawdzić swój adres email." #: ../../include/auth.php:310 msgid "Failed authentication" @@ -11930,8 +11695,8 @@ msgstr "Własny wybór" #: ../../include/acl_selectors.php:146 msgid "" -"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit " -"the scope of \"Allow\"." +"Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and limit the " +"scope of \"Allow\"." msgstr "" "Wybierz \"Zezwól\", aby zezwolić na przeglądanie. \"Nie zezwalaj\" umożliwia " "zastąpienie i ograniczenie zakresu \"Zezwalaj\"." @@ -11946,8 +11711,8 @@ msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These " "permissions set who is allowed to view the post." msgstr "" -"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu " -"wpisu.
Te uprawnienia określają, kto może oglądać wpis." +"Uprawnienia do publikowania %s nie mogą być zmieniane %s po udostępnieniu wpisu.
Te uprawnienia określają, kto może oglądać wpis." #: ../../include/opengraph.php:56 #, php-format @@ -11991,8 +11756,7 @@ msgid "Unable to import a removed channel." msgstr "Nie można zaimportować usuniętego kanału." #: ../../include/import.php:55 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +msgid "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" "Nie można utworzyć zduplikowanego identyfikatora kanału w tym systemie. Import " "nieudany." @@ -12292,11 +12056,9 @@ msgstr "świetne" #: ../../include/js_strings.php:30 msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" +"Your chosen nickname was either already taken or not valid. Please use our suggestion (" msgstr "" -"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej " -"prpozycji (" +"Twój wybrany pseudonim jest już zajęty lub nieważny. Skorzystaj z naszej prpozycji (" #: ../../include/js_strings.php:31 msgid ") or enter a new one." @@ -12531,11 +12293,11 @@ msgstr "Adres e-mail jest nieprawidłowy" #: ../../include/security.php:607 msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +"The form security token was not correct. This probably happened because the form has " +"been opened for too long (>3 hours) before submitting it." msgstr "" -"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się " -"tak, ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." +"Token bezpieczeństwa formularza był nieprawidłowy. Prawdopodobnie stało się tak, " +"ponieważ formularz był otwarty zbyt długo (> 3 godziny) przed wysłaniem." #: ../../include/selectors.php:18 msgid "Profile to assign new connections" @@ -12695,7 +12457,7 @@ msgstr "Przyjaciele/Korzyści" #: ../../include/selectors.php:134 msgid "Casual" -msgstr "Przygodnie" +msgstr "Nieformalne" #: ../../include/selectors.php:134 msgid "Engaged" @@ -12827,11 +12589,11 @@ msgstr "Podany adres e-mail jest już zarejestrowany w tej witrynie" #: ../../include/account.php:55 msgid "" -"There is a pending registration for this address - click \"Register\" to " -"continue verification" +"There is a pending registration for this address - click \"Register\" to continue " +"verification" msgstr "" -"Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby " -"kontynuować weryfikację" +"Oczekuje się na rejestrację tego adresu - kliknij „Zarejestruj się”, aby kontynuować " +"weryfikację" #: ../../include/account.php:94 msgid "An invitation is required." @@ -12913,8 +12675,7 @@ msgstr "Pomoc:" msgid "Not Found" msgstr "Nie znaleziono" -#: ../../include/attach.php:273 ../../include/attach.php:324 -#: ../../include/attach.php:419 +#: ../../include/attach.php:273 ../../include/attach.php:324 ../../include/attach.php:419 msgid "Item was not found." msgstr "Nie znaleziono elementu." @@ -12947,8 +12708,8 @@ msgstr "Osiągnięty został limit %1$.0f MB miejsca na załączniki." #: ../../include/attach.php:1004 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub " -"działanie zakończone." +"Przesyłanie pliku nie powiodło się. Możliwe ograniczenie systemowe lub działanie " +"zakończone." #: ../../include/attach.php:1033 msgid "Stored file could not be verified. Upload failed." @@ -13287,11 +13048,11 @@ msgstr "Zainstaluj element %1$s %2$s" #: ../../include/bbcode.php:338 #, php-format msgid "" -"This post contains an installable %s element, however you lack permissions to " -"install it on this site." +"This post contains an installable %s element, however you lack permissions to install " +"it on this site." msgstr "" -"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz " -"uprawnień do zainstalowania go w tym portalu." +"Ten wpis zawiera możliwy do zainstalowania element %s, jednak nie masz uprawnień do " +"zainstalowania go w tym portalu." #: ../../include/bbcode.php:551 msgid "card" @@ -13328,11 +13089,11 @@ msgstr "%1$s obserwujesz teraz %2$s" #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:16 msgid "" -"The GNU-Social protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The GNU-Social protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia " -"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół GNU-Social nie obsługuje niezależności od lokalizacji. Połączenia nawiązane w " +"tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/gnusoc/Mod_Gnusoc.php:22 msgid "GNU-Social Protocol App" @@ -13425,7 +13186,7 @@ msgstr "Link:" #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:70 msgid "Like us on Hubzilla" -msgstr "Polub nas na Hubzilli" +msgstr "Oceń nas pozytywnie na Hubzilli" #: ../../extend/addon/hubzilla-addons/likebanner/likebanner.php:72 msgid "Embed:" @@ -13531,22 +13292,21 @@ msgstr "zazdrosny" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:85 msgid "" -"This website is tracked using the Piwik " -"analytics tool." +"This website is tracked using the Piwik analytics " +"tool." msgstr "" -"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." +"Ta witryna jest śledzona za pomocą narzędzia analitycznego Piwik." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:88 #, php-format msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site (opt-" -"out)." +"If you do not want that your visits are logged this way you can set a " +"cookie to prevent Piwik from tracking further visits of the site (opt-out)." msgstr "" -"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie " -"dalszych wizyt na stronie (rezygnacja)." +"Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, " +"możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych wizyt na stronie " +" (rezygnacja)." #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "Piwik Base URL" @@ -13554,11 +13314,10 @@ msgstr "Bazowy adres URL Piwik" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:96 msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" +"Absolute path to your Piwik installation. (without protocol (http/s), with trailing " +"slash)" msgstr "" -"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym " -"ukośnikiem)" +"Absolutna ścieżka do instalacji Piwik (bez schematu (http/s), z końcowym ukośnikiem)" #: ../../extend/addon/hubzilla-addons/piwik/piwik.php:97 msgid "Site ID" @@ -13617,8 +13376,8 @@ msgstr "Minimalna reputacja, zanim członek będzie mógł moderować inne wpisy #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:122 msgid "" -"Max ratio of moderator's reputation that can be added to/deducted from " -"reputation of person being moderated" +"Max ratio of moderator's reputation that can be added to/deducted from reputation of " +"person being moderated" msgstr "" "Maksymalny współczynnik reputacji moderatora, który można dodać do reputacji " "moderowanej osoby lub od niej odjąć" @@ -13636,16 +13395,16 @@ msgid "" "Reputation automatically recovers at this rate per hour until it reaches " "minimum_to_post" msgstr "" -"Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie " -"osiągnie minimum_to_post" +"Reputacja automatycznie odświeżana jest w tym tempie co godzinę, dopóki nie osiągnie " +"minimum_to_post" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:126 msgid "" -"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at " -"this rate per hour" +"When minimum_to_moderate > reputation > minimum_to_post reputation recovers at this " +"rate per hour" msgstr "" -"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na " -"jest z taką szybkością na godzinę" +"Kiedy minimum_to_moderate > reputation> minimum_to_post reputacja odświeża na jest z " +"taką szybkością na godzinę" #: ../../extend/addon/hubzilla-addons/channelreputation/channelreputation.php:140 msgid "Community Moderation Settings" @@ -13689,8 +13448,8 @@ msgid "" "If checked, the Rendezvous database tables will be deleted when the plugin is " "uninstalled." msgstr "" -"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele " -"z bazy danych Rendezvous." +"Jeśli zaznaczone, po odinstalowaniu wtyczki zostaną usunięte wszystkie tabele z bazy " +"danych Rendezvous." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "Mapbox Access Token" @@ -13698,11 +13457,11 @@ msgstr "Token dostępu Mapbox" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:97 msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles from " -"Mapbox instead of the default OpenStreetMap tile server." +"If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox " +"instead of the default OpenStreetMap tile server." msgstr "" -"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania " -"fragmentów mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." +"Jeśli wprowadzisz token dostępu Mapbox, będzie on używany do pobierania fragmentów " +"mapy z Mapbox, zamiast z domyślnego serwera kafelków OpenStreetMap." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:162 msgid "Rendezvous" @@ -13710,13 +13469,13 @@ msgstr "Rendezvous" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:167 msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." +"This identity has been deleted by another member due to inactivity. Please press the " +"\"New identity\" button or refresh the page to register a new identity. You may use " +"the same name." msgstr "" -"Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. " -"Proszę nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby " -"zarejestrować nową tożsamość. Możesz użyć tej samej nazwy." +"Ta tożsamość została usunięta przez innego członka z powodu braku aktywności. Proszę " +"nacisnąć przycisk \"Nowa tożsamość\" lub odświeżyć stronę, aby zarejestrować nową " +"tożsamość. Możesz użyć tej samej nazwy." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:168 msgid "Welcome to Rendezvous!" @@ -13724,14 +13483,14 @@ msgstr "Witamy w Rendezvous!" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:169 msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a red " -"dot will appear and others will be able to see you on the map." +"Enter your name to join this rendezvous. To begin sharing your location with the other " +"members, tap the GPS control. When your location is discovered, a red dot will appear " +"and others will be able to see you on the map." msgstr "" "Wpisz swoje imię i nazwisko, aby dołączyć do tego spotkania. W celu rozpoczęcia " -"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego " -"GPS. Gdy Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni " -"będą mogli Cię zobaczyć na mapie." +"udostępniania swojej lokalizacji innym członkom, dotknij elementu sterującego GPS. Gdy " +"Twoja lokalizacja zostanie odkryta, pojawi się czerwona kropka i inni będą mogli Cię " +"zobaczyć na mapie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:171 msgid "Let's meet here" @@ -13763,12 +13522,11 @@ msgstr "Edytuj alert zbliżeniowy" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 msgid "" -"A proximity alert will be issued when this member is within a certain radius of " -"you.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when this member is within a certain radius of you." +"

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w " -"określonym promieniu od Ciebie.

Wprowadź promień w metrach (0, aby " -"wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy ten członek znajdzie się w określonym " +"promieniu od Ciebie.

Wprowadź promień w metrach (0, aby wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:180 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:185 @@ -13782,12 +13540,11 @@ msgstr "Odległość ostrzeżenia o bliskości (metry)" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:182 #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:184 msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" +"A proximity alert will be issued when you are within a certain radius of the marker " +"location.

Enter a radius in meters (0 to disable):" msgstr "" -"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym " -"promieniu od lokalizacji znacznika.

Wprowadź promień w metrach (0, " -"aby wyłączyć):" +"Alert zbliżeniowy zostanie wygenerowany, gdy znajdziesz się w określonym promieniu od " +"lokalizacji znacznika.

Wprowadź promień w metrach (0, aby wyłączyć):" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:183 msgid "Marker proximity alert" @@ -13798,11 +13555,9 @@ msgid "Reminder note" msgstr "Notatka przypominająca" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." +msgid "Enter a note to be displayed when you are within the specified proximity..." msgstr "" -"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej " -"odległości ..." +"Wprowadź notatkę, która będzie wyświetlana, gdy będziesz w określonej odległości ..." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:199 msgid "Add new rendezvous" @@ -13810,15 +13565,14 @@ msgstr "Dodaj nowe spotkanie" #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:200 msgid "" -"Create a new rendezvous and share the access link with those you wish to invite " -"to the group. Those who open the link become members of the rendezvous. They " -"can view other member locations, add markers to the map, or share their own " -"locations with the group." +"Create a new rendezvous and share the access link with those you wish to invite to the " +"group. Those who open the link become members of the rendezvous. They can view other " +"member locations, add markers to the map, or share their own locations with the group." msgstr "" -"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić " -"do grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą " -"wyświetlać lokalizacje innych członków, dodawać znaczniki do mapy lub " -"udostępniać własne lokalizacje grupie." +"Utwórz nowe spotkanie i udostępnij łącze dostępu tym, których chcesz zaprosić do " +"grupy. Osoby, które otworzą łącze, stają się członkami spotkania. Mogą wyświetlać " +"lokalizacje innych członków, dodawać znaczniki do mapy lub udostępniać własne " +"lokalizacje grupie." #: ../../extend/addon/hubzilla-addons/rendezvous/rendezvous.php:232 msgid "You have no rendezvous. Press the button above to create a rendezvous!" @@ -13905,8 +13659,7 @@ msgstr "Weryfikacja dwuetapowa TOTP" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:24 msgid "Enter the 2-step verification generated by your authenticator app:" -msgstr "" -"Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" +msgstr "Wprowadź dwuetapową weryfikację wygenerowaną przez aplikację uwierzytelniającą:" #: ../../extend/addon/hubzilla-addons/totp/Mod_Totp.php:25 msgid "Success!" @@ -13945,8 +13698,7 @@ msgid "" "with your preferred authenticator app." msgstr "" "Zapisz go gdzieś na wypadek zgubienia lub wymiany urządzenia mobilnego.\n" -"Użyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą " -"witrynę\n" +"Użyj urządzenia mobilnego, aby zeskanować poniższy kod QR i zarejestrować tą witrynę\n" "w preferowanej aplikacji uwierzytelniającej." #: ../../extend/addon/hubzilla-addons/totp/Settings/Totp.php:99 @@ -14005,8 +13757,8 @@ msgstr "Konto zostało dla Ciebie utworzone." #: ../../extend/addon/hubzilla-addons/ldapauth/ldapauth.php:77 msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta " -"jest wyłączone." +"Uwierzytelnianie przebiegło pomyślne, ale zostało odrzucone: tworzenie konta jest " +"wyłączone." #: ../../extend/addon/hubzilla-addons/cart/cart.php:252 msgid "DB Cleanup Failure" @@ -14183,8 +13935,7 @@ msgstr "Włącz moduł zarządzania subskrypcjami" #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:223 msgid "Cannot include subscription items with different terms in the same order." msgstr "" -"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej " -"kolejności." +"Nie może zawierać elementów subskrypcji z różnymi terminami w tej samej kolejności." #: ../../extend/addon/hubzilla-addons/cart/submodules/subscriptions.php:372 msgid "Select Subscription to Edit" @@ -14259,11 +14010,11 @@ msgstr "Płatności za pomocą przycisku PayPal nie są włączone." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbuttonV2.php:282 #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:270 msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." +"Paypal button payments are not properly configured. Please choose another payment " +"option." msgstr "" -"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz " -"inną opcję płatności." +"Płatności za pomocą przycisku PayPal nie są poprawnie skonfigurowane. Wybierz inną " +"opcję płatności." #: ../../extend/addon/hubzilla-addons/cart/submodules/paypalbutton.php:85 msgid "Enable Paypal Button Module" @@ -14310,11 +14061,11 @@ msgstr "Podstawowa waluta sprzedawcy" #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "" -"We encountered a problem while logging in with the OpenID you provided. Please " -"check the correct spelling of the ID." +"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 za pomocą podanego przez Ciebie " -"identyfikatora OpenID. Sprawdź poprawną pisownię identyfikatora." +"Napotkaliśmy problem podczas logowania za pomocą podanego przez Ciebie identyfikatora " +"OpenID. Sprawdź poprawną pisownię identyfikatora." #: ../../extend/addon/hubzilla-addons/openid/openid.php:49 msgid "The error message was:" @@ -14383,8 +14134,7 @@ msgstr "Import z magazynu plików Hubzilla" #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:82 msgid "This will import all your cloud files from another server." msgstr "" -"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu " -"Hubzilla." +"Spowoduje to zaimportowanie wszystkich plików w chmurze z innego portalu Hubzilla." #: ../../extend/addon/hubzilla-addons/hzfiles/hzfiles.php:83 msgid "Hubzilla Server base URL" @@ -14406,11 +14156,11 @@ msgstr "Zaktualizowano ustawienia protokołu Diaspora." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:52 msgid "" -"The diaspora protocol does not support location independence. Connections you " -"make within that network may be unreachable from alternate channel locations." +"The diaspora protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane " -"w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół Diaspora nie obsługuje niezależności lokalizacji. Połączenia nawiązane w tej " +"sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:58 msgid "Diaspora Protocol App" @@ -14418,16 +14168,15 @@ msgstr "Aplikacja Protokół Diaspora" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "Allow any Diaspora member to comment or like your public posts" -msgstr "" -"Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" +msgstr "Umożliwia członkom Diaspory komentować lub aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:77 msgid "" -"If this setting is disabled only your contacts will be able to comment or like " -"your public posts" +"If this setting is disabled only your contacts will be able to comment or like your " +"public posts" msgstr "" -"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować " -"lub aprobować Twoje publiczne wpisy" +"Jeśli to ustawienie jest wyłączone, tylko Twoje kontakty będą mogły komentować lub " +"aprobować Twoje publiczne wpisy" #: ../../extend/addon/hubzilla-addons/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" @@ -14452,11 +14201,10 @@ msgstr "W pliku importu nie znaleziono nazwy użytkownika." #: ../../extend/addon/hubzilla-addons/diaspora/Receiver.php:1599 #, php-format msgid "%1$s dislikes %2$s's %3$s" -msgstr "%1$s niepolubień %2$s %3$s" +msgstr "%1$s ocen negatywnych %2$s %3$s" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:70 -msgid "" -"Please install the statistics addon to be able to configure a diaspora relay" +msgid "Please install the statistics addon to be able to configure a diaspora relay" msgstr "Zainstaluj dodatek do statystyk, aby móc skonfigurować konektor Diaspory" #: ../../extend/addon/hubzilla-addons/diaspora/diaspora.php:80 @@ -14525,13 +14273,12 @@ msgstr "Znane tagi" #: ../../extend/addon/hubzilla-addons/dirstats/dirstats.php:119 msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," +"Please note Diaspora and Friendica statistics are merely those **this directory** is " +"aware of, and not all those known in the network. This also applies to chatrooms," msgstr "" "Proszę mieć na uwadze, że statystyki Diaspory i Friendica to tylko te,które są " -"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to " -"również czatów," +"widoczne dla **tego katalogu**, a nie wszystkie znane w sieci. Dotyczy to również " +"czatów," #: ../../extend/addon/hubzilla-addons/upload_limits/upload_limits.php:25 msgid "Show Upload Limits" @@ -14594,11 +14341,11 @@ msgstr "Adres URL serwera kafelków rastrowych" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:156 msgid "" -"A list of public tile servers" +"A list of public " +"tile servers" msgstr "" -"Lista publicznych serwerów kafelków" +"Lista publicznych " +"serwerów kafelków" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 msgid "Nominatim (reverse geocoding) Server URL" @@ -14606,8 +14353,8 @@ msgstr "Adres URL serwera Nominatim (odwrotne geokodowanie)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:157 msgid "" -"A list of Nominatim servers" +"A list of Nominatim servers" msgstr "" "Lista serwerów Nominatim" @@ -14619,8 +14366,8 @@ msgstr "Powiększenie domyślne" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:158 msgid "The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od " -"serwera kafelków)" +"Domyślny poziom powiększenia. (1: świat, 18: najwyższy, zależy również od serwera " +"kafelków)" #: ../../extend/addon/hubzilla-addons/openstreetmap/openstreetmap.php:159 msgid "Include marker on map" @@ -14735,13 +14482,13 @@ msgstr "Użyj centralnej bazy użytkowników" #: ../../extend/addon/hubzilla-addons/xmpp/xmpp.php:45 msgid "" -"If enabled, members will automatically login to an ejabberd server that has to " -"be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." +"If enabled, members will automatically login to an ejabberd server that has to be " +"installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" " +"script." msgstr "" -"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera " -"ejabberd, który musi być zainstalowany na tym komputerze z zsynchronizowanymi " -"danymi uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." +"Jeśli jest włączone, członkowie będą automatycznie logować się do serwera ejabberd, " +"który musi być zainstalowany na tym komputerze z zsynchronizowanymi danymi " +"uwierzytelniającymi za pośrednictwem skryptu „auth_ejabberd.php”." #: ../../extend/addon/hubzilla-addons/xmpp/Mod_Xmpp.php:23 msgid "XMPP settings updated." @@ -14797,11 +14544,9 @@ msgid "Random Planet App" msgstr "Aplikacja Losowa Planeta" #: ../../extend/addon/hubzilla-addons/planets/Mod_Planets.php:25 -msgid "" -"Set a random planet from the Star Wars Empire as your location when posting" +msgid "Set a random planet from the Star Wars Empire as your location when posting" msgstr "" -"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych " -"Wojen" +"Podczas wysyłania ustaw, jako lokalizację, losową planetę z Imperium Gwiezdnych Wojen" #: ../../extend/addon/hubzilla-addons/nsfw/nsfw.php:152 msgid "Possible adult content" @@ -14827,19 +14572,18 @@ msgstr "Zwija treść zawierającą określone słowa" #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:44 msgid "" "This app looks in posts for the words/text you specify below, and collapses any " -"content containing those keywords so it is not displayed at inappropriate " -"times, such as sexual innuendo that may be improper in a work setting. It is " -"polite and recommended to tag any content containing nudity with #NSFW. This " -"filter can also match any other word/text you specify, and can thereby be used " -"as a general purpose content filter." -msgstr "" -"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie " -"treści zawierające te słowa kluczowe, aby nie były wyświetlane w " -"nieodpowiednich momentach, na przykład, insynuacje seksualne, które mogą być " -"niewłaściwe w miejscu pracy. Grzecznie jest i zaleca się, oznaczanie wszelkich " -"treści zawierających nagość tagiem #NSFW. Ten filtr może również pasować do " -"dowolnego innego określonego słowa lub tekstu, dzięki czemu może być używany " -"jako filtr treści ogólnego przeznaczenia." +"content containing those keywords so it is not displayed at inappropriate times, such " +"as sexual innuendo that may be improper in a work setting. It is polite and " +"recommended to tag any content containing nudity with #NSFW. This filter can also " +"match any other word/text you specify, and can thereby be used as a general purpose " +"content filter." +msgstr "" +"Ta aplikacja wyszukuje słowa lub tekst, określone poniżej i zwija wszelkie treści " +"zawierające te słowa kluczowe, aby nie były wyświetlane w nieodpowiednich momentach, " +"na przykład, insynuacje seksualne, które mogą być niewłaściwe w miejscu pracy. " +"Grzecznie jest i zaleca się, oznaczanie wszelkich treści zawierających nagość tagiem " +"#NSFW. Ten filtr może również pasować do dowolnego innego określonego słowa lub " +"tekstu, dzięki czemu może być używany jako filtr treści ogólnego przeznaczenia." #: ../../extend/addon/hubzilla-addons/nsfw/Mod_Nsfw.php:49 msgid "Comma separated list of keywords to hide" @@ -14871,24 +14615,24 @@ msgstr "Nowa gra z handicapem" #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:61 msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that it " -"is played on multiple levels simultaneously. " +"Three dimensional tic-tac-toe is just like the traditional game except that it is " +"played on multiple levels simultaneously. " msgstr "" -"Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym " -"wyjątkiem, że gra się w nią na wielu poziomach jednocześnie. " +"Trójwymiarowa gra w kółko i krzyżyk jest podobna do tradycyjnej gry, z tym wyjątkiem, " +"że gra się w nią na wielu poziomach jednocześnie. " #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:62 msgid "" -"In this case there are three levels. You win by getting three in a row on any " -"level, as well as up, down, and diagonally across the different levels." +"In this case there are three levels. You win by getting three in a row on any level, " +"as well as up, down, and diagonally across the different levels." msgstr "" "W tym przypadku są trzy poziomy. Wygrywasz, zdobywając trzy z rzędu na dowolnym " "poziomie, a także w górę, w dół i po przekątnej na różnych poziomach." #: ../../extend/addon/hubzilla-addons/tictac/tictac.php:64 msgid "" -"The handicap game disables the center position on the middle level because the " -"player claiming this square often has an unfair advantage." +"The handicap game disables the center position on the middle level because the player " +"claiming this square often has an unfair advantage." msgstr "" "Gra z handicapem wyłącza środkową pozycję na środkowym poziomie, ponieważ gracz " "zajmujący to pole często ma nieuczciwą przewagę." @@ -14920,8 +14664,8 @@ msgstr "Zapisano ustawienia pamięci podręcznej zdjęć." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:36 msgid "" -"Photo Cache addon saves a copy of images from external sites locally to " -"increase your anonymity in the web." +"Photo Cache addon saves a copy of images from external sites locally to increase your " +"anonymity in the web." msgstr "" "Dodatek Photo Cache zapisuje lokalnie kopie obrazów z zewnętrznych witryn, aby " "zwiększyć Twoją anonimowość w sieci." @@ -14937,8 +14681,7 @@ msgstr "Minimalny rozmiar zdjęcia do buforowania" #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:55 msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." msgstr "" -"W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami " -"systemowymi." +"W pikselach. Od 1 do 1024, 0 zostanie zastąpione domyślnymi ustawieniami systemowymi." #: ../../extend/addon/hubzilla-addons/photocache/Mod_Photocache.php:64 msgid "Photo Cache" @@ -14996,8 +14739,7 @@ msgid "Flag Adult Photos" msgstr "Oznaczanie zdjęć dla dorosłych" #: ../../extend/addon/hubzilla-addons/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album view" +msgid "Provide photo edit option to hide inappropriate photos from default album view" msgstr "" "Dostarcza opcję edycji zdjęć, umożliwiającą ukrywanie nieodpowiednich zdjęć w " "domyślnym widoku albumu" @@ -15015,27 +14757,24 @@ msgid "Application name" msgstr "Nazwa aplikacji" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:61 -msgid "" -"Please contact your site administrator.
The provided API URL is not valid." +msgid "Please contact your site administrator.
The provided API URL is not valid." msgstr "" -"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API " -"jest nieprawidłowy." +"Skontaktuj się z administratorem witryny.
Podany adres URL interfejsu API jest " +"nieprawidłowy." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:98 msgid "We could not contact the GNU social API with the Path you entered." -msgstr "" -"Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." +msgstr "Nie mogliśmy nawiązać połączenia ze społecznościowym API GNU o podanej ścieżce." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:130 msgid "GNU social settings updated." msgstr "Ustawienia społecznościowe GNU zostały zaktualizowane." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:147 -msgid "" -"Relay public postings to a connected GNU social account (formerly StatusNet)" +msgid "Relay public postings to a connected GNU social account (formerly StatusNet)" msgstr "" -"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU " -"(dawniej StatusNet)" +"Przekazywanie publicznych wpisów na połączone konto społecznościowe GNU (dawniej " +"StatusNet)" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:181 msgid "Globally Available GNU social OAuthKeys" @@ -15043,14 +14782,13 @@ msgstr "Globalnie dostępne klucze OAuthKey społecznościowe GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:183 msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers available. " -"If you are using one of them, please use these credentials.
If not feel " -"free to connect to any other GNU social instance (see below)." +"There are preconfigured OAuth key pairs for some GNU social servers available. If you " +"are using one of them, please use these credentials.
If not feel free to connect " +"to any other GNU social instance (see below)." msgstr "" "Dostępne są wstępnie skonfigurowane pary kluczy OAuth dla niektórych serwerów " -"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń. " -"
Jeśli nie możesz połączyć się z inną instancją społecznościową GNU " -"(patrz poniżej)." +"społecznościowych GNU. Jeśli używasz jednego z nich, użyj tych poświadczeń.
" +"Jeśli nie możesz połączyć się z inną instancją społecznościową GNU (patrz poniżej)." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:198 msgid "Provide your own OAuth Credentials" @@ -15059,17 +14797,17 @@ msgstr "Podaj własne dane logowania OAuth" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:200 msgid "" "No consumer key pair for GNU social found. Register your Hubzilla Account as an " -"desktop client on your GNU social account, copy the consumer key pair here and " -"enter the API base root.
Before you register your own OAuth key pair ask " -"the administrator if there is already a key pair for this Hubzilla installation " -"at your favourite GNU social installation." -msgstr "" -"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj " -"swoje konto Hubzilla jako klienta stacjonarnego na swoim koncie " -"społecznościowym GNU, skopiuj tutaj parę kluczy klienta i wprowadź podstawowy " -"katalog główny API.
Przed zarejestrowaniem własnej pary kluczy OAuth " -"zapytaj administratora, czy istnieje już para kluczy dla tej instalacji " -"Hubzilli w Twojej ulubionej instalacji społecznościowej GNU." +"desktop client on your GNU social account, copy the consumer key pair here and enter " +"the API base root.
Before you register your own OAuth key pair ask the " +"administrator if there is already a key pair for this Hubzilla installation at your " +"favourite GNU social installation." +msgstr "" +"Nie znaleziono pary kluczy konsumenckich dla społeczności GNU. Zarejestruj swoje konto " +"Hubzilla jako klienta stacjonarnego na swoim koncie społecznościowym GNU, skopiuj " +"tutaj parę kluczy klienta i wprowadź podstawowy katalog główny API.
Przed " +"zarejestrowaniem własnej pary kluczy OAuth zapytaj administratora, czy istnieje już " +"para kluczy dla tej instalacji Hubzilli w Twojej ulubionej instalacji społecznościowej " +"GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:204 msgid "OAuth Consumer Key" @@ -15093,14 +14831,14 @@ msgstr "Nazwa aplikacji społecznościowej GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:239 msgid "" -"To connect to your GNU social account click the button below to get a security " -"code from GNU social which you have to copy into the input box below and submit " -"the form. Only your public posts will be posted to GNU social." +"To connect to your GNU social account click the button below to get a security code " +"from GNU social which you have to copy into the input box below and submit the form. " +"Only your public posts will be posted to GNU social." msgstr "" -"W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy " -"przycisk, aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, " -"który musisz skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko " -"twoje publiczne wpisy będą publikowane w społecznościach GNU." +"W celu połączenia się ze swoim kontem społecznościowym GNU, kliknij poniższy przycisk, " +"aby uzyskać kod zabezpieczający z portalu społecznościowego GNU, który musisz " +"skopiować do pola wprowadzania poniżej i przesłać formularz. Tylko twoje " +"publiczne wpisy będą publikowane w społecznościach GNU." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:241 msgid "Log in with GNU social" @@ -15129,16 +14867,16 @@ msgstr "Obecnie połączony z: " #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:277 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to GNU social will lead the visitor to a blank page informing the " -"visitor that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details from " +"unknown viewers?) the link potentially included in public postings relayed to GNU " +"social will lead the visitor to a blank page informing the visitor that the access to " +"your profile has been restricted." msgstr "" "Uwaga: Ze względu na Twoje ustawienia prywatności, odnośnik " -"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), " -"ewentualnie zawarty w publicznych wpisach przekazywanych do społeczności GNU, " -"będzie kierował odwiedzającego na pustą stronę z informacją dla odwiedzającego, " -"że dostęp do Twojego profilu został ograniczony." +"(Ukryj szczegóły swojego profilu przed nieznanymi widzami? ), ewentualnie " +"zawarty w publicznych wpisach przekazywanych do społeczności GNU, będzie kierował " +"odwiedzającego na pustą stronę z informacją dla odwiedzającego, że dostęp do Twojego " +"profilu został ograniczony." #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "Post to GNU social by default" @@ -15146,8 +14884,8 @@ msgstr "Wysyłaj domyślnie do społeczności GNU" #: ../../extend/addon/hubzilla-addons/statusnet/Mod_Statusnet.php:282 msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" +"If enabled your public postings will be posted to the associated GNU-social account by " +"default" msgstr "" "Jeśli ta opcja jest włączona, twoje publiczne wpisy będą domyślnie wysyłane na " "powiązane konto społecznościowe GNU" @@ -15171,12 +14909,11 @@ msgstr "Zaktualizowano ustawienia ActivityPub Protocol." #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:34 msgid "" -"The activitypub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +"The activitypub protocol does not support location independence. Connections you make " +"within that network may be unreachable from alternate channel locations." msgstr "" -"Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia " -"nawiązane w tej sieci mogą być niedostępne z innych lokalizacji kanałów." +"Protokół AactivityPub nie obsługuje niezależności od lokalizacji. Połączenia nawiązane " +"w tej sieci mogą być niedostępne z innych lokalizacji kanałów." #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:40 msgid "Activitypub Protocol App" @@ -15188,11 +14925,11 @@ msgstr "Dostarcz do odbiorców ActivityPub w grupach prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:50 msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" +"May result in a large number of mentions and expose all the members of your privacy " +"group" msgstr "" -"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej " -"grupy prywatności" +"Może skutkować dużą liczbą wzmianek i ujawnieniem wszystkich członków Twojej grupy " +"prywatności" #: ../../extend/addon/hubzilla-addons/pubcrawl/Mod_Pubcrawl.php:54 msgid "Send multi-media HTML articles" @@ -15300,13 +15037,13 @@ msgstr "Informacje" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:143 msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing " -"was found at Libravatar." +"Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar " +"addon.
The Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." msgstr "" -"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek " -"Libravatar lub ten dodatek Gravatar.
Dodatek Libravatar wykorzysta " -"Gravatara, jeśli nic nie zostanie znalezione w bibliotece Libravatara." +"Dodatek Libravatar jest również zainstalowany. Proszę wyłączyć dodatek Libravatar lub " +"ten dodatek Gravatar.
Dodatek Libravatar wykorzysta Gravatara, jeśli nic nie " +"zostanie znalezione w bibliotece Libravatara." #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Default avatar image" @@ -15315,8 +15052,8 @@ msgstr "Domyślny obraz awatara" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:151 msgid "Select default avatar image if none was found at Gravatar. See README" msgstr "" -"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. " -"Zobacz README" +"Wybierz domyślny obraz awatara, jeśli nic nie zostało znaleziony w Gravatarze. Zobacz " +"README" #: ../../extend/addon/hubzilla-addons/gravatar/gravatar.php:152 msgid "Rating of images" @@ -15355,12 +15092,10 @@ msgstr "Zaloguj się do Hubzilli za pomocą konta społecznościowego" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:207 msgid "Social Authentication using your social media account" -msgstr "" -"Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" +msgstr "Uwierzytelnianie społecznościowe za pomocą konta w mediach społecznościowych" #: ../../extend/addon/hubzilla-addons/socialauth/Mod_SocialAuth.php:211 -msgid "" -"This app enables one or more social provider sign-in buttons on the login page." +msgid "This app enables one or more social provider sign-in buttons on the login page." msgstr "" "Ta aplikacja umożliwia korzystanie na stronie logowania z co najmniej jednego " "przycisku logowania dostawcy usług społecznościowych." @@ -15435,8 +15170,7 @@ msgstr "Import albumu fotograficznego Redmatrix" #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:130 msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego " -"kanału." +"Spowoduje to zaimportowanie wszystkich albumów ze zdjęciami z Redmatrix do tego kanału." #: ../../extend/addon/hubzilla-addons/redphotos/redphotos.php:131 #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:121 @@ -15482,25 +15216,23 @@ msgid "Relay public posts to Twitter" msgstr "Przekazuj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:103 -msgid "" -"No consumer key pair for Twitter found. Please contact your site administrator." +msgid "No consumer key pair for Twitter found. Please contact your site administrator." msgstr "" -"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z " -"administratorem witryny." +"Nie znaleziono pary kluczy klienta dla Twittera. Skontaktuj się z administratorem " +"witryny." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:125 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not yet " -"connected your account to your Twitter account. To do so click the button below " -"to get a PIN from Twitter which you have to copy into the input box below and " -"submit the form. Only your public posts will be posted to " -"Twitter." +"connected your account to your Twitter account. To do so click the button below to get " +"a PIN from Twitter which you have to copy into the input box below and submit the " +"form. Only your public posts will be posted to Twitter." msgstr "" -"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś " -"jeszcze swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy " -"przycisk, aby uzyskać kod PIN z Twittera, który należy skopiować do pola " -"wprowadzania poniżej i przesłać formularz. Na Twitterze będą publikowane tylko " -"Twoje publiczne wpisy." +"W tej instancji Hubzilla wtyczka Twittera była włączona, ale nie połączyłeś jeszcze " +"swojego konta z kontem na Twitterze. Aby to zrobić, kliknij poniższy przycisk, aby " +"uzyskać kod PIN z Twittera, który należy skopiować do pola wprowadzania poniżej i " +"przesłać formularz. Na Twitterze będą publikowane tylko Twoje publiczne wpisy." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:127 msgid "Log in with Twitter" @@ -15512,16 +15244,16 @@ msgstr "Skopiuj tutaj PIN z Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:152 msgid "" -"Note: Due your privacy settings (Hide your profile details " -"from unknown viewers?) the link potentially included in public postings " -"relayed to Twitter will lead the visitor to a blank page informing the visitor " -"that the access to your profile has been restricted." +"Note: Due your privacy settings (Hide your profile details from " +"unknown viewers?) the link potentially included in public postings relayed to " +"Twitter will lead the visitor to a blank page informing the visitor that the access to " +"your profile has been restricted." msgstr "" " Uwaga: Ze względu na Twoje ustawienia prywatności (Ukryj " -"szczegóły swojego profilu przed nieznanymi widzami?) ten link, " -"potencjalnie zawarty w publicznych wpisach przekazywanych do Twittera, będzie " -"prowadził odwiedzającego do pustej strony informującej gościa, że dostęp do " -"Twojego profilu został ograniczony." +"szczegóły swojego profilu przed nieznanymi widzami?
) ten link, potencjalnie " +"zawarty w publicznych wpisach przekazywanych do Twittera, będzie prowadził " +"odwiedzającego do pustej strony informującej gościa, że dostęp do Twojego profilu " +"został ograniczony." #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:157 msgid "Twitter post length" @@ -15537,11 +15269,11 @@ msgstr "Domyślnie wysyłaj publiczne wpisy na Twitter" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:162 msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" +"If enabled your public postings will be posted to the associated Twitter account by " +"default" msgstr "" -"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane " -"na powiązanym koncie Twittera" +"Jeśli ta opcja jest włączona, Twoje publiczne wpisy będą domyślnie publikowane na " +"powiązanym koncie Twittera" #: ../../extend/addon/hubzilla-addons/twitter/Mod_Twitter.php:181 msgid "Twitter Crosspost Connector" @@ -15563,74 +15295,66 @@ msgstr "Twórca projektu i kierownik techniczny" msgid "" "And the hundreds of other people and organisations who helped make the Hubzilla " "possible." -msgstr "" -"Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." +msgstr "Jak równieź setki innych osób i organizacji, które pomogły stworzyć Hubzillę." #: ../../extend/addon/hubzilla-addons/donate/donate.php:52 msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time " +"and expertise - and often paying out of pocket for services they share with others." msgstr "" -"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, " -"którzy poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za " -"usługi, którymi dzielą się z innymi." +"Projekty Redmatrix i Hubzilla są realizowane głównie przez wolontariuszy, którzy " +"poświęcają swój czas i wiedzę i często płacą z własnej kieszeni za usługi, którymi " +"dzielą się z innymi." #: ../../extend/addon/hubzilla-addons/donate/donate.php:53 msgid "" -"There is no corporate funding and no ads, and we do not collect and sell your " -"personal information. (We don't control your personal information - you " -"do.)" +"There is no corporate funding and no ads, and we do not collect and sell your personal " +"information. (We don't control your personal information - you do.)" msgstr "" -"Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie " -"sprzedajemy Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych " -"- Ty tak )." +"Nie ma żadnych funduszy korporacyjnych ani reklam a my nie zbieramy i nie sprzedajemy " +"Twoich danych osobowych. (Nie kontrolujemy Twoich danych osobowych - Ty tak )." #: ../../extend/addon/hubzilla-addons/donate/donate.php:54 msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." +"Help support our ground-breaking work in decentralisation, web identity, and privacy." msgstr "" -"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, " -"tożsamości internetowej i prywatności." +"Pomóż nam wspierać nasze przełomowe prace w zakresie decentralizacji, tożsamości " +"internetowej i prywatności." #: ../../extend/addon/hubzilla-addons/donate/donate.php:56 msgid "" "Your donations keep servers and services running and also helps us to provide " "innovative new features and continued development." msgstr "" -"Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także " -"pomagają nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju." +"Twoje darowizny zapewniają nieprzerwane działanie serwerów i usług, a także pomagają " +"nam w zapewnianiu innowacyjnych nowych funkcji i ciągłym rozwoju." #: ../../extend/addon/hubzilla-addons/donate/donate.php:59 msgid "Donate" msgstr "Wspomóż" #: ../../extend/addon/hubzilla-addons/donate/donate.php:61 -msgid "" -"Choose a project, developer, or public hub to support with a one-time donation" +msgid "Choose a project, developer, or public hub to support with a one-time donation" msgstr "" -"Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową " -"darowizną" +"Wybierz projekt, dewelopera lub publiczny portal, aby wesprzeć jednorazową darowizną" #: ../../extend/addon/hubzilla-addons/donate/donate.php:62 msgid "Donate Now" msgstr "Wpłać teraz" #: ../../extend/addon/hubzilla-addons/donate/donate.php:63 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" +msgid "Or become a project sponsor (Hubzilla Project only)" msgstr "" -"lub zostań sponsorem projektu (tylko Projekt " -"Hubzilla)" +"lub zostań sponsorem projektu (tylko Projekt Hubzilla)" #: ../../extend/addon/hubzilla-addons/donate/donate.php:64 msgid "" -"Please indicate if you would like your first name or full name (or nothing) to " -"appear in our sponsor listing" +"Please indicate if you would like your first name or full name (or nothing) to appear " +"in our sponsor listing" msgstr "" -"Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej " -"liście sponsorów" +"Wskaż, czy chcesz, aby Twoje imię lub imię i nazwisko pojawiało się na naszej liście " +"sponsorów" #: ../../extend/addon/hubzilla-addons/donate/donate.php:65 msgid "Sponsor" @@ -15687,11 +15411,11 @@ msgstr "Aplikacja Bez Federalizacji" #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:34 msgid "" -"Prevent posting from being federated to anybody. It will exist only on your " -"channel page." +"Prevent posting from being federated to anybody. It will exist only on your channel " +"page." msgstr "" -"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na " -"stronie Twojego kanału." +"Zapobiega federowaniu wiadomości do kogokolwiek. Będzie istnieć tylko na stronie " +"Twojego kanału." #: ../../extend/addon/hubzilla-addons/nofed/Mod_Nofed.php:42 msgid "Federate posts by default" @@ -15732,24 +15456,24 @@ msgstr "Zaimportowano pliki" #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:122 msgid "" -"This addon app copies existing content and file storage to a cloned/copied " -"channel. Once the app is installed, visit the newly installed app. This will " -"allow you to set the location of your original channel and an optional date " -"range of files/conversations to copy." +"This addon app copies existing content and file storage to a cloned/copied channel. " +"Once the app is installed, visit the newly installed app. This will allow you to set " +"the location of your original channel and an optional date range of files/" +"conversations to copy." msgstr "" "Ten dodatek kopiuje istniejące treści i magazyn plików do sklonowanego lub " -"skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. " -"Umożliwi Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego " -"zakresu dat plików lub konwersacji do skopiowania." +"skopiowanego kanału. Po zainstalowaniu, odwiedź nowo zainstalowaną aplikację. Umożliwi " +"Ci to ustawienie lokalizacji oryginalnego kanału i opcjonalnego zakresu dat plików lub " +"konwersacji do skopiowania." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:136 msgid "" -"This will import all your conversations and cloud files from a cloned channel " -"on another server. This may take a while if you have lots of posts and or files." +"This will import all your conversations and cloud files from a cloned channel on " +"another server. This may take a while if you have lots of posts and or files." msgstr "" -"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w " -"chmurze ze sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli " -"masz dużo wpisów lun plików." +"Spowoduje to zaimportowanie wszystkich rozmów i plików przechowywanych w chmurze ze " +"sklonowanego kanału na innym serwerze. Może to chwilę potrwać, jeśli masz dużo wpisów " +"lun plików." #: ../../extend/addon/hubzilla-addons/content_import/Mod_content_import.php:137 msgid "Include posts" @@ -15896,11 +15620,11 @@ msgstr "Usuń rozmowę" #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:296 msgid "" -"No secure communications available. You may be able to respond " -"from the sender's profile page." +"No secure communications available. You may be able to respond from " +"the sender's profile page." msgstr "" -"Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony " -"profilu nadawcy." +"Brak bezpiecznej komunikacji. Możesz odpowiedzieć ze strony profilu " +"nadawcy." #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:300 msgid "Send Reply" @@ -15926,8 +15650,8 @@ msgstr "Nie można zweryfikować żądanego kanału." #: ../../extend/addon/hubzilla-addons/mail/Mod_Mail.php:417 msgid "Selected channel has private message restrictions. Send failed." msgstr "" -"Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie " -"powiodło się." +"Wybrany kanał ma ograniczenia dotyczące wiadomości prywatnych. Wysyłanie nie powiodło " +"się." #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:50 #: ../../extend/addon/hubzilla-addons/openclipatar/openclipatar.php:128 @@ -16132,8 +15856,7 @@ msgstr "Aplikacja Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:44 msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" msgstr "" -"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC " -"WordPress" +"Opublikowanie na serwisach WordPress lub innych, które używają API XMLRPC WordPress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:69 msgid "WordPress username" @@ -16158,8 +15881,8 @@ msgstr "Identyfikator blogu WordPress" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:82 msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -"Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie " -"pozostaw puste" +"Dla serwisów wielowitrynowych, takich jak wordpress.com, w przeciwnym razie pozostaw " +"puste" #: ../../extend/addon/hubzilla-addons/wppost/Mod_Wppost.php:86 msgid "Post to WordPress by default" @@ -16176,8 +15899,7 @@ msgstr "Publikowanie w Wordpress" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:22 msgid "Allow magic authentication only to websites of your immediate connections" msgstr "" -"Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich " -"połączeń" +"Zezwalaj na magiczne uwierzytelnianie tylko w portalach Twoich bezpośrednich połączeń" #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:28 #: ../../extend/addon/hubzilla-addons/authchoose/Mod_Authchoose.php:33 @@ -16457,8 +16179,7 @@ msgstr "Import magazyn plików Redmatrix" #: ../../extend/addon/hubzilla-addons/redfiles/redfiles.php:120 msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "" -"Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału." +msgstr "Spowoduje to zaimportowanie wszystkich plików chmury Redmatrix do tego kanału." #: ../../extend/addon/hubzilla-addons/mdpost/mdpost.php:42 msgid "Use markdown for editing posts" @@ -16475,8 +16196,8 @@ msgstr "Aplikacja Zamazywanie Lokalizacji" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:35 msgid "Blur your precise location if your channel uses browser location mapping" msgstr "" -"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji " -"w przeglądarce" +"Zamaż swoją dokładną lokalizację, jeśli Twój kanał używa mapowania lokalizacji w " +"przeglądarce" #: ../../extend/addon/hubzilla-addons/fuzzloc/Mod_Fuzzloc.php:40 msgid "Minimum offset in meters" @@ -16504,13 +16225,13 @@ msgstr "Strona do załadowania po zalogowaniu" #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:62 msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy collection), " -""channel" or "notifications/system" (leave blank for " -"default network page (grid)." +"Examples: "apps", "network?f=&gid=37" (privacy collection), "" +"channel" or "notifications/system" (leave blank for default network " +"page (grid)." msgstr "" -"Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja " -"prywatności), "kanał" lub "powiadomienie/system" (pozostaw " -"puste dla domyślnej strony sieci." +"Przykłady: "aplikacje", "sieć?f=&gid=37" (kolekcja prywatności), " +""kanał" lub "powiadomienie/system" (pozostaw puste dla domyślnej " +"strony sieci." #: ../../extend/addon/hubzilla-addons/startpage/Mod_Startpage.php:70 msgid "Startpage" @@ -16669,22 +16390,21 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Klasa usługi" #~ msgid "" -#~ "Only allow new member registrations with an invitation code. Above register " -#~ "policy must be set to Yes." +#~ "Only allow new member registrations with an invitation code. Above register policy " +#~ "must be set to Yes." #~ msgstr "" -#~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. " -#~ "Powyższe zasady rejestrów muszą być ustawione na Tak." +#~ "Zezwalaj tylko na rejestracje nowych członków za pomocą kodu zaproszenia. Powyższe " +#~ "zasady rejestrów muszą być ustawione na Tak." #~ msgid "Verify Email Addresses" #~ msgstr "Zweryfikuj adresy e-mail" #~ msgid "Maximum daily site registrations exceeded. Please try again tomorrow." #~ msgstr "" -#~ "Przekroczono maksymalną dzienną liczbę rejestracji witryn. Proszę spróbuj " -#~ "ponownie jutro." +#~ "Przekroczono maksymalną dzienną liczbę rejestracji na tym portalu. Proszę spróbować " +#~ "jutro." -#~ msgid "" -#~ "Please indicate acceptance of the Terms of Service. Registration failed." +#~ msgid "Please indicate acceptance of the Terms of Service. Registration failed." #~ msgstr "" #~ "Proszę zaznaczyć akceptację Warunków korzystania z usługi. " #~ "Rejestracja nieudana." @@ -16693,14 +16413,12 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Hasła niezgodne." #~ msgid "Registration successful. Continue to create your first channel..." -#~ msgstr "" -#~ "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." +#~ msgstr "Rejestracja pomyślna. Kontynuuj tworzenie swojego pierwszego kanału ..." -#~ msgid "" -#~ "Registration successful. Please check your email for validation instructions." +#~ msgid "Registration successful. Please check your email for validation instructions." #~ msgstr "" -#~ "Rejestracja oomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje " -#~ "dotyczące weryfikacji." +#~ "Rejestracja pomyślna. Sprawdź pocztę e-mail, aby uzyskać instrukcje dotyczące " +#~ "weryfikacji." #~ msgid "Your registration is pending approval by the site owner." #~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela portalu." @@ -16709,11 +16427,10 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "Twoja rejestracja oczekuje na zatwierdzenie przez właściciela witryny." #~ msgid "" -#~ "Select a channel permission role for your usage needs and privacy " -#~ "requirements." +#~ "Select a channel permission role for your usage needs and privacy requirements." #~ msgstr "" -#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i " -#~ "wymaganiami dotyczącymi prywatności." +#~ "Wybierz rolę uprawnień do kanału zgodnie z potrzebami użytkowania i wymaganiami " +#~ "dotyczącymi prywatności." #~ msgid "no" #~ msgstr "nie" @@ -16722,18 +16439,17 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr "tak" #~ msgid "" -#~ "This site requires email verification. After completing this form, please " -#~ "check your email for further instructions." +#~ "This site requires email verification. After completing this form, please check " +#~ "your email for further instructions." #~ msgstr "" -#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza " -#~ "sprawdź swoją pocztę e-mail, aby uzyskać dalsze instrukcje." +#~ "Ta witryna wymaga weryfikację adresu e-mail. Po wypełnieniu tego formularza sprawdź " +#~ "swoją pocztę e-mail, aby uzyskać dalsze instrukcje." #~ msgid "Please join us on $Projectname" #~ msgstr "Dołącz do nas na $Projectname" #~ msgid "Invitation limit exceeded. Please contact your site administrator." -#~ msgstr "" -#~ "Przekroczono limit zaproszeń. Skontaktuj się z administratorem portalu." +#~ msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem portalu." #~ msgid "%d message sent." #~ msgid_plural "%d messages sent." @@ -16742,28 +16458,25 @@ msgstr "Zadania Crona (zaplanowane) nie działają." #~ msgstr[2] "Wysłano %d wiadomości." #~ msgid "Send email invitations to join this network" -#~ msgstr "" -#~ "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" +#~ msgstr "Wyślij wiadomości e-mail z zaproszeniami do przyłączenia się do tej sieci" #~ msgid "Please join my community on $Projectname." -#~ msgstr "" -#~ "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." +#~ msgstr "Zapraszam do dołączenia do mojej społeczności $Projectname i Fediverse." #~ msgid "You will need to supply this invitation code:" #~ msgstr "W formularzy rejstracji trzeba będzie podać ten kod zaproszenia:" #~ msgid "1. Register at any $Projectname location (they are all inter-connected)" #~ msgstr "" -#~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć " -#~ "możesz też na innym, bo wszystkie są ze sobą połączone) i utwórz swój " -#~ "domyślny profil. Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał " -#~ "osobisty\" dostępnym w po kliknieciu linku \"Pomoc\" lub skontaktuj się ze " -#~ "mną." +#~ "1. Zarejestruj się na poniżej wskazanym portalu sieci $Projectname (choć możesz też " +#~ "na innym, bo wszystkie są ze sobą połączone) i utwórz swój domyślny profil. " +#~ "Wcześniej zapoznaj się z Regulaminem i poradnikiem \"Kanał osobisty\" dostępnym w " +#~ "po kliknieciu linku \"Pomoc\" lub skontaktuj się ze mną." #~ msgid "2. Enter my $Projectname network address into the site searchbar." #~ msgstr "" -#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania portalu mój " -#~ "adres sieciowy $Projectname." +#~ "2. Aby połączyć się z moim kanałem, wpisz w pasku wyszukiwania portalu mój adres " +#~ "sieciowy $Projectname." #~ msgid "or visit" #~ msgstr "lub odwiedź adres URL" diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index c74ed605a..acb2fca18 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -17,7 +17,7 @@ App::$strings["Can view my wiki pages"] = "Może przeglądać moje strony wiki"; App::$strings["Can create/edit my channel webpages"] = "Może tworzyć/edytować strony internetowe mojego kanału"; App::$strings["Can write to my wiki pages"] = "Może pisać na moich stronach wiki"; App::$strings["Can post on my channel (wall) page"] = "Może publikować na stronie mojego kanału (ścianie)"; -App::$strings["Can comment on or like my posts"] = "Może komentować lub polubić moje wpisy"; +App::$strings["Can comment on or like my posts"] = "Może komentować lub oceniać moje wpisy"; App::$strings["Can send me private mail messages"] = "Może wysyłać mi prywatne wiadomości e-mail"; App::$strings["Can like/dislike profiles and profile things"] = "Może lubić/nie lubić profile i rzeczy w profilach"; App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Może przekazywać informacje do wszystkich moich połączeń kanałowych za pośrednictwem !wzmianki w wpisach"; @@ -230,8 +230,8 @@ App::$strings["Profile unavailable to export."] = "Profil niedostępny do wyeksp App::$strings["Profile Name is required."] = "Wymaga się podania nazwy profilu."; App::$strings["Marital Status"] = "Stan cywilny"; App::$strings["Romantic Partner"] = "Partner romantyczny"; -App::$strings["Likes"] = "Polubienia"; -App::$strings["Dislikes"] = "Niepolubienia"; +App::$strings["Likes"] = "Oceny pozytywne"; +App::$strings["Dislikes"] = "Oceny negatywne"; App::$strings["Work/Employment"] = "Praca/Zatrudnienie"; App::$strings["Religion"] = "Religia"; App::$strings["Political Views"] = "Poglądy polityczny"; @@ -312,7 +312,7 @@ App::$strings["Move this channel (disable all previous locations)"] = "Przenieś App::$strings["Use this channel nickname instead of the one provided"] = "Użyj tego pseudonimu kanału zamiast podanego"; App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Pozostaw puste, aby zachować istniejący pseudonim kanału. Otrzymasz losowo podobny pseudonim, jeśli któryś z nich jest już przydzielony na tym portalu."; App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ten proces może zająć kilka minut. Prześlij formularz tylko raz i pozostaw tę stronę otwartą do zakończenia procedury."; -App::$strings["Like/Dislike"] = "Polub/Dezaprobuj"; +App::$strings["Like/Dislike"] = "Oceń pozytywnie/negatywnie"; App::$strings["This action is restricted to members."] = "Ta akcja jest ograniczona do członków."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Aby kontynuować, zaloguj się za pomocą ID \$Projectname lub zarejestruj się jako nowy członek \$Projectname."; App::$strings["Invalid request."] = "Nieprawidłowe żądanie."; @@ -322,8 +322,8 @@ App::$strings["Channel unavailable."] = "Kanał niedostępny."; App::$strings["Previous action reversed."] = "Poprzednia czynność została cofnięta."; App::$strings["photo"] = "zdjecie"; App::$strings["status"] = "stan"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s polubił %3\$s %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s dezaprobował %3\$s %2\$s"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ocenił pozytywnie %3\$s %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s ocenił negatywnie %3\$s %2\$s"; App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s zgadza się z %3\$s dla %2\$s"; App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s nie zgadza się z %3\$s dla %2\$s"; App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s wstrzymuje się od decyzji w sprawie %3\$s dla %2\$s"; @@ -735,7 +735,7 @@ App::$strings["Empty post discarded."] = "Pusty wpis został odrzucony."; App::$strings["Duplicate post suppressed."] = "Powielony wpis został wyłączony."; App::$strings["System error. Post not saved."] = "Błąd systemu. Wpis nie został zapisany."; App::$strings["Your comment is awaiting approval."] = "Twój komentarz oczekuje na zatwierdzenie."; -App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym poście."; +App::$strings["Unable to obtain post information from database."] = "Nie można uzyskać z bazy danych informacji o tym wpisie."; App::$strings["You have reached your limit of %1$.0f top level posts."] = "Osiągnięty został limit %1$.0f wpisów najwyższego poziomu."; App::$strings["You have reached your limit of %1$.0f webpages."] = "Osiągnięty został limit %1$.0f stron internetowych."; App::$strings["Website:"] = "Portal internetowy:"; @@ -757,7 +757,7 @@ App::$strings["webpage"] = "strona internetowa"; App::$strings["block"] = "blok"; App::$strings["layout"] = "układ"; App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "Element %s zainstalowany"; +App::$strings["%s element installed"] = "Element %s został zainstalowany"; App::$strings["%s element installation failed"] = "Instalacja elementu %s nie powiodła się"; App::$strings["Public Hubs"] = "Portale publiczne"; App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Wymienione portale umożliwiają publiczną rejestrację w sieci \$Projectname. Wszystkie portale w sieci są ze sobą połączone, więc członkostwo w którymkolwiek z nich oznacza członkostwo w całej sieci. Niektóre portale mogą wymagać subskrypcji lub oferować stopniowe plany usług. Dodatkową informację można znaleźć na poszczególnych portalach."; @@ -768,12 +768,12 @@ App::$strings["Stats"] = "Statystyki"; App::$strings["Software"] = "Oprogramowanie"; App::$strings["Ratings"] = "Oceny"; App::$strings["Rate"] = "Ocena"; -App::$strings["You must be logged in to see this page."] = "Musisz być zalogowany, aby zobaczyć tę stronę."; +App::$strings["You must be logged in to see this page."] = "Trzeba być zalogowanym, aby zobaczyć tę stronę."; App::$strings["Chatrooms App"] = "Aplikacja Czaty"; App::$strings["Access Controlled Chatrooms"] = "Dostęp do kontrolowanych czatów"; -App::$strings["Room not found"] = "Nie znaleziono pokoju"; -App::$strings["Leave Room"] = "Opuść pokój"; -App::$strings["Delete Room"] = "Usuń pokój"; +App::$strings["Room not found"] = "Nie znaleziono czatu"; +App::$strings["Leave Room"] = "Opuść czat"; +App::$strings["Delete Room"] = "Usuń czat"; App::$strings["I am away right now"] = "Nie ma mnie teraz"; App::$strings["I am online"] = "Jestem dostępny"; App::$strings["Bookmark this room"] = "Zaznacz ten pokój"; @@ -805,7 +805,7 @@ App::$strings["Request could not be verified. (You may have previously submitted App::$strings["Password Reset"] = "Resetowanie hasła"; App::$strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane zgodnie z żądaniem."; App::$strings["Your new password is"] = "Twoje nowe hasło to"; -App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło - a następnie"; +App::$strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj nowe hasło, a następnie"; App::$strings["click here to login"] = "kliknij tutaj aby się zalogować"; App::$strings["Your password may be changed from the Settings page after successful login."] = "Twoje hasło może zostać zmienione na stronie Ustawienia po pomyślnym zalogowaniu."; App::$strings["Your password has changed at %s"] = "Twoje hasło zostało zmienione na %s"; @@ -835,7 +835,7 @@ App::$strings["Your software should be updated"] = "Twoje oprogramowanie powinno App::$strings["Administration"] = "Administracja"; App::$strings["Summary"] = "Podsumowanie"; App::$strings["Registered accounts"] = "Zarejestrowane konta"; -App::$strings["Pending registrations"] = "Rejestracja oczekująca"; +App::$strings["Pending registrations"] = "Rejestracje oczekujące"; App::$strings["Registered channels"] = "Zarejestrowane kanały"; App::$strings["Active addons"] = "Aktywne dodatki"; App::$strings["Version"] = "Wersja"; @@ -875,13 +875,13 @@ App::$strings["or select an existing one (doubleclick)"] = "lub wybierz istniej App::$strings["Add a Tag"] = "Dodaj tag"; App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Przykład: @bob, @Barbara_Jensen, @jim@example.com"; App::$strings["Flag as adult in album view"] = "Oznacz jako \"dla dorosłych\" w widoku albumu"; -App::$strings["I like this (toggle)"] = "Lubię to (przełącz)"; +App::$strings["I like this (toggle)"] = "Podoba mis sie to (przełącz)"; App::$strings["I don't like this (toggle)"] = "Nie podoba mi się to (przełącz)"; App::$strings["Please wait"] = "Proszę czekać"; App::$strings["This is you"] = "To jesteś ty"; App::$strings["Comment"] = "Komentarz"; -App::$strings["__ctx:title__ Likes"] = "Polubienia"; -App::$strings["__ctx:title__ Dislikes"] = "Niepolubienia"; +App::$strings["__ctx:title__ Likes"] = "Ocen pozytywnych"; +App::$strings["__ctx:title__ Dislikes"] = "Ocen negatywnych"; App::$strings["__ctx:title__ Agree"] = "Zgoda"; App::$strings["__ctx:title__ Disagree"] = "Sprzeciw"; App::$strings["__ctx:title__ Abstain"] = "Wstrzymuję się"; @@ -890,20 +890,20 @@ App::$strings["__ctx:title__ Not attending"] = "Nie uczestniczę"; App::$strings["__ctx:title__ Might attend"] = "Mogę uczestniczyć"; App::$strings["View all"] = "Pokaż wszystkie"; App::$strings["__ctx:noun__ Like"] = array( - 0 => "Polubienie", - 1 => "Polubienia", - 2 => "Polubień", + 0 => "Ocena pozytywna", + 1 => "Oceny pozytywne", + 2 => "Oce pozytywanych", ); App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Niepolubienie", - 1 => "Niepolubienia", - 2 => "Niepolubień", + 0 => "Ocena negartwna", + 1 => "Oceny negatywne", + 2 => "Ocen negatywnych", ); App::$strings["Photo Tools"] = "Narzędzia fotograficzne"; App::$strings["In This Photo:"] = "Na tym zdjęciu:"; App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Polubienia"; -App::$strings["__ctx:noun__ Dislikes"] = "Niepolubienia"; +App::$strings["__ctx:noun__ Likes"] = "Oceny pozytywne"; +App::$strings["__ctx:noun__ Dislikes"] = "Oceny negatywne"; App::$strings["Close"] = "Zamknij"; App::$strings["Recent Photos"] = "Najnowsze zdjęcia"; App::$strings["Posts and comments"] = "Wpisy i komentarze"; @@ -929,12 +929,12 @@ App::$strings["Visit your channel homepage"] = "Odwiedź stronę główną swoje App::$strings["View your connections and/or add somebody whose address you already know"] = "Wyświetl swoje kontakty albo dodaj osobę, której adres już znasz"; App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Wyświetl swój osobisty strumień (może być pusty, dopóki nie dodasz niektórych połączeń)"; App::$strings["View the public stream. Warning: this content is not moderated"] = "Wyświetl strumień publiczny. Ostrzeżenie: ta zawartość nie jest moderowana"; -App::$strings["Active"] = "Aktywny"; -App::$strings["Blocked"] = "Zablokowany"; -App::$strings["Ignored"] = "Ignorowany"; -App::$strings["Hidden"] = "Ukryty"; +App::$strings["Active"] = "Aktywne"; +App::$strings["Blocked"] = "Zablokowane"; +App::$strings["Ignored"] = "Ignorowane"; +App::$strings["Hidden"] = "Ukryte"; App::$strings["Archived/Unreachable"] = "Zarchiwizowane/Nieosiągalne"; -App::$strings["New"] = "Nowy"; +App::$strings["New"] = "Nowe"; App::$strings["Active Connections"] = "Aktywne połączenia"; App::$strings["Show active connections"] = "Pokaż aktywne połączenia"; App::$strings["New Connections"] = "Nowe połączenia"; @@ -954,7 +954,7 @@ App::$strings["Channel address"] = "Adres kanału"; App::$strings["Network"] = "Sieć"; App::$strings["Call"] = "Połączenie"; App::$strings["Status"] = "Stan"; -App::$strings["Connected"] = "Połączene"; +App::$strings["Connected"] = "Połączone"; App::$strings["Approve connection"] = "Zatwierdź połączenie"; App::$strings["Approve"] = "Zatwierdź"; App::$strings["Ignore connection"] = "Ignoruj połączenie"; @@ -981,8 +981,8 @@ App::$strings["Persistent affinity levels"] = "Trwałe poziomy więzi"; App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "Jeśli wyłączone, maksymalne i minimalne poziomy zostaną zresetowane do wartości domyślnych po ponownym załadowaniu strony"; App::$strings["Affinity Tool Settings"] = "Ustawienia Narzędzia Zaprzyjaźnienia"; App::$strings["No channel."] = "Brak kanału."; -App::$strings["No connections in common."] = "Brak wspólnych połączeń."; -App::$strings["View Common Connections"] = "Wyświetl typowe połączenia"; +App::$strings["No connections in common."] = "Brak popularnych połączeń."; +App::$strings["View Common Connections"] = "Wyświetl popularne połączenia"; App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Powtórzony %2\$s %1\$s"; App::$strings["Post repeated"] = "Wpis powtórzony"; App::$strings["Page link"] = "Link do strony"; @@ -996,7 +996,7 @@ App::$strings["Authenticate"] = "Uwierzytelnianie"; App::$strings["Item not available."] = "Element nie jest dostępny."; App::$strings["This setting requires special processing and editing has been blocked."] = "To ustawienie wymaga specjalnego przetwarzania, a edycja została zablokowana."; App::$strings["Configuration Editor"] = "Edytor konfiguracji"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się komfortowo i nie wiesz, jak prawidłowo korzystać z tej funkcji."; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Ostrzeżenie: zmiana niektórych ustawień może spowodować, że Twój kanał przestanie działać. Opuść tę stronę, chyba że czujesz się kompetentnie i wiesz, jak prawidłowo korzystać z tej funkcji."; App::$strings["Random Channel App"] = "Aplikacja Losowy kanał"; App::$strings["Visit a random channel in the \$Projectname network"] = "Odwiedź losowy kanał w sieci \$Projectname"; App::$strings["Theme settings updated."] = "Zaktualizowano ustawienia motywu."; @@ -1182,8 +1182,8 @@ App::$strings["My site offers free accounts with optional paid upgrades"] = "Mó App::$strings["Default permission role for new accounts"] = "Domyślna rola uprawnień dla nowych kont"; App::$strings["This role will be used for the first channel created after registration."] = "Ta rola będzie używana dla pierwszego kanału utworzonego po rejestracji."; App::$strings["Minute(s)"] = "Minuta/Minuty"; -App::$strings["Hour(s)"] = "Godzin/Godziny"; -App::$strings["Day(s)"] = "Dzień.Dni"; +App::$strings["Hour(s)"] = "Godzina/Godziny"; +App::$strings["Day(s)"] = "Dzień/Dni"; App::$strings["Week(s)"] = "Tydzień/Tygodnie"; App::$strings["Month(s)"] = "Miesiąc/Miesiące"; App::$strings["Year(s)"] = "Rok/Lata"; @@ -1210,9 +1210,9 @@ App::$strings["Default system theme - may be over-ridden by user profiles - Date: Mon, 31 May 2021 18:07:16 +0200 Subject: Fixes to docs/pl/about/about.bb --- doc/pl/about/about.bb | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/doc/pl/about/about.bb b/doc/pl/about/about.bb index 45a4de04a..1700d3250 100644 --- a/doc/pl/about/about.bb +++ b/doc/pl/about/about.bb @@ -1,9 +1,7 @@ [h3]Co to jest $Projectname?[/h3] -$Projectname to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych działających na specjalnym portalu internetowym, zwanym też "hubem", który może łączyć się z innymi portalami w sfederalizowanej sieci internetowej. -$Projectname zapewnia użytkownikom zaawansowaną komunikację, tożsamości i usługę kontroli dostępu, które bezproblemowo współpracują w różnych domenach i niezależnych -serwisach internetowych. $Projectname pozwala użytkownikom publikować treści, [b]publicznie[/b] lub [b]prywatnie[/b], w swoich "kanałach" (ang. channels), które są zabezpieczonymi kryptograficznie tożsamościami zapewniającymi -uwierzytelnianie użytkowników niezależnie od portali, które hostują te kanały. To rewolucyjne uwolnienie tożsamości inernetowej z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot - nowej strukturze -zdecentralizowanej kontroli dostępu ze szczegółowymi, rozszerzalnymi uprawnieniami. +$Projectname Hubzilla to bezpłatny i otwartoźródłowy zestaw aplikacji i usług internetowych, które można wdrożyć na własnym serwerze internetowym jako samodzielny portal społecznościowy, zwanym też "hubem". Portal ten może łączyć się z innymi portalami tego typu, tworząc sfederowaną sieć społecznościową. +$Projectname zapewnia użytkownikom zaawansowaną komunikację, tożsamości i usługę kontroli dostępu, które bezproblemowo współpracują w różnych domenach i niezależnych serwisach internetowych. +$Projectname pozwala użytkownikom komunikować się i publikować treści w swoich "kanałach" z możliwością bardzo szczegółowej kontroli dostępu. Kanały są zabezpieczonymi kryptograficznie tożsamościami internetowymi, zapewniającymi uwierzytelnianie użytkowników niezależnie od portali na których są hostowane. To rewolucyjne uwolnienie tożsamości inernetowej z poszczególnych serwerów i domen jest nazywane "tożsamością nomadyczną" i jest oparte na protokole Zot - nowej strukturze zdecentralizowanej kontroli dostępu ze szczegółowymi, rozszerzalnymi uprawnieniami. Z praktycznego punktu widzenia członków danego portalu, korzystających z oprogramowania $Projectname, oferuje ono szereg znanych, zintegrowanych aplikacji i usług internetowych, w tym: [ul] [li]wątki dyskusyjne w sieciach społecznościowych[/li] @@ -16,12 +14,7 @@ Chociaż wszystkie te aplikacje i usługi można znaleźć w innych pakietach op Dzięki oferowanym aplikacjom, $Projectname świetnie się nadaje do budowy platformy komunikacyjno-publikacyjnej o charkterze społecznościowym dla realnych grup społecznych, takich jak rodziny, lokalne grupy, organizacje społeczne, środowiska szkolne, wspólnoty mieszkańców czy wspólnoty religijne. [h3]Stos programów[/h3] -Pakiet oprogramowania $Projectname jest stosunkowo standardową aplikacją serwerową napisaną głównie w PHP i MySQL, -[url=https://framagit.org/$Projectname/core/blob/master/install/INSTALL.txt]wymagającą niewiele więcej niż serwera WWW, -bazy danych zgodnej z MySQL i środowiska wykonawczego PHP[/url]. System został zaprojektowany tak, aby był łatwy do -zainstalowania przez osoby z podstawowymi umiejętnościami administrowania witryną, na typowych platformach współdzielonego -hostingu, z uwzglednieniem szerokiej gamy sprzętu komputerowego. Można go również łatwo rozszerzyć za pomocą wtyczek i motywów -oraz innych narzędzi zewnętrznych. +Pakiet oprogramowania $Projectname jest stosunkowo standardową aplikacją serwerową napisaną głównie w PHP i MySQL, wymagającą niewiele więcej niż [url=https://framagit.org/$Projectname/core/blob/master/install/INSTALL.txt]serwera WWW, bazy danych zgodnej z MySQL i środowiska wykonawczego PHP[/url]. System został zaprojektowany tak, aby był łatwy do zainstalowania przez osoby z podstawowymi umiejętnościami administrowania witryną, na typowych platformach współdzielonego hostingu, z uwzglednieniem szerokiej gamy sprzętu komputerowego. Można go również łatwo rozszerzyć za pomocą wtyczek i motywów oraz innych narzędzi zewnętrznych. [h3]Słownik[/h3] [dl terms="b"] -- cgit v1.2.3 From b63aa3079b624ab6bb526ec233aecb7c3f2d4061 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 2 Jun 2021 09:41:57 +0200 Subject: fix regression where authors from non zot6, activitypub networks got dismissed (e.g. relayed diaspora comments) (cherry picked from commit b3df15a3c6e017ce3858ee484c6d2d70a5f18a17) --- Zotlabs/Lib/ActivityStreams.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index a5fb4a756..2324a8136 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -304,11 +304,12 @@ class ActivityStreams { // SECURITY: If we have already stored the actor profile, re-generate it // from cached data - don't refetch it from the network - $r = q("select * from xchan join hubloc on xchan_hash = hubloc_hash where hubloc_network in ('zot6', 'activitypub') and hubloc_id_url = '%s'", + $r = q("select * from xchan join hubloc on xchan_hash = hubloc_hash where hubloc_id_url = '%s'", dbesc($x) ); if ($r) { - $y = Activity::encode_person($r[0]); + $r = Libzot::zot_record_preferred($r); + $y = Activity::encode_person($r); $y['cached'] = true; return $y; } -- cgit v1.2.3 From a0b788e96a0300540069e8e187f65362db8f6d67 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 2 Jun 2021 08:31:43 +0000 Subject: fix article summary duplicated when editing - issue #1577 (cherry picked from commit 50c14d353b30d0dcd7c761884d797dc0fe90f777) --- Zotlabs/Module/Article_edit.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Zotlabs/Module/Article_edit.php b/Zotlabs/Module/Article_edit.php index efa02e1c1..97c87f2ba 100644 --- a/Zotlabs/Module/Article_edit.php +++ b/Zotlabs/Module/Article_edit.php @@ -85,7 +85,6 @@ class Article_edit extends \Zotlabs\Web\Controller { $mimetype = $itm[0]['mimetype']; - $summary = (($itm[0]['summary']) ? '[summary]' . $itm[0]['summary'] . '[/summary]' . "\r\n" : ''); $content = $itm[0]['body']; $rp = 'articles/' . $channel['channel_address']; @@ -109,7 +108,7 @@ class Article_edit extends \Zotlabs\Web\Controller { 'ptyp' => $itm[0]['type'], 'mimeselect' => false, 'mimetype' => $itm[0]['mimetype'], - 'body' => $summary . undo_post_tagging($content), + 'body' => undo_post_tagging($content), 'post_id' => $post_id, 'visitor' => true, 'title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), -- cgit v1.2.3 From 7d82a34538936a219a0d1977fbadbe2cf72ed74a Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Wed, 2 Jun 2021 08:33:54 +0000 Subject: Make pubstream ordering configurable --- Zotlabs/Module/Pubstream.php | 2 +- doc/hidden_configs.bb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 113f0a196..9c63c735d 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -197,7 +197,7 @@ class Pubstream extends \Zotlabs\Web\Controller { if($update) { - $ordering = "commented"; + $ordering = get_config('system', 'pubstream_ordering', 'commented'); if($load) { if($mid) { diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index 27ea415bd..4eac1aa6e 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -87,6 +87,7 @@ Options are: [*= system.proc_run_use_exec ] If 1, use the exec system call in proc_run to run background tasks. By default we use proc_open and proc_close. On some (currently rare) systems this does not work well. [*= system.projecthome ] Display the project page on your home page for logged out viewers. [*= system.projecthome ] Set the project homepage as the homepage of your hub. (Obsolete) + [*= system.pubstream_ordering ] Set pubstream ordering. Possible values 'commented' (default), 'created' and 'edited'. [*= system.register_link ] path to direct to from the "register" link on the login form. On closed sites this will direct to 'pubsites'. For open sites it will normally redirect to 'register' but you may change this to a custom site page offering subscriptions or whatever. [*= system.reserved_channels ] Don't allow members to register channels with this comma separated list of names (no spaces) [*= system.sellpage ] A URL shown in the public sites list to sell your hub - display service classes, etc. -- cgit v1.2.3 From ba22d3e9b6ef7042d7129c7715c81c668fcf79b3 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 2 Jun 2021 17:58:46 +0000 Subject: fix issue where a deleted channel will return 404 before returning zotinfo (cherry picked from commit 33463152e844f98b933401c394cc0e111893a077) --- Zotlabs/Daemon/Onedirsync.php | 4 ++-- Zotlabs/Module/Channel.php | 19 +++++++++++++++--- Zotlabs/Module/Removeme.php | 46 +++++++++++++++++++++---------------------- include/channel.php | 4 ++-- 4 files changed, 43 insertions(+), 30 deletions(-) diff --git a/Zotlabs/Daemon/Onedirsync.php b/Zotlabs/Daemon/Onedirsync.php index f29fbe5b8..47904ea21 100644 --- a/Zotlabs/Daemon/Onedirsync.php +++ b/Zotlabs/Daemon/Onedirsync.php @@ -29,6 +29,7 @@ class Onedirsync { if (!$r) return; + if (($r[0]['ud_flags'] & UPDATE_FLAGS_UPDATED) || (!$r[0]['ud_addr'])) return; @@ -59,13 +60,12 @@ class Onedirsync { $h = Libzot::zot_record_preferred($h); - if (($h) && ($h['hubloc_status'] & HUBLOC_OFFLINE)) { + if (($h) && (($h['hubloc_status'] & HUBLOC_OFFLINE) || $h['hubloc_deleted'] || $h['hubloc_error']) ) { q("update updates set ud_flags = ( ud_flags | %d ) where ud_addr = '%s' and ( ud_flags & %d ) = 0 ", intval(UPDATE_FLAGS_UPDATED), dbesc($r[0]['ud_addr']), intval(UPDATE_FLAGS_UPDATED) ); - return; } diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index a7deb4f6b..20cbe0b5c 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -46,14 +46,22 @@ class Channel extends Controller { } $profile = 0; - $channel = App::get_channel(); if ((local_channel()) && (argc() > 2) && (argv(2) === 'view')) { + $channel = App::get_channel(); $which = $channel['channel_address']; $profile = argv(1); } - $channel = channelx_by_nick($which); + + // Do not use channelx_by_nick() here since it will dismiss deleted channels. + // We need to provide zotinfo for deleted channels so that directories can pick up the info. + $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' LIMIT 1", + dbesc($which) + ); + + $channel = $r[0]; + if (!$channel) { http_status_exit(404, 'Not found'); } @@ -83,12 +91,17 @@ class Channel extends Controller { 'Digest' => HTTPSig::generate_digest_header($data), '(request-target)' => strtolower($_SERVER['REQUEST_METHOD']) . ' ' . $_SERVER['REQUEST_URI'] ]; - $h = HTTPSig::create_sig($headers, $channel['channel_prvkey'], channel_url($channel)); + + $h = HTTPSig::create_sig($headers, $channel['channel_prvkey'], channel_url($channel)); HTTPSig::set_headers($h); echo $data; killme(); } + if ($channel['channel_removed']) { + http_status_exit(404, 'Not found'); + } + if (ActivityStreams::is_as_request($channel)) { // Somebody may attempt an ActivityStreams fetch on one of our message permalinks diff --git a/Zotlabs/Module/Removeme.php b/Zotlabs/Module/Removeme.php index 876d61ca6..a0697675b 100644 --- a/Zotlabs/Module/Removeme.php +++ b/Zotlabs/Module/Removeme.php @@ -5,54 +5,54 @@ namespace Zotlabs\Module; class Removeme extends \Zotlabs\Web\Controller { function post() { - + if(! local_channel()) return; - + if($_SESSION['delegate']) return; - + if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) return; - + if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) return; - + if($_POST['verify'] !== $_SESSION['remove_account_verify']) return; - - + + $account = \App::get_account(); - - + + $x = account_verify_password($account['account_email'],$_POST['qxz_password']); if(! ($x && $x['account'])) return; - + if($account['account_password_changed'] > NULL_DATE) { $d1 = datetime_convert('UTC','UTC','now - 48 hours'); - if($account['account_password_changed'] > d1) { + if($account['account_password_changed'] > $d1) { notice( t('Channel removals are not allowed within 48 hours of changing the account password.') . EOL); return; } } - + $global_remove = 0; //intval($_POST['global']); channel_remove(local_channel(),1 - $global_remove,true); - + } - - + + function get() { - + if(! local_channel()) goaway(z_root()); - + $hash = random_string(); - + $_SESSION['remove_account_verify'] = $hash; - + $tpl = get_markup_template('removeme.tpl'); $o .= replace_macros($tpl, array( '$basedir' => z_root(), @@ -63,9 +63,9 @@ class Removeme extends \Zotlabs\Web\Controller { // '$global' => [ 'global', t('Remove this channel and all its clones from the network'), false, t('By default only the instance of the channel located on this hub will be removed from the network'), [ t('No'),t('Yes') ] ], '$submit' => t('Remove Channel') )); - - return $o; - + + return $o; + } - + } diff --git a/include/channel.php b/include/channel.php index 804d8c63a..5684f7a6b 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1407,7 +1407,7 @@ function profile_load($nickname, $profile = '') { if(! $user) { logger('profile error: ' . App::$query_string, LOGGER_DEBUG); - notice( t('Requested channel is not available.') . EOL ); + notice( t('Requested channel is not available') . EOL ); App::$error = 404; return; } @@ -2537,7 +2537,7 @@ function channelx_by_nick($nick) { return App::$channel; } - $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and channel_removed = 0 LIMIT 1", + $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and channel_removed = 0 LIMIT 1", dbesc($nick) ); -- cgit v1.2.3 From 343f3059e6df65c4c97ca7ab359addeb5d0e1cf5 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Jun 2021 07:45:33 +0000 Subject: fix login name label for the case when system.verify_email is disabled (cherry picked from commit e44bf42c646c018e00e8f0a2895a6c29522361a6) --- boot.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/boot.php b/boot.php index 622784e9c..ec380992f 100644 --- a/boot.php +++ b/boot.php @@ -1709,21 +1709,24 @@ function login($register = false, $form_id = 'main-login', $hiddens = false, $lo $_SESSION['login_return_url'] = App::$query_string; } - $o .= replace_macros($tpl,array( + $email_required = get_config('system', 'verify_email'); + $lname_label = (($email_required) ? t('Email or nickname') : t('Nickname')); + + $o .= replace_macros($tpl, [ '$dest_url' => $dest_url, '$login_page' => $login_page, '$logout' => t('Logout'), '$login' => t('Login'), '$remote_login' => t('Remote Authentication'), '$form_id' => $form_id, - '$lname' => array('username', t('Login/Email') , '', ''), - '$lpassword' => array('password', t('Password'), '', ''), - '$remember_me' => array((($login_page) ? 'remember' : 'remember_me'), t('Remember me'), '', '',array(t('No'),t('Yes'))), + '$lname' => ['username', $lname_label], + '$lpassword' => ['password', t('Password')], + '$remember_me' => [(($login_page) ? 'remember' : 'remember_me'), t('Remember me'), '', '', [t('No'),t('Yes')]], '$hiddens' => $hiddens, '$register' => $reg, '$lostpass' => t('Forgot your password?'), - '$lostlink' => t('Password Reset'), - )); + '$lostlink' => (($email_required) ? t('Password Reset') : ''), + ]); /** * @hooks login_hook -- cgit v1.2.3 From 443b436be8637c5adc9088e591f9bd3e8b0327a2 Mon Sep 17 00:00:00 2001 From: mjfriaza Date: Tue, 1 Jun 2021 11:57:11 +0200 Subject: Update Spanish (cherry picked from commit 993d64801136aa4bde4f4422ae4f07d224a91a62) --- view/es-es/hmessages.po | 2709 +++++++++++++++++++++++++++-------------------- view/es-es/hstrings.php | 199 +++- 2 files changed, 1687 insertions(+), 1221 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8c730d058..a9d2fdd48 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the hubzilla package. # # Translators: -# Alfonso Martínez , 2015 +# Alfonso Martínez, 2015 # inboxwall , 2015 # jeroenpraat, 2015 # Manuel Jiménez Friaza , 2017-2021 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-23 10:52+0000\n" -"PO-Revision-Date: 2021-02-24 09:30+0000\n" +"POT-Creation-Date: 2021-04-29 08:26+0000\n" +"PO-Revision-Date: 2021-05-14 18:05+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,15 +24,12 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1 ? 1 : 0);\n" - - - #: ../../view/theme/redbasic/php/config.php:15 #: ../../addon/cart/submodules/orderoptions.php:335 #: ../../addon/cart/submodules/orderoptions.php:359 #: ../../addon/cart/submodules/orderoptions.php:435 #: ../../addon/cart/submodules/orderoptions.php:459 -#: ../../include/text.php:3382 ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../include/text.php:3395 ../../Zotlabs/Module/Admin/Site.php:251 msgid "Default" msgstr "Predeterminado" @@ -90,8 +87,8 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Widget/Wiki_pages.php:99 #: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Tokens.php:188 #: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Import.php:646 ../../Zotlabs/Module/Setup.php:304 -#: ../../Zotlabs/Module/Setup.php:344 ../../Zotlabs/Module/Group.php:151 +#: ../../Zotlabs/Module/Import.php:647 ../../Zotlabs/Module/Setup.php:306 +#: ../../Zotlabs/Module/Setup.php:346 ../../Zotlabs/Module/Group.php:151 #: ../../Zotlabs/Module/Group.php:167 ../../Zotlabs/Module/Oauth.php:111 #: ../../Zotlabs/Module/Chat.php:209 ../../Zotlabs/Module/Chat.php:248 #: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Mitem.php:259 @@ -100,24 +97,25 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Security.php:120 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Accounts.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:412 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Profs.php:178 #: ../../Zotlabs/Module/Admin/Addons.php:442 -#: ../../Zotlabs/Module/Events.php:501 ../../Zotlabs/Module/Permcats.php:129 -#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Appman.php:155 +#: ../../Zotlabs/Module/Regate.php:384 ../../Zotlabs/Module/Events.php:501 +#: ../../Zotlabs/Module/Permcats.php:129 ../../Zotlabs/Module/Mood.php:158 +#: ../../Zotlabs/Module/Appman.php:155 #: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 #: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Invite.php:550 ../../Zotlabs/Module/Xchan.php:15 #: ../../Zotlabs/Module/Affinity.php:87 ../../Zotlabs/Module/Rate.php:168 #: ../../Zotlabs/Module/Settings/Network.php:62 #: ../../Zotlabs/Module/Settings/Features.php:48 #: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Account.php:103 +#: ../../Zotlabs/Module/Settings/Account.php:107 #: ../../Zotlabs/Module/Settings/Events.php:42 #: ../../Zotlabs/Module/Settings/Manage.php:43 #: ../../Zotlabs/Module/Settings/Channel_home.php:91 @@ -132,7 +130,7 @@ msgstr "Focus (predefinido)" #: ../../Zotlabs/Module/Defperms.php:266 ../../Zotlabs/Module/Pconfig.php:116 #: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Thing.php:328 #: ../../Zotlabs/Module/Thing.php:381 ../../Zotlabs/Module/Pdledit.php:108 -#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Connedit.php:897 +#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Connedit.php:897 #: ../../Zotlabs/Module/Locs.php:132 ../../Zotlabs/Module/Sources.php:125 #: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Lib/ThreadItem.php:827 #: ../../Zotlabs/Storage/Browser.php:382 @@ -189,29 +187,29 @@ msgstr "Estrechar la barra de navegación" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:259 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:319 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:99 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 ../../Zotlabs/Lib/Libzotdir.php:165 #: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:168 #: ../../Zotlabs/Storage/Browser.php:310 ../../Zotlabs/Storage/Browser.php:311 #: ../../Zotlabs/Storage/Browser.php:312 ../../Zotlabs/Storage/Browser.php:389 #: ../../Zotlabs/Storage/Browser.php:391 ../../Zotlabs/Storage/Browser.php:552 -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "No" msgstr "No" @@ -257,28 +255,28 @@ msgstr "No" #: ../../addon/libertree/Mod_Libertree.php:59 #: ../../addon/socialauth/Mod_SocialAuth.php:214 #: ../../addon/ljpost/Mod_Ljpost.php:63 ../../addon/ljpost/Mod_Ljpost.php:67 -#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1469 +#: ../../addon/ljpost/Mod_Ljpost.php:71 ../../include/conversation.php:1468 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:635 -#: ../../Zotlabs/Module/Import.php:639 ../../Zotlabs/Module/Import.php:640 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Filestorage.php:203 +#: ../../include/dir_fns.php:146 ../../Zotlabs/Module/Import.php:636 +#: ../../Zotlabs/Module/Import.php:640 ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Register.php:536 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Filestorage.php:203 #: ../../Zotlabs/Module/Filestorage.php:211 -#: ../../Zotlabs/Module/Admin/Site.php:261 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Admin/Site.php:321 ../../Zotlabs/Module/Events.php:478 #: ../../Zotlabs/Module/Events.php:479 ../../Zotlabs/Module/Api.php:98 #: ../../Zotlabs/Module/Photos.php:673 ../../Zotlabs/Module/Profiles.php:683 #: ../../Zotlabs/Module/Settings/Channel.php:311 #: ../../Zotlabs/Module/Settings/Display.php:88 #: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:222 -#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:404 +#: ../../Zotlabs/Module/Defperms.php:198 ../../Zotlabs/Module/Wiki.php:226 +#: ../../Zotlabs/Module/Wiki.php:227 ../../Zotlabs/Module/Connedit.php:404 #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 #: ../../Zotlabs/Lib/Libzotdir.php:165 ../../Zotlabs/Lib/Libzotdir.php:166 #: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Storage/Browser.php:310 #: ../../Zotlabs/Storage/Browser.php:311 ../../Zotlabs/Storage/Browser.php:312 #: ../../Zotlabs/Storage/Browser.php:389 ../../Zotlabs/Storage/Browser.php:391 -#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1716 +#: ../../Zotlabs/Storage/Browser.php:552 ../../boot.php:1721 msgid "Yes" msgstr "Sí" @@ -433,7 +431,7 @@ msgid "Channel Reputation" msgstr "Reputación del canal" #: ../../addon/channelreputation/channelreputation.php:233 -#: ../../include/acl_selectors.php:155 ../../Zotlabs/Widget/Pinned.php:160 +#: ../../include/acl_selectors.php:156 ../../Zotlabs/Widget/Pinned.php:158 #: ../../Zotlabs/Module/Photos.php:1275 ../../Zotlabs/Lib/ThreadItem.php:497 #: ../../Zotlabs/Storage/Browser.php:411 msgid "Close" @@ -489,17 +487,17 @@ msgstr "App Superblock" #: ../../addon/xmpp/Mod_Xmpp.php:35 ../../Zotlabs/Module/Tokens.php:99 #: ../../Zotlabs/Module/Group.php:107 ../../Zotlabs/Module/Oauth.php:100 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Poke.php:165 -#: ../../Zotlabs/Module/Cdav.php:876 ../../Zotlabs/Module/Webpages.php:48 +#: ../../Zotlabs/Module/Cdav.php:877 ../../Zotlabs/Module/Webpages.php:48 #: ../../Zotlabs/Module/Pubstream.php:20 ../../Zotlabs/Module/Permcats.php:63 -#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Lang.php:17 ../../Zotlabs/Module/Uexport.php:62 #: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Cards.php:51 #: ../../Zotlabs/Module/Articles.php:52 ../../Zotlabs/Module/Bookmarks.php:78 -#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:110 -#: ../../Zotlabs/Module/Notes.php:57 ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Defperms.php:190 ../../Zotlabs/Module/Oauth2.php:106 -#: ../../Zotlabs/Module/Randprof.php:29 ../../Zotlabs/Module/Pdledit.php:43 -#: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Suggest.php:40 -#: ../../Zotlabs/Module/Sources.php:88 +#: ../../Zotlabs/Module/Probe.php:19 ../../Zotlabs/Module/Invite.php:56 +#: ../../Zotlabs/Module/Invite.php:310 ../../Zotlabs/Module/Notes.php:57 +#: ../../Zotlabs/Module/Affinity.php:52 ../../Zotlabs/Module/Defperms.php:190 +#: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 +#: ../../Zotlabs/Module/Pdledit.php:43 ../../Zotlabs/Module/Wiki.php:52 +#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Sources.php:88 msgid "Not Installed" msgstr "No instalado/a" @@ -593,7 +591,7 @@ msgid "View Profile" msgstr "Ver el perfil" #: ../../addon/openclipatar/openclipatar.php:58 ../../include/nav.php:120 -#: ../../include/channel.php:1543 +#: ../../include/channel.php:1567 msgid "Edit Profile" msgstr "Editar el perfil" @@ -711,8 +709,8 @@ msgstr "Mínimo 100, por defecto 100 microsegundos" msgid "Queueworker Settings" msgstr "Configuración del gestor de procesos de trabajo en cola" -#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1152 -#: ../../include/text.php:1164 ../../Zotlabs/Widget/Notes.php:23 +#: ../../addon/queueworker/Mod_Queueworker.php:116 ../../include/text.php:1145 +#: ../../include/text.php:1157 ../../Zotlabs/Widget/Notes.php:23 #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Cards.php:113 #: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Module/Articles.php:117 @@ -767,7 +765,7 @@ msgstr "Galería" msgid "Photo Gallery" msgstr "Galería de fotos" -#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1440 +#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1464 #: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Profile.php:27 ../../Zotlabs/Module/Webpages.php:39 #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 @@ -798,7 +796,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../addon/openid/Mod_Id.php:53 ../../addon/mail/Mod_Mail.php:26 #: ../../addon/pumpio/pumpio.php:44 ../../addon/keepout/keepout.php:36 -#: ../../include/photos.php:27 ../../include/items.php:4001 +#: ../../include/photos.php:27 ../../include/items.php:4087 #: ../../include/attach.php:156 ../../include/attach.php:205 #: ../../include/attach.php:278 ../../include/attach.php:329 #: ../../include/attach.php:424 ../../include/attach.php:438 @@ -808,12 +806,12 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Attach_edit.php:90 #: ../../Zotlabs/Module/Attach_edit.php:99 #: ../../Zotlabs/Module/Attach_edit.php:106 -#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:80 -#: ../../Zotlabs/Module/Setup.php:206 +#: ../../Zotlabs/Module/Network.php:19 ../../Zotlabs/Module/Register.php:197 +#: ../../Zotlabs/Module/Setup.php:208 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:364 -#: ../../Zotlabs/Module/Channel.php:403 ../../Zotlabs/Module/Group.php:15 +#: ../../Zotlabs/Module/Channel.php:209 ../../Zotlabs/Module/Channel.php:365 +#: ../../Zotlabs/Module/Channel.php:404 ../../Zotlabs/Module/Group.php:15 #: ../../Zotlabs/Module/Group.php:31 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 @@ -822,8 +820,8 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Chat.php:118 #: ../../Zotlabs/Module/Channel_calendar.php:232 #: ../../Zotlabs/Module/Like.php:242 ../../Zotlabs/Module/Poke.php:157 -#: ../../Zotlabs/Module/Item.php:496 ../../Zotlabs/Module/Item.php:515 -#: ../../Zotlabs/Module/Item.php:525 ../../Zotlabs/Module/Item.php:1436 +#: ../../Zotlabs/Module/Item.php:506 ../../Zotlabs/Module/Item.php:525 +#: ../../Zotlabs/Module/Item.php:535 ../../Zotlabs/Module/Item.php:1444 #: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Profile.php:99 #: ../../Zotlabs/Module/Profile.php:114 #: ../../Zotlabs/Module/Sharedwithme.php:19 @@ -837,7 +835,7 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Achievements.php:34 #: ../../Zotlabs/Module/Events.php:277 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:428 +#: ../../Zotlabs/Module/Moderate.php:15 ../../Zotlabs/Module/Display.php:420 #: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/New_channel.php:105 #: ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Service_limits.php:11 @@ -856,14 +854,14 @@ msgstr "Establecer un planeta aleatorio del Imperio de la Guerra de las Galaxias #: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:133 #: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:637 #: ../../Zotlabs/Module/Articles.php:89 ../../Zotlabs/Module/Bookmarks.php:70 -#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 +#: ../../Zotlabs/Module/Invite.php:51 ../../Zotlabs/Module/Invite.php:302 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Menu.php:130 #: ../../Zotlabs/Module/Menu.php:141 ../../Zotlabs/Module/Defperms.php:182 #: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 #: ../../Zotlabs/Module/Thing.php:343 ../../Zotlabs/Module/Pdledit.php:35 -#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:285 -#: ../../Zotlabs/Module/Wiki.php:428 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Wiki.php:59 ../../Zotlabs/Module/Wiki.php:284 +#: ../../Zotlabs/Module/Wiki.php:427 ../../Zotlabs/Module/Suggest.php:32 #: ../../Zotlabs/Module/Connedit.php:397 #: ../../Zotlabs/Module/Notifications.php:11 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 @@ -874,12 +872,12 @@ msgid "Permission denied." msgstr "Acceso denegado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1723 +#: ../../include/selectors.php:77 ../../include/channel.php:1747 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1721 +#: ../../include/selectors.php:77 ../../include/channel.php:1745 msgid "Female" msgstr "Mujer" @@ -927,9 +925,9 @@ msgstr "Nombre completo" #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 #: ../../addon/redred/Mod_Redred.php:71 ../../addon/rtof/Mod_Rtof.php:57 -#: ../../include/network.php:1764 ../../Zotlabs/Module/Cdav.php:1376 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../include/network.php:1768 ../../Zotlabs/Module/Cdav.php:1377 +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +#: ../../Zotlabs/Module/Admin/Accounts.php:330 #: ../../Zotlabs/Module/Profiles.php:789 ../../Zotlabs/Module/Connedit.php:920 msgid "Email" msgstr "Correo electrónico" @@ -1149,7 +1147,7 @@ msgstr "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refiere msgid "Channel is required." msgstr "Se requiere un canal." -#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:322 +#: ../../addon/redred/Mod_Redred.php:29 ../../Zotlabs/Module/Network.php:326 msgid "Invalid channel." msgstr "El canal no es válido." @@ -1207,7 +1205,7 @@ msgstr "Se han importado las fotos" #: ../../include/items.php:441 ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Group.php:99 #: ../../Zotlabs/Module/Like.php:342 ../../Zotlabs/Module/Cloud.php:123 -#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Share.php:72 ../../Zotlabs/Module/Subthread.php:89 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:82 #: ../../Zotlabs/Web/WebServer.php:115 msgid "Permission denied" @@ -1253,10 +1251,10 @@ msgid "0 or blank to import all available" msgstr "0 o en blanco para importar todos los disponibles" #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../include/text.php:2253 ../../include/conversation.php:128 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../include/text.php:2254 ../../include/conversation.php:128 #: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Tagger.php:71 -#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../Zotlabs/Module/Subthread.php:115 ../../Zotlabs/Lib/Activity.php:3264 msgid "photo" msgstr "foto" @@ -1388,7 +1386,7 @@ msgid "Post to GNU social" msgstr "Publicar en GNU social" #: ../../addon/statusnet/statusnet.php:593 -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:420 msgid "Site name" msgstr "Nombre del sitio" @@ -1453,7 +1451,7 @@ msgstr "Publicar en WordPress" #: ../../addon/wppost/wppost.php:173 ../../addon/wppost/Mod_Wppost.php:98 #: ../../addon/dwpost/Mod_Dwpost.php:69 ../../addon/dwpost/dwpost.php:134 -#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:384 +#: ../../addon/ljpost/ljpost.php:134 ../../Zotlabs/Module/Wiki.php:383 msgid "Source" msgstr "Fuente" @@ -1576,16 +1574,16 @@ msgstr "Modificado desde la fecha yyyy-mm-dd" msgid "Until modified date yyyy-mm-dd" msgstr "Modificado hasta la fecha yyyy-mm-dd" -#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1331 +#: ../../addon/hsse/hsse.php:82 ../../include/conversation.php:1332 msgid "Set your location" msgstr "Establecer su ubicación" -#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1332 +#: ../../addon/hsse/hsse.php:83 ../../include/conversation.php:1333 msgid "Clear browser location" msgstr "Eliminar los datos de localización geográfica del navegador" #: ../../addon/hsse/hsse.php:95 ../../addon/mail/Mod_Mail.php:167 -#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1344 +#: ../../addon/mail/Mod_Mail.php:310 ../../include/conversation.php:1345 #: ../../Zotlabs/Module/Article_edit.php:100 #: ../../Zotlabs/Module/Card_edit.php:101 #: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:220 @@ -1593,129 +1591,129 @@ msgstr "Eliminar los datos de localización geográfica del navegador" msgid "Insert web link" msgstr "Insertar enlace web" -#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1348 +#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1349 msgid "Embed (existing) photo from your photo albums" msgstr "Insertar una foto de sus álbumes" #: ../../addon/hsse/hsse.php:134 ../../addon/mail/Mod_Mail.php:120 -#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1383 +#: ../../addon/mail/Mod_Mail.php:241 ../../include/conversation.php:1382 #: ../../Zotlabs/Module/Chat.php:218 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1384 +#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1383 msgid "Tag term:" msgstr "Término de la etiqueta:" -#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1385 +#: ../../addon/hsse/hsse.php:136 ../../include/conversation.php:1384 msgid "Where are you right now?" msgstr "¿Donde está ahora?" -#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1388 +#: ../../addon/hsse/hsse.php:139 ../../include/conversation.php:1387 #: ../../Zotlabs/Module/Profile_photo.php:509 -#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:403 +#: ../../Zotlabs/Module/Cover_photo.php:430 ../../Zotlabs/Module/Wiki.php:402 msgid "Choose images to embed" msgstr "Elegir imágenes para incluir" -#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1389 +#: ../../addon/hsse/hsse.php:140 ../../include/conversation.php:1388 #: ../../Zotlabs/Module/Profile_photo.php:510 -#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Cover_photo.php:431 ../../Zotlabs/Module/Wiki.php:403 msgid "Choose an album" msgstr "Elegir un álbum" -#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1390 +#: ../../addon/hsse/hsse.php:141 ../../include/conversation.php:1389 msgid "Choose a different album..." msgstr "Elegir un álbum diferente..." -#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1391 +#: ../../addon/hsse/hsse.php:142 ../../include/conversation.php:1390 #: ../../Zotlabs/Module/Profile_photo.php:512 -#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:406 +#: ../../Zotlabs/Module/Cover_photo.php:433 ../../Zotlabs/Module/Wiki.php:405 msgid "Error getting album list" msgstr "Error al obtener la lista de álbumes" -#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1392 +#: ../../addon/hsse/hsse.php:143 ../../include/conversation.php:1391 #: ../../Zotlabs/Module/Profile_photo.php:513 -#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:407 +#: ../../Zotlabs/Module/Cover_photo.php:434 ../../Zotlabs/Module/Wiki.php:406 msgid "Error getting photo link" msgstr "Error al obtener el enlace de la foto" -#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1393 +#: ../../addon/hsse/hsse.php:144 ../../include/conversation.php:1392 #: ../../Zotlabs/Module/Profile_photo.php:514 -#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:408 +#: ../../Zotlabs/Module/Cover_photo.php:435 ../../Zotlabs/Module/Wiki.php:407 msgid "Error getting album" msgstr "Error al obtener el álbum" -#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1394 +#: ../../addon/hsse/hsse.php:145 ../../include/conversation.php:1393 msgid "Comments enabled" msgstr "Comentarios habilitados" -#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1395 +#: ../../addon/hsse/hsse.php:146 ../../include/conversation.php:1394 msgid "Comments disabled" msgstr "Comentarios deshabilitados" -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1405 +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1404 #: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Events.php:486 #: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:837 msgid "Preview" msgstr "Previsualizar" -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1438 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1437 #: ../../Zotlabs/Widget/Cdav.php:136 ../../Zotlabs/Module/Webpages.php:256 #: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Layouts.php:194 msgid "Share" msgstr "Compartir" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1447 +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1446 msgid "Page link name" msgstr "Nombre del enlace de la página" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1450 +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1449 msgid "Post as" msgstr "Publicar como" -#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1452 +#: ../../addon/hsse/hsse.php:200 ../../include/conversation.php:1451 #: ../../Zotlabs/Lib/ThreadItem.php:828 msgid "Bold" msgstr "Negrita" -#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1453 +#: ../../addon/hsse/hsse.php:201 ../../include/conversation.php:1452 #: ../../Zotlabs/Lib/ThreadItem.php:829 msgid "Italic" msgstr "Itálico " -#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1454 +#: ../../addon/hsse/hsse.php:202 ../../include/conversation.php:1453 #: ../../Zotlabs/Lib/ThreadItem.php:830 msgid "Underline" msgstr "Subrayar" -#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1455 +#: ../../addon/hsse/hsse.php:203 ../../include/conversation.php:1454 #: ../../Zotlabs/Lib/ThreadItem.php:831 msgid "Quote" msgstr "Citar" -#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1456 +#: ../../addon/hsse/hsse.php:204 ../../include/conversation.php:1455 #: ../../Zotlabs/Lib/ThreadItem.php:832 msgid "Code" msgstr "Código" -#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1457 +#: ../../addon/hsse/hsse.php:205 ../../include/conversation.php:1456 #: ../../Zotlabs/Lib/ThreadItem.php:834 msgid "Attach/Upload file" msgstr "Adjuntar/cargar fichero" -#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1460 -#: ../../Zotlabs/Module/Wiki.php:400 +#: ../../addon/hsse/hsse.php:208 ../../include/conversation.php:1459 +#: ../../Zotlabs/Module/Wiki.php:399 msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" #: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1461 ../../include/conversation.php:1516 +#: ../../include/conversation.php:1460 ../../include/conversation.php:1515 #: ../../Zotlabs/Module/Article_edit.php:131 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 #: ../../Zotlabs/Module/Card_edit.php:132 ../../Zotlabs/Module/Oauth.php:112 #: ../../Zotlabs/Module/Oauth.php:138 ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Cdav.php:1058 ../../Zotlabs/Module/Cdav.php:1390 +#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1391 #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 #: ../../Zotlabs/Module/Editpost.php:111 #: ../../Zotlabs/Module/Admin/Addons.php:427 @@ -1724,32 +1722,32 @@ msgstr "Incluir una imagen de sus álbumes" #: ../../Zotlabs/Module/Editlayout.php:140 #: ../../Zotlabs/Module/Cover_photo.php:428 #: ../../Zotlabs/Module/Profiles.php:803 ../../Zotlabs/Module/Oauth2.php:117 -#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:368 -#: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Oauth2.php:145 ../../Zotlabs/Module/Wiki.php:367 +#: ../../Zotlabs/Module/Wiki.php:400 ../../Zotlabs/Module/Connedit.php:934 #: ../../Zotlabs/Storage/Browser.php:383 msgid "Cancel" msgstr "Cancelar" #: ../../addon/hsse/hsse.php:210 ../../addon/hsse/hsse.php:257 -#: ../../include/conversation.php:1462 ../../include/conversation.php:1515 +#: ../../include/conversation.php:1461 ../../include/conversation.php:1514 #: ../../Zotlabs/Module/Profile_photo.php:508 -#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:402 +#: ../../Zotlabs/Module/Cover_photo.php:429 ../../Zotlabs/Module/Wiki.php:401 msgid "OK" msgstr "OK" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1464 +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1463 msgid "Toggle voting" msgstr "Cambiar votación" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1471 +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1470 msgid "Disable comments" msgstr "Dehabilitar los comentarios" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1472 +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1471 msgid "Toggle comments" msgstr "Activar o desactivar los comentarios" -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1478 +#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1477 #: ../../Zotlabs/Module/Article_edit.php:117 #: ../../Zotlabs/Module/Card_edit.php:118 #: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:674 @@ -1757,30 +1755,30 @@ msgstr "Activar o desactivar los comentarios" msgid "Title (optional)" msgstr "Título (opcional)" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1482 +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1481 msgid "Categories (optional, comma-separated list)" msgstr "Temas (opcional, lista separada por comas)" -#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1483 +#: ../../addon/hsse/hsse.php:225 ../../include/conversation.php:1482 #: ../../Zotlabs/Module/Events.php:487 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1505 +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1504 msgid "Other networks and post services" msgstr "Otras redes y servicios de publicación" #: ../../addon/hsse/hsse.php:250 ../../addon/mail/Mod_Mail.php:171 -#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1508 +#: ../../addon/mail/Mod_Mail.php:314 ../../include/conversation.php:1507 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1511 +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1510 msgid "Set publish date" msgstr "Establecer la fecha de publicación" #: ../../addon/hsse/hsse.php:255 ../../addon/mail/Mod_Mail.php:173 -#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1513 +#: ../../addon/mail/Mod_Mail.php:316 ../../include/conversation.php:1512 #: ../../Zotlabs/Module/Chat.php:219 ../../Zotlabs/Lib/ThreadItem.php:841 msgid "Encrypt text" msgstr "Cifrar texto" @@ -1896,37 +1894,37 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/pubcrawl/as.php:1183 ../../include/cdav.php:158 +#: ../../addon/pubcrawl/as.php:1189 ../../include/cdav.php:158 #: ../../include/cdav.php:159 ../../include/cdav.php:167 #: ../../include/conversation.php:1214 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Pinned.php:270 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Pinned.php:268 ../../Zotlabs/Widget/Portfolio.php:95 #: ../../Zotlabs/Module/Embedphotos.php:177 #: ../../Zotlabs/Module/Photos.php:793 ../../Zotlabs/Module/Photos.php:1255 -#: ../../Zotlabs/Lib/Activity.php:1529 ../../Zotlabs/Lib/Apps.php:1112 +#: ../../Zotlabs/Lib/Activity.php:1552 ../../Zotlabs/Lib/Apps.php:1112 #: ../../Zotlabs/Lib/Apps.php:1196 msgid "Unknown" msgstr "Desconocido" -#: ../../addon/pubcrawl/as.php:1475 ../../addon/pubcrawl/as.php:1887 -#: ../../addon/pubcrawl/as.php:2095 ../../include/network.php:1763 -#: ../../Zotlabs/Lib/Activity.php:3079 ../../Zotlabs/Lib/Activity.php:3271 +#: ../../addon/pubcrawl/as.php:1490 ../../addon/pubcrawl/as.php:1939 +#: ../../addon/pubcrawl/as.php:2147 ../../include/network.php:1767 +#: ../../Zotlabs/Lib/Activity.php:3114 ../../Zotlabs/Lib/Activity.php:3306 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/as.php:2049 ../../addon/diaspora/Receiver.php:1641 -#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:112 +#: ../../addon/pubcrawl/as.php:2101 ../../addon/diaspora/Receiver.php:1649 +#: ../../Zotlabs/Module/Like.php:439 ../../Zotlabs/Module/Subthread.php:115 msgid "status" msgstr "el mensaje de estado " -#: ../../addon/pubcrawl/as.php:2086 ../../addon/diaspora/Receiver.php:1587 +#: ../../addon/pubcrawl/as.php:2138 ../../addon/diaspora/Receiver.php:1595 #: ../../include/conversation.php:174 ../../Zotlabs/Module/Like.php:471 -#: ../../Zotlabs/Lib/Activity.php:3262 +#: ../../Zotlabs/Lib/Activity.php:3297 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../addon/pubcrawl/as.php:2088 ../../include/conversation.php:177 -#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3264 +#: ../../addon/pubcrawl/as.php:2140 ../../include/conversation.php:177 +#: ../../Zotlabs/Module/Like.php:473 ../../Zotlabs/Lib/Activity.php:3299 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" @@ -2219,12 +2217,12 @@ msgstr "Reunámonos aquí" #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Oauth.php:113 #: ../../Zotlabs/Module/Oauth.php:139 ../../Zotlabs/Module/Chat.php:257 -#: ../../Zotlabs/Module/Cdav.php:1372 +#: ../../Zotlabs/Module/Cdav.php:1373 #: ../../Zotlabs/Module/Sharedwithme.php:106 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Lib/NativeWikiPage.php:563 +#: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Lib/NativeWikiPage.php:576 #: ../../Zotlabs/Storage/Browser.php:377 msgid "Name" msgstr "Nombre" @@ -2232,7 +2230,7 @@ msgstr "Nombre" #: ../../addon/rendezvous/rendezvous.php:173 #: ../../addon/cart/submodules/hzservices.php:655 #: ../../addon/cart/submodules/manualcat.php:260 -#: ../../Zotlabs/Module/Cdav.php:1014 ../../Zotlabs/Module/Events.php:481 +#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:481 #: ../../Zotlabs/Module/Appman.php:145 ../../Zotlabs/Module/Rbmark.php:101 msgid "Description" msgstr "Descripción" @@ -2313,7 +2311,7 @@ msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!" #: ../../addon/rendezvous/rendezvous.php:401 -#: ../../Zotlabs/Module/Setup.php:718 +#: ../../Zotlabs/Module/Setup.php:720 msgid "Errors encountered creating database tables." msgstr "Se han encontrado errores al crear las tablas de la base de datos." @@ -2373,10 +2371,11 @@ msgid "To:" msgstr "Para:" #: ../../addon/mail/Mod_Mail.php:161 ../../addon/mail/Mod_Mail.php:303 +#: ../../Zotlabs/Module/Invite.php:542 msgid "Subject:" msgstr "Asunto:" -#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:157 +#: ../../addon/mail/Mod_Mail.php:164 ../../Zotlabs/Module/Invite.php:539 msgid "Your message:" msgstr "Su mensaje:" @@ -2848,7 +2847,8 @@ msgstr "Etiqueta" #: ../../addon/cart/submodules/orderoptions.php:358 #: ../../addon/cart/submodules/orderoptions.php:434 #: ../../addon/cart/submodules/orderoptions.php:458 -#: ../../include/datetime.php:211 ../../Zotlabs/Module/Events.php:468 +#: ../../include/js_strings.php:123 ../../include/datetime.php:211 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Events.php:468 #: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Appman.php:143 #: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Profiles.php:747 #: ../../Zotlabs/Module/Profiles.php:751 @@ -3086,7 +3086,7 @@ msgid "Unable to create a unique channel address. Import failed." msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." #: ../../addon/diaspora/import_diaspora.php:142 -#: ../../Zotlabs/Module/Import.php:594 +#: ../../Zotlabs/Module/Import.php:595 msgid "Import completed." msgstr "Importación completada." @@ -3109,6 +3109,12 @@ msgstr "App Protocolo Diaspora" msgid "Allow any Diaspora member to comment or like your public posts" msgstr "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas" +#: ../../addon/diaspora/Mod_Diaspora.php:77 +msgid "" +"If this setting is disabled only your contacts will be able to comment or " +"like your public posts" +msgstr "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas" + #: ../../addon/diaspora/Mod_Diaspora.php:81 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " @@ -3126,22 +3132,22 @@ msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" msgid "Diaspora Protocol" msgstr "Protocolo Diaspora" -#: ../../addon/diaspora/Receiver.php:1591 +#: ../../addon/diaspora/Receiver.php:1599 #, php-format msgid "%1$s dislikes %2$s's %3$s" msgstr "a %1$s no le gusta el %3$s de %2$s" -#: ../../addon/diaspora/Receiver.php:2218 ../../Zotlabs/Module/Like.php:481 +#: ../../addon/diaspora/Receiver.php:2226 ../../Zotlabs/Module/Like.php:481 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../addon/diaspora/Receiver.php:2220 ../../Zotlabs/Module/Like.php:483 +#: ../../addon/diaspora/Receiver.php:2228 ../../Zotlabs/Module/Like.php:483 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../addon/diaspora/Receiver.php:2222 ../../Zotlabs/Module/Like.php:485 +#: ../../addon/diaspora/Receiver.php:2230 ../../Zotlabs/Module/Like.php:485 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" @@ -3230,7 +3236,7 @@ msgid "Web link." msgstr "Enlace Web." #: ../../addon/workflow/workflow.php:2617 -#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1374 +#: ../../addon/workflow/workflow.php:2678 ../../Zotlabs/Module/Cdav.php:1375 #: ../../Zotlabs/Module/Connedit.php:918 msgid "Title" msgstr "Título" @@ -3363,7 +3369,9 @@ msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../addon/opensearch/opensearch.php:42 ../../Zotlabs/Module/Home.php:87 +#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Module/Invite.php:225 ../../Zotlabs/Module/Invite.php:494 +#: ../../Zotlabs/Module/Invite.php:508 ../../Zotlabs/Module/Home.php:87 #: ../../Zotlabs/Module/Home.php:95 ../../Zotlabs/Lib/Enotify.php:66 msgid "$Projectname" msgstr "$Projectname" @@ -3436,7 +3444,7 @@ msgid "New registration" msgstr "Nuevo registro" #: ../../addon/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:90 +#: ../../Zotlabs/Module/Invite.php:252 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." @@ -3451,7 +3459,7 @@ msgid "Not allowed." msgstr "No permitido/a." #: ../../addon/flashcards/Mod_Flashcards.php:254 -#: ../../include/acl_selectors.php:153 ../../Zotlabs/Module/Chat.php:241 +#: ../../include/acl_selectors.php:154 ../../Zotlabs/Module/Chat.php:241 #: ../../Zotlabs/Module/Filestorage.php:195 #: ../../Zotlabs/Module/Photos.php:678 ../../Zotlabs/Module/Photos.php:1047 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 @@ -3465,12 +3473,12 @@ msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" #: ../../addon/flashcards/Mod_Flashcards.php:284 -#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:3924 +#: ../../addon/flashcards/Mod_Flashcards.php:285 ../../include/items.php:4010 #: ../../Zotlabs/Module/Filestorage.php:29 #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:260 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:42 -#: ../../Zotlabs/Module/Display.php:432 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Display.php:424 ../../Zotlabs/Module/Admin.php:62 #: ../../Zotlabs/Module/Thing.php:96 msgid "Item not found." msgstr "Elemento no encontrado." @@ -3933,10 +3941,10 @@ msgstr "Publicar en Livejournal" msgid "Posted by" msgstr "Publicado por " -#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2117 +#: ../../addon/mdpost/mdpost.php:41 ../../include/text.php:2118 #: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "Markdown" msgstr "Markdown" @@ -4057,11 +4065,11 @@ msgstr "Ajustes de XMPP" msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:656 +#: ../../include/zot.php:805 ../../Zotlabs/Lib/Libzot.php:655 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:737 +#: ../../include/zot.php:2663 ../../Zotlabs/Lib/Libsync.php:740 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" @@ -4094,278 +4102,278 @@ msgstr "más antiguas" msgid "newer" msgstr "más recientes" -#: ../../include/text.php:1025 +#: ../../include/text.php:1018 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:1037 ../../include/features.php:133 +#: ../../include/text.php:1030 ../../include/features.php:133 #: ../../Zotlabs/Module/Connections.php:375 ../../Zotlabs/Lib/Apps.php:333 msgid "Connections" msgstr "Conexiones" -#: ../../include/text.php:1045 ../../Zotlabs/Module/Viewconnections.php:80 +#: ../../include/text.php:1038 ../../Zotlabs/Module/Viewconnections.php:80 #: ../../Zotlabs/Module/Connections.php:289 msgid "Accepts" msgstr "Se acepta" -#: ../../include/text.php:1048 ../../Zotlabs/Module/Viewconnections.php:83 +#: ../../include/text.php:1041 ../../Zotlabs/Module/Viewconnections.php:83 #: ../../Zotlabs/Module/Connections.php:292 msgid "Comments" msgstr "Comentarios" -#: ../../include/text.php:1053 ../../Zotlabs/Module/Viewconnections.php:88 +#: ../../include/text.php:1046 ../../Zotlabs/Module/Viewconnections.php:88 #: ../../Zotlabs/Module/Connections.php:297 msgid "Stream items" msgstr "Elementos del stream" -#: ../../include/text.php:1058 ../../Zotlabs/Module/Viewconnections.php:93 +#: ../../include/text.php:1051 ../../Zotlabs/Module/Viewconnections.php:93 #: ../../Zotlabs/Module/Connections.php:302 msgid "Wall posts" msgstr "Entradas del Muro" -#: ../../include/text.php:1062 ../../Zotlabs/Module/Viewconnections.php:97 +#: ../../include/text.php:1055 ../../Zotlabs/Module/Viewconnections.php:97 #: ../../Zotlabs/Module/Connections.php:306 msgid "Nothing" msgstr "Nada" -#: ../../include/text.php:1077 +#: ../../include/text.php:1070 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1140 +#: ../../include/text.php:1133 #, php-format msgid "Network: %s" msgstr "Red %s" -#: ../../include/text.php:1151 ../../include/text.php:1163 -#: ../../include/nav.php:194 ../../include/acl_selectors.php:148 +#: ../../include/text.php:1144 ../../include/text.php:1156 +#: ../../include/nav.php:194 ../../include/acl_selectors.php:149 #: ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:193 -#: ../../Zotlabs/Module/Search.php:46 ../../Zotlabs/Module/Connections.php:379 +#: ../../Zotlabs/Widget/Activity_filter.php:203 +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Module/Connections.php:379 #: ../../Zotlabs/Lib/Apps.php:353 msgid "Search" msgstr "Buscar" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1243 ../../include/text.php:1247 +#: ../../include/text.php:1236 ../../include/text.php:1240 #: ../../include/conversation.php:267 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1248 +#: ../../include/text.php:1241 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1249 +#: ../../include/text.php:1242 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1250 +#: ../../include/text.php:1243 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1251 +#: ../../include/text.php:1244 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1252 +#: ../../include/text.php:1245 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1275 +#: ../../include/text.php:1268 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1276 +#: ../../include/text.php:1269 msgid "sad" msgstr "triste " -#: ../../include/text.php:1277 +#: ../../include/text.php:1270 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1278 +#: ../../include/text.php:1271 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1279 +#: ../../include/text.php:1272 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1280 +#: ../../include/text.php:1273 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1281 +#: ../../include/text.php:1274 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1282 +#: ../../include/text.php:1275 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1283 +#: ../../include/text.php:1276 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1284 +#: ../../include/text.php:1277 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1285 +#: ../../include/text.php:1278 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1286 +#: ../../include/text.php:1279 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1287 +#: ../../include/text.php:1280 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1288 +#: ../../include/text.php:1281 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1289 +#: ../../include/text.php:1282 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1290 +#: ../../include/text.php:1283 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1291 +#: ../../include/text.php:1284 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1292 +#: ../../include/text.php:1285 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1293 +#: ../../include/text.php:1286 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1294 +#: ../../include/text.php:1287 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1295 +#: ../../include/text.php:1288 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1483 ../../include/js_strings.php:99 +#: ../../include/text.php:1476 ../../include/js_strings.php:99 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1483 ../../include/js_strings.php:100 +#: ../../include/text.php:1476 ../../include/js_strings.php:100 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1483 ../../include/js_strings.php:101 +#: ../../include/text.php:1476 ../../include/js_strings.php:101 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1483 ../../include/js_strings.php:102 +#: ../../include/text.php:1476 ../../include/js_strings.php:102 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1483 ../../include/js_strings.php:103 +#: ../../include/text.php:1476 ../../include/js_strings.php:103 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1483 ../../include/js_strings.php:104 +#: ../../include/text.php:1476 ../../include/js_strings.php:104 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1483 ../../include/js_strings.php:98 +#: ../../include/text.php:1476 ../../include/js_strings.php:98 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1487 ../../include/js_strings.php:74 +#: ../../include/text.php:1480 ../../include/js_strings.php:74 msgid "January" msgstr "enero" -#: ../../include/text.php:1487 ../../include/js_strings.php:75 +#: ../../include/text.php:1480 ../../include/js_strings.php:75 msgid "February" msgstr "febrero" -#: ../../include/text.php:1487 ../../include/js_strings.php:76 +#: ../../include/text.php:1480 ../../include/js_strings.php:76 msgid "March" msgstr "marzo" -#: ../../include/text.php:1487 ../../include/js_strings.php:77 +#: ../../include/text.php:1480 ../../include/js_strings.php:77 msgid "April" msgstr "abril" -#: ../../include/text.php:1487 +#: ../../include/text.php:1480 msgid "May" msgstr "mayo" -#: ../../include/text.php:1487 ../../include/js_strings.php:79 +#: ../../include/text.php:1480 ../../include/js_strings.php:79 msgid "June" msgstr "junio" -#: ../../include/text.php:1487 ../../include/js_strings.php:80 +#: ../../include/text.php:1480 ../../include/js_strings.php:80 msgid "July" msgstr "julio" -#: ../../include/text.php:1487 ../../include/js_strings.php:81 +#: ../../include/text.php:1480 ../../include/js_strings.php:81 msgid "August" msgstr "agosto" -#: ../../include/text.php:1487 ../../include/js_strings.php:82 +#: ../../include/text.php:1480 ../../include/js_strings.php:82 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:83 +#: ../../include/text.php:1480 ../../include/js_strings.php:83 msgid "October" msgstr "octubre" -#: ../../include/text.php:1487 ../../include/js_strings.php:84 +#: ../../include/text.php:1480 ../../include/js_strings.php:84 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1487 ../../include/js_strings.php:85 +#: ../../include/text.php:1480 ../../include/js_strings.php:85 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1561 +#: ../../include/text.php:1556 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1563 ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../include/text.php:1558 ../../Zotlabs/Module/Sharedwithme.php:108 #: ../../Zotlabs/Storage/Browser.php:379 msgid "Size" msgstr "Tamaño" -#: ../../include/text.php:1563 ../../include/feedutils.php:873 +#: ../../include/text.php:1558 ../../include/feedutils.php:872 msgid "unknown" msgstr "desconocido" @@ -4373,71 +4381,71 @@ msgstr "desconocido" msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1675 +#: ../../include/text.php:1676 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1844 ../../include/message.php:13 +#: ../../include/text.php:1845 ../../include/message.php:13 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1915 +#: ../../include/text.php:1916 msgid "Poll has ended." msgstr "La encuesta ha terminado" -#: ../../include/text.php:1918 +#: ../../include/text.php:1919 #, php-format msgid "Poll ends: %s" msgstr "Finales de la encuesta: %s" -#: ../../include/text.php:1923 ../../Zotlabs/Lib/ThreadItem.php:446 +#: ../../include/text.php:1924 ../../Zotlabs/Lib/ThreadItem.php:446 msgid "Vote" msgstr "Votar" -#: ../../include/text.php:2075 ../../Zotlabs/Module/Events.php:669 +#: ../../include/text.php:2076 ../../Zotlabs/Module/Events.php:669 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" -#: ../../include/text.php:2097 ../../include/language.php:424 +#: ../../include/text.php:2098 ../../include/language.php:428 msgid "default" msgstr "por defecto" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:2105 +#: ../../include/text.php:2106 msgid "You can create your own with the layouts tool" msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/text.php:2115 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 -#: ../../Zotlabs/Module/Wiki.php:371 +#: ../../include/text.php:2116 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:370 msgid "BBcode" msgstr "BBcode" -#: ../../include/text.php:2116 +#: ../../include/text.php:2117 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:2118 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:217 +#: ../../include/text.php:2119 ../../Zotlabs/Widget/Wiki_pages.php:38 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:216 msgid "Text" msgstr "Texto" -#: ../../include/text.php:2119 +#: ../../include/text.php:2120 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:2124 +#: ../../include/text.php:2125 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:2133 +#: ../../include/text.php:2134 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:2256 ../../include/event.php:1259 +#: ../../include/text.php:2257 ../../include/event.php:1259 #: ../../include/conversation.php:132 #: ../../Zotlabs/Module/Channel_calendar.php:221 #: ../../Zotlabs/Module/Like.php:441 ../../Zotlabs/Module/Tagger.php:75 @@ -4445,110 +4453,110 @@ msgstr "Tipo de contenido de la página" msgid "event" msgstr "el/su evento" -#: ../../include/text.php:2259 ../../include/conversation.php:158 -#: ../../include/bbcode.php:543 ../../include/markdown.php:204 -#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3229 +#: ../../include/text.php:2260 ../../include/conversation.php:158 +#: ../../include/bbcode.php:555 ../../include/markdown.php:204 +#: ../../Zotlabs/Module/Tagger.php:79 ../../Zotlabs/Lib/Activity.php:3264 msgid "post" msgstr "la entrada" -#: ../../include/text.php:2261 ../../include/conversation.php:160 +#: ../../include/text.php:2262 ../../include/conversation.php:160 #: ../../Zotlabs/Module/Tagger.php:81 msgid "comment" msgstr "el comentario" -#: ../../include/text.php:2266 +#: ../../include/text.php:2267 msgid "activity" msgstr "la/su actividad" -#: ../../include/text.php:2269 +#: ../../include/text.php:2270 msgid "poll" msgstr "encuesta" -#: ../../include/text.php:2370 +#: ../../include/text.php:2383 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2696 +#: ../../include/text.php:2709 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2699 ../../Zotlabs/Module/Blocks.php:154 +#: ../../include/text.php:2712 ../../Zotlabs/Module/Blocks.php:154 msgid "Blocks" msgstr "Bloques" -#: ../../include/text.php:2700 ../../Zotlabs/Module/Menu.php:171 +#: ../../include/text.php:2713 ../../Zotlabs/Module/Menu.php:171 msgid "Menus" msgstr "Menús" -#: ../../include/text.php:2701 ../../Zotlabs/Module/Layouts.php:184 +#: ../../include/text.php:2714 ../../Zotlabs/Module/Layouts.php:184 msgid "Layouts" msgstr "Plantillas" -#: ../../include/text.php:2702 +#: ../../include/text.php:2715 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2714 +#: ../../include/text.php:2727 msgid "Import" msgstr "Importar" -#: ../../include/text.php:2715 +#: ../../include/text.php:2728 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2716 +#: ../../include/text.php:2729 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2717 +#: ../../include/text.php:2730 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2718 +#: ../../include/text.php:2731 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2719 +#: ../../include/text.php:2732 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2720 +#: ../../include/text.php:2733 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2721 +#: ../../include/text.php:2734 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2722 +#: ../../include/text.php:2735 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2723 +#: ../../include/text.php:2736 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2724 +#: ../../include/text.php:2737 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2725 +#: ../../include/text.php:2738 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2726 +#: ../../include/text.php:2739 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2727 +#: ../../include/text.php:2740 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2728 +#: ../../include/text.php:2741 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2729 +#: ../../include/text.php:2742 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -4570,7 +4578,7 @@ msgid "Finishes:" msgstr "Finaliza:" #: ../../include/event.php:63 ../../include/event.php:134 -#: ../../include/channel.php:1634 ../../Zotlabs/Module/Directory.php:354 +#: ../../include/channel.php:1658 ../../Zotlabs/Module/Directory.php:354 msgid "Location:" msgstr "Ubicación:" @@ -4611,13 +4619,13 @@ msgid "Cancelled" msgstr "Cancelado/a" #: ../../include/event.php:1422 ../../include/connections.php:734 -#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:794 +#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:794 #: ../../Zotlabs/Module/Connedit.php:925 msgid "Mobile" msgstr "Móvil" #: ../../include/event.php:1423 ../../include/connections.php:735 -#: ../../Zotlabs/Module/Cdav.php:1382 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:795 #: ../../Zotlabs/Module/Connedit.php:926 msgid "Home" msgstr "Inicio" @@ -4631,7 +4639,7 @@ msgid "Home, Fax" msgstr "Fax particular" #: ../../include/event.php:1426 ../../include/connections.php:738 -#: ../../Zotlabs/Module/Cdav.php:1383 ../../Zotlabs/Module/Profiles.php:796 +#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:796 #: ../../Zotlabs/Module/Connedit.php:927 msgid "Work" msgstr "Trabajo" @@ -4648,7 +4656,7 @@ msgstr "Fax de trabajo" #: ../../include/selectors.php:60 ../../include/selectors.php:77 #: ../../include/selectors.php:115 ../../include/selectors.php:151 #: ../../include/connections.php:741 ../../include/connections.php:748 -#: ../../Zotlabs/Module/Cdav.php:1384 ../../Zotlabs/Module/Profiles.php:797 +#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:797 #: ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Access/PermissionRoles.php:310 msgid "Other" @@ -4666,8 +4674,8 @@ msgstr "Desactivado" msgid "On" msgstr "Activado" -#: ../../include/features.php:82 ../../include/nav.php:464 -#: ../../include/nav.php:467 ../../Zotlabs/Lib/Apps.php:346 +#: ../../include/features.php:82 ../../include/nav.php:463 +#: ../../include/nav.php:466 ../../Zotlabs/Lib/Apps.php:346 msgid "Calendar" msgstr "Calendario" @@ -4707,11 +4715,11 @@ msgstr "Nube de etiquetas" msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/features.php:124 ../../include/features.php:359 +#: ../../include/features.php:124 ../../include/features.php:358 msgid "Use blog/list mode" msgstr "Usar el modo blog/lista" -#: ../../include/features.php:125 ../../include/features.php:360 +#: ../../include/features.php:125 ../../include/features.php:359 msgid "Comments will be displayed separately" msgstr "Los comentarios se mostrarán por separado" @@ -4783,195 +4791,195 @@ msgstr "Temas de las entradas" msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:219 +#: ../../include/features.php:218 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:220 +#: ../../include/features.php:219 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../include/features.php:227 +#: ../../include/features.php:226 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:228 +#: ../../include/features.php:227 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../include/features.php:235 +#: ../../include/features.php:234 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:236 +#: ../../include/features.php:235 msgid "Provide the option to disable comments for a post" msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" -#: ../../include/features.php:243 +#: ../../include/features.php:242 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:244 +#: ../../include/features.php:243 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:251 +#: ../../include/features.php:250 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:252 +#: ../../include/features.php:251 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/features.php:259 +#: ../../include/features.php:258 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:260 +#: ../../include/features.php:259 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../include/features.php:267 +#: ../../include/features.php:266 msgid "Auto-save drafts of posts and comments" msgstr "Guardar automáticamente borradores de entradas y comentarios" -#: ../../include/features.php:268 +#: ../../include/features.php:267 msgid "" "Automatically saves post and comment drafts in local browser storage to help" " prevent accidental loss of compositions" msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." -#: ../../include/features.php:277 +#: ../../include/features.php:276 msgid "Manage" msgstr "Gestionar" -#: ../../include/features.php:281 +#: ../../include/features.php:280 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:282 +#: ../../include/features.php:281 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/features.php:291 ../../Zotlabs/Module/Connections.php:333 +#: ../../include/features.php:290 ../../Zotlabs/Module/Connections.php:333 msgid "Network" msgstr "Red" -#: ../../include/features.php:295 +#: ../../include/features.php:294 msgid "Events Filter" msgstr "Filtro de eventos" -#: ../../include/features.php:296 +#: ../../include/features.php:295 msgid "Ability to display only events" msgstr "Capacidad para mostrar solo eventos" -#: ../../include/features.php:303 +#: ../../include/features.php:302 msgid "Polls Filter" msgstr "Filtro de encuestas" -#: ../../include/features.php:304 +#: ../../include/features.php:303 msgid "Ability to display only polls" msgstr "Capacidad para mostrar solo encuestas" -#: ../../include/features.php:311 ../../Zotlabs/Widget/Savedsearch.php:83 +#: ../../include/features.php:310 ../../Zotlabs/Widget/Savedsearch.php:83 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: ../../include/features.php:312 +#: ../../include/features.php:311 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:319 ../../include/contact_widgets.php:53 -#: ../../Zotlabs/Widget/Activity_filter.php:179 +#: ../../include/features.php:318 ../../include/contact_widgets.php:53 +#: ../../Zotlabs/Widget/Activity_filter.php:189 #: ../../Zotlabs/Widget/Filer.php:28 msgid "Saved Folders" msgstr "Carpetas guardadas" -#: ../../include/features.php:320 +#: ../../include/features.php:319 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:327 +#: ../../include/features.php:326 msgid "Alternate Stream Order" msgstr "Orden de stream alternativo" -#: ../../include/features.php:328 +#: ../../include/features.php:327 msgid "" "Ability to order the stream by last post date, last comment date or " "unthreaded activities" msgstr "Posibilidad de ordenar el stream por última fecha de publicación, última fecha de comentario o actividades sin hilo" -#: ../../include/features.php:335 +#: ../../include/features.php:334 msgid "Contact Filter" msgstr "Filtro de contactos" -#: ../../include/features.php:336 +#: ../../include/features.php:335 msgid "Ability to display only posts of a selected contact" msgstr "Posibilidad de mostrar sólo los mensajes de un contacto seleccionado" -#: ../../include/features.php:343 +#: ../../include/features.php:342 msgid "Forum Filter" msgstr "Filtro de foro" -#: ../../include/features.php:344 +#: ../../include/features.php:343 msgid "Ability to display only posts of a specific forum" msgstr "Posibilidad de mostrar sólo los mensajes de un foro específico" -#: ../../include/features.php:351 +#: ../../include/features.php:350 msgid "Personal Posts Filter" msgstr "Filtro de entradas personales" -#: ../../include/features.php:352 +#: ../../include/features.php:351 msgid "Ability to display only posts that you've interacted on" msgstr "Posibilidad de mostrar sólo los mensajes en los que usted haya interactuado" -#: ../../include/features.php:369 ../../include/nav.php:445 +#: ../../include/features.php:368 ../../include/nav.php:444 #: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:345 msgid "Photos" msgstr "Fotos" -#: ../../include/features.php:373 +#: ../../include/features.php:372 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:374 +#: ../../include/features.php:373 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/features.php:383 ../../Zotlabs/Lib/Apps.php:363 +#: ../../include/features.php:382 ../../Zotlabs/Lib/Apps.php:363 msgid "Profiles" msgstr "Perfiles" -#: ../../include/features.php:387 +#: ../../include/features.php:386 msgid "Advanced Profiles" msgstr "Perfiles avanzados" -#: ../../include/features.php:388 +#: ../../include/features.php:387 msgid "Additional profile sections and selections" msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/features.php:395 +#: ../../include/features.php:394 msgid "Profile Import/Export" msgstr "Importar/Exportar perfil" -#: ../../include/features.php:396 +#: ../../include/features.php:395 msgid "Save and load profile details across sites/channels" msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/features.php:403 +#: ../../include/features.php:402 msgid "Multiple Profiles" msgstr "Múltiples perfiles" -#: ../../include/features.php:404 +#: ../../include/features.php:403 msgid "Ability to create multiple profiles" msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/security.php:608 +#: ../../include/security.php:607 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." @@ -5010,7 +5018,7 @@ msgstr "%s contraer" msgid "Password too short" msgstr "Contraseña demasiado corta" -#: ../../include/js_strings.php:12 +#: ../../include/js_strings.php:12 ../../Zotlabs/Module/Register.php:158 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" @@ -5060,7 +5068,7 @@ msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" #: ../../include/js_strings.php:25 ../../Zotlabs/Module/Pubsites.php:53 -#: ../../Zotlabs/Module/Cdav.php:1015 ../../Zotlabs/Module/Events.php:483 +#: ../../Zotlabs/Module/Cdav.php:1016 ../../Zotlabs/Module/Events.php:483 #: ../../Zotlabs/Module/Profiles.php:511 ../../Zotlabs/Module/Profiles.php:736 #: ../../Zotlabs/Module/Locs.php:128 msgid "Location" @@ -5120,7 +5128,7 @@ msgstr "Anclado/a" msgid "Pin to the top" msgstr "Anclar en la parte superior" -#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:157 +#: ../../include/js_strings.php:39 ../../Zotlabs/Widget/Pinned.php:155 #: ../../Zotlabs/Lib/ThreadItem.php:473 msgid "Unpin from the top" msgstr "Desanclar de la parte superior" @@ -5319,12 +5327,16 @@ msgstr "Todos los días" msgid "Please stand by while your download is being prepared." msgstr "Por favor, espere mientras se prepara la descarga." +#: ../../include/js_strings.php:122 +msgid "Email address not valid" +msgstr "Dirección de correo electrónica no válida" + #: ../../include/help.php:80 msgid "Help:" msgstr "Ayuda:" #: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:180 ../../include/nav.php:321 +#: ../../include/nav.php:180 ../../include/nav.php:320 #: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:348 msgid "Help" msgstr "Ayuda" @@ -5336,7 +5348,7 @@ msgstr "No encontrado" #: ../../include/help.php:132 ../../Zotlabs/Module/Display.php:136 #: ../../Zotlabs/Module/Display.php:153 ../../Zotlabs/Module/Display.php:173 #: ../../Zotlabs/Module/Display.php:179 ../../Zotlabs/Module/Page.php:136 -#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:520 +#: ../../Zotlabs/Module/Block.php:77 ../../Zotlabs/Lib/NativeWikiPage.php:533 #: ../../Zotlabs/Web/Router.php:186 msgid "Page not found." msgstr "Página no encontrada." @@ -5369,7 +5381,7 @@ msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/photos.php:666 ../../include/nav.php:448 +#: ../../include/photos.php:666 ../../include/nav.php:447 msgid "Photo Albums" msgstr "Álbumes de fotos" @@ -5382,43 +5394,43 @@ msgstr "Fotos recientes" msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/network.php:1758 ../../include/network.php:1759 +#: ../../include/network.php:1762 ../../include/network.php:1763 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1760 +#: ../../include/network.php:1764 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1761 +#: ../../include/network.php:1765 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1762 +#: ../../include/network.php:1766 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1765 +#: ../../include/network.php:1769 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1766 +#: ../../include/network.php:1770 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1767 +#: ../../include/network.php:1771 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1768 +#: ../../include/network.php:1772 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1769 +#: ../../include/network.php:1773 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1770 +#: ../../include/network.php:1774 msgid "MySpace" msgstr "MySpace" @@ -5452,8 +5464,8 @@ msgid_plural "%d invitations available" msgstr[0] "%d invitación pendiente" msgstr[1] "%d invitaciones disponibles" -#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:144 -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../include/contact_widgets.php:16 ../../include/acl_selectors.php:145 +#: ../../Zotlabs/Module/Admin/Site.php:416 msgid "Advanced" msgstr "Avanzado" @@ -5508,7 +5520,7 @@ msgstr "Todo" #: ../../include/taxonomy.php:420 ../../include/taxonomy.php:502 #: ../../include/taxonomy.php:522 ../../include/taxonomy.php:543 #: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../Zotlabs/Module/Cdav.php:1070 ../../Zotlabs/Storage/Browser.php:293 +#: ../../Zotlabs/Module/Cdav.php:1071 ../../Zotlabs/Storage/Browser.php:293 #: ../../Zotlabs/Storage/Browser.php:388 ../../Zotlabs/Storage/Browser.php:403 msgid "Categories" msgstr "Temas" @@ -5522,7 +5534,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/language.php:437 +#: ../../include/language.php:441 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" @@ -5556,9 +5568,9 @@ msgstr "Administración de canales" msgid "Manage your channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:104 ../../include/group.php:321 -#: ../../include/acl_selectors.php:86 -#: ../../Zotlabs/Widget/Activity_filter.php:82 +#: ../../include/nav.php:104 ../../include/group.php:327 +#: ../../include/acl_selectors.php:87 +#: ../../Zotlabs/Widget/Activity_filter.php:88 #: ../../Zotlabs/Module/Group.php:142 ../../Zotlabs/Module/Group.php:154 #: ../../Zotlabs/Lib/Group.php:324 ../../Zotlabs/Lib/Apps.php:364 msgid "Privacy Groups" @@ -5580,7 +5592,7 @@ msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" #: ../../include/nav.php:112 ../../include/nav.php:142 -#: ../../include/nav.php:163 ../../boot.php:1710 +#: ../../include/nav.php:163 ../../boot.php:1715 msgid "Logout" msgstr "Finalizar sesión" @@ -5592,7 +5604,7 @@ msgstr "Finalizar esta sesión" msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:118 ../../include/channel.php:1539 +#: ../../include/nav.php:118 ../../include/channel.php:1563 #: ../../Zotlabs/Module/Profiles.php:832 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -5606,7 +5618,7 @@ msgid "Edit your profile" msgstr "Editar su perfil" #: ../../include/nav.php:127 ../../include/nav.php:131 -#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1711 +#: ../../Zotlabs/Lib/Apps.php:336 ../../boot.php:1716 msgid "Login" msgstr "Iniciar sesión" @@ -5622,8 +5634,8 @@ msgstr "Volver a la página principal" msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:293 -#: ../../boot.php:1691 +#: ../../include/nav.php:168 ../../Zotlabs/Module/Register.php:566 +#: ../../boot.php:1696 msgid "Register" msgstr "Registrarse" @@ -5647,104 +5659,104 @@ msgstr "Administrador" msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:325 ../../Zotlabs/Widget/Notifications.php:182 +#: ../../include/nav.php:324 ../../Zotlabs/Widget/Notifications.php:182 #: ../../Zotlabs/Module/New_channel.php:157 #: ../../Zotlabs/Module/New_channel.php:164 #: ../../Zotlabs/Module/Defperms.php:257 ../../Zotlabs/Module/Connedit.php:862 msgid "Loading" msgstr "Cargando" -#: ../../include/nav.php:331 +#: ../../include/nav.php:330 msgid "@name, !forum, #tag, ?doc, content" msgstr "@nombre, !foro, #tag, ?docs, contenido" -#: ../../include/nav.php:332 +#: ../../include/nav.php:331 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:338 +#: ../../include/nav.php:337 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:339 +#: ../../include/nav.php:338 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:340 +#: ../../include/nav.php:339 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" -#: ../../include/nav.php:422 ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/nav.php:421 ../../Zotlabs/Module/Admin/Channels.php:154 msgid "Channel" msgstr "Canal" -#: ../../include/nav.php:425 +#: ../../include/nav.php:424 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/nav.php:435 ../../Zotlabs/Module/Help.php:83 +#: ../../include/nav.php:434 ../../Zotlabs/Module/Help.php:83 msgid "About" msgstr "Mi perfil" -#: ../../include/nav.php:438 +#: ../../include/nav.php:437 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/nav.php:453 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../include/nav.php:452 ../../Zotlabs/Module/Fbrowser.php:85 #: ../../Zotlabs/Lib/Apps.php:340 ../../Zotlabs/Storage/Browser.php:351 msgid "Files" msgstr "Ficheros" -#: ../../include/nav.php:456 +#: ../../include/nav.php:455 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/nav.php:478 ../../include/nav.php:481 +#: ../../include/nav.php:477 ../../include/nav.php:480 #: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../Zotlabs/Lib/Apps.php:330 msgid "Chatrooms" msgstr "Salas de chat" -#: ../../include/nav.php:491 ../../Zotlabs/Lib/Apps.php:329 +#: ../../include/nav.php:490 ../../Zotlabs/Lib/Apps.php:329 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/nav.php:494 +#: ../../include/nav.php:493 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/nav.php:502 ../../Zotlabs/Module/Cards.php:207 +#: ../../include/nav.php:501 ../../Zotlabs/Module/Cards.php:207 #: ../../Zotlabs/Lib/Apps.php:326 msgid "Cards" msgstr "Fichas" -#: ../../include/nav.php:505 +#: ../../include/nav.php:504 msgid "View Cards" msgstr "Ver las fichas" -#: ../../include/nav.php:513 ../../Zotlabs/Module/Articles.php:225 +#: ../../include/nav.php:512 ../../Zotlabs/Module/Articles.php:225 #: ../../Zotlabs/Lib/Apps.php:325 msgid "Articles" msgstr "Artículos" -#: ../../include/nav.php:516 +#: ../../include/nav.php:515 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/nav.php:525 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/nav.php:524 ../../Zotlabs/Module/Webpages.php:252 #: ../../Zotlabs/Lib/Apps.php:341 msgid "Webpages" msgstr "Páginas web" -#: ../../include/nav.php:528 +#: ../../include/nav.php:527 msgid "View Webpages" msgstr "Ver páginas web" -#: ../../include/nav.php:537 ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../Zotlabs/Module/Wiki.php:206 +#: ../../include/nav.php:536 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../Zotlabs/Module/Wiki.php:205 msgid "Wikis" msgstr "Wikis" -#: ../../include/nav.php:540 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/nav.php:539 ../../Zotlabs/Lib/Apps.php:342 msgid "Wiki" msgstr "Wiki" @@ -5781,7 +5793,7 @@ msgstr "Edad:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:238 ../../boot.php:2715 +#: ../../include/datetime.php:238 ../../boot.php:2730 msgid "never" msgstr "nunca" @@ -6002,9 +6014,9 @@ msgstr "Seleccionar" #: ../../include/conversation.php:730 ../../include/conversation.php:777 #: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Card_edit.php:130 ../../Zotlabs/Module/Oauth.php:174 -#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1056 -#: ../../Zotlabs/Module/Cdav.php:1389 ../../Zotlabs/Module/Webpages.php:257 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Editwebpage.php:167 ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1390 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Module/Admin/Accounts.php:320 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:176 #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:139 @@ -6037,7 +6049,7 @@ msgid "Message signature incorrect" msgstr "Firma de mensaje incorrecta" #: ../../include/conversation.php:776 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:318 #: ../../Zotlabs/Module/Connections.php:343 msgid "Approve" msgstr "Aprobar" @@ -6055,19 +6067,19 @@ msgstr "Temas:" msgid "Filed under:" msgstr "Archivado bajo:" -#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:133 +#: ../../include/conversation.php:809 ../../Zotlabs/Widget/Pinned.php:132 #: ../../Zotlabs/Lib/ThreadItem.php:430 #, php-format msgid "from %s" msgstr "desde %s" -#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:136 +#: ../../include/conversation.php:812 ../../Zotlabs/Widget/Pinned.php:135 #: ../../Zotlabs/Lib/ThreadItem.php:433 #, php-format msgid "last edited: %s" msgstr "último cambio: %s" -#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:137 +#: ../../include/conversation.php:813 ../../Zotlabs/Widget/Pinned.php:136 #: ../../Zotlabs/Lib/ThreadItem.php:434 #, php-format msgid "Expires: %s" @@ -6115,7 +6127,7 @@ msgid "Recent Activity" msgstr "Actividad reciente" #: ../../include/conversation.php:1103 ../../include/connections.php:110 -#: ../../include/channel.php:1619 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../include/channel.php:1643 ../../Zotlabs/Widget/Suggestions.php:46 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Directory.php:370 #: ../../Zotlabs/Module/Connections.php:350 #: ../../Zotlabs/Module/Suggest.php:71 @@ -6127,6 +6139,7 @@ msgid "Edit Connection" msgstr "Editar conexión" #: ../../include/conversation.php:1123 +#: ../../Zotlabs/Module/Admin/Accounts.php:347 msgid "Message" msgstr "Mensaje" @@ -6185,40 +6198,40 @@ msgstr "A %s le gusta esto." msgid "%s don't like this." msgstr "A %s no le gusta esto." -#: ../../include/conversation.php:1465 +#: ../../include/conversation.php:1464 msgid "Toggle poll" msgstr "Activar o desactivar encuestas" -#: ../../include/conversation.php:1466 +#: ../../include/conversation.php:1465 msgid "Option" msgstr "Opción" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1466 msgid "Add option" msgstr "Añadir una opción" -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Minutes" msgstr "Minutos " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Hours" msgstr "Horas " -#: ../../include/conversation.php:1468 +#: ../../include/conversation.php:1467 msgid "Days" msgstr "Días " -#: ../../include/conversation.php:1469 +#: ../../include/conversation.php:1468 msgid "Allow multiple answers" msgstr "Permitir respuestas múltiples" -#: ../../include/conversation.php:1479 +#: ../../include/conversation.php:1478 msgid "Summary (optional)" msgstr "Sumario (opcional)" -#: ../../include/conversation.php:1753 ../../include/taxonomy.php:670 -#: ../../include/channel.php:1782 ../../Zotlabs/Module/Photos.php:1136 +#: ../../include/conversation.php:1752 ../../include/taxonomy.php:670 +#: ../../include/channel.php:1806 ../../Zotlabs/Module/Photos.php:1136 #: ../../Zotlabs/Lib/ThreadItem.php:243 msgctxt "noun" msgid "Like" @@ -6226,7 +6239,7 @@ msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../include/conversation.php:1756 ../../Zotlabs/Module/Photos.php:1141 +#: ../../include/conversation.php:1755 ../../Zotlabs/Module/Photos.php:1141 #: ../../Zotlabs/Lib/ThreadItem.php:248 msgctxt "noun" msgid "Dislike" @@ -6234,42 +6247,42 @@ msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1758 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Participaré" msgstr[1] "Participaré" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1761 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "No participaré" msgstr[1] "No participaré" -#: ../../include/conversation.php:1765 +#: ../../include/conversation.php:1764 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso/a" msgstr[1] "Indecisos/as" -#: ../../include/conversation.php:1768 +#: ../../include/conversation.php:1767 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "De acuerdo" msgstr[1] "De acuerdo" -#: ../../include/conversation.php:1771 +#: ../../include/conversation.php:1770 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "En desacuerdo" msgstr[1] "En desacuerdo" -#: ../../include/conversation.php:1774 +#: ../../include/conversation.php:1773 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -6336,11 +6349,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:60 ../../include/channel.php:1727 +#: ../../include/selectors.php:60 ../../include/channel.php:1751 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:60 ../../include/channel.php:1729 +#: ../../include/selectors.php:60 ../../include/channel.php:1753 msgid "Non-specific" msgstr "No especificado" @@ -6437,8 +6450,7 @@ msgid "Sex Addict" msgstr "Con adicción al sexo" #: ../../include/selectors.php:134 ../../include/channel.php:506 -#: ../../include/channel.php:507 ../../include/channel.php:514 -#: ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/channel.php:509 ../../Zotlabs/Widget/Affinity.php:32 #: ../../Zotlabs/Module/Settings/Channel.php:71 #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:76 @@ -6547,28 +6559,28 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos que ya existen sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/group.php:265 ../../Zotlabs/Lib/Group.php:270 +#: ../../include/group.php:271 ../../Zotlabs/Lib/Group.php:270 msgid "Add new connections to this privacy group" msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../include/group.php:299 ../../Zotlabs/Lib/AccessList.php:311 +#: ../../include/group.php:305 ../../Zotlabs/Lib/AccessList.php:311 #: ../../Zotlabs/Lib/Group.php:302 msgid "edit" msgstr "editar" -#: ../../include/group.php:322 ../../Zotlabs/Lib/Group.php:325 +#: ../../include/group.php:328 ../../Zotlabs/Lib/Group.php:325 msgid "Edit group" msgstr "Editar grupo" -#: ../../include/group.php:323 ../../Zotlabs/Lib/Group.php:326 +#: ../../include/group.php:329 ../../Zotlabs/Lib/Group.php:326 msgid "Add privacy group" msgstr "Añadir un grupo de canales" -#: ../../include/group.php:324 ../../Zotlabs/Lib/Group.php:327 +#: ../../include/group.php:330 ../../Zotlabs/Lib/Group.php:327 msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:326 ../../Zotlabs/Widget/Savedsearch.php:84 +#: ../../include/group.php:332 ../../Zotlabs/Widget/Savedsearch.php:84 #: ../../Zotlabs/Lib/AccessList.php:336 ../../Zotlabs/Lib/Group.php:329 msgid "add" msgstr "añadir" @@ -6618,177 +6630,199 @@ msgstr "no me gusta" msgid "dislikes" msgstr "no gusta de" -#: ../../include/items.php:1001 ../../include/items.php:1061 +#: ../../include/items.php:1037 ../../include/items.php:1097 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1249 +#: ../../include/items.php:1301 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1251 +#: ../../include/items.php:1303 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1253 +#: ../../include/items.php:1305 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1255 +#: ../../include/items.php:1307 msgid "Visible to anybody authenticated." msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1257 +#: ../../include/items.php:1309 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1259 +#: ../../include/items.php:1311 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1261 +#: ../../include/items.php:1313 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1263 +#: ../../include/items.php:1315 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4493 ../../Zotlabs/Module/Group.php:62 +#: ../../include/items.php:4584 ../../Zotlabs/Module/Group.php:62 #: ../../Zotlabs/Module/Group.php:214 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." -#: ../../include/items.php:4509 +#: ../../include/items.php:4600 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4516 +#: ../../include/items.php:4607 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4526 ../../Zotlabs/Module/Connedit.php:860 +#: ../../include/items.php:4617 ../../Zotlabs/Module/Connedit.php:860 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../include/items.php:4528 +#: ../../include/items.php:4619 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4875 ../../Zotlabs/Module/Cover_photo.php:297 +#: ../../include/items.php:4965 ../../Zotlabs/Module/Cover_photo.php:297 msgid "female" msgstr "mujer" -#: ../../include/items.php:4876 ../../Zotlabs/Module/Cover_photo.php:298 +#: ../../include/items.php:4966 ../../Zotlabs/Module/Cover_photo.php:298 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4877 ../../Zotlabs/Module/Cover_photo.php:299 +#: ../../include/items.php:4967 ../../Zotlabs/Module/Cover_photo.php:299 msgid "male" msgstr "hombre" -#: ../../include/items.php:4878 ../../Zotlabs/Module/Cover_photo.php:300 +#: ../../include/items.php:4968 ../../Zotlabs/Module/Cover_photo.php:300 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4880 ../../Zotlabs/Module/Cover_photo.php:302 +#: ../../include/items.php:4970 ../../Zotlabs/Module/Cover_photo.php:302 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../include/items.php:4882 +#: ../../include/items.php:4972 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:5074 +#: ../../include/items.php:5164 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" #: ../../include/account.php:38 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +msgid "The provided email address is not valid" +msgstr "La dirección de correo electrónico proporcionada no es válida" #: ../../include/account.php:40 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." +msgid "The provided email domain is not among those allowed on this site" +msgstr "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio" -#: ../../include/account.php:46 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/account.php:51 +msgid "The provided email address is already registered at this site" +msgstr "La dirección de correo electrónico proporcionada ya está registrada en este sitio" -#: ../../include/account.php:78 +#: ../../include/account.php:88 msgid "An invitation is required." msgstr "Es obligatorio que le inviten." -#: ../../include/account.php:82 +#: ../../include/account.php:97 msgid "Invitation could not be verified." msgstr "No se ha podido verificar su invitación." -#: ../../include/account.php:158 +#: ../../include/account.php:185 msgid "Please enter the required information." msgstr "Por favor introduzca la información requerida." -#: ../../include/account.php:225 +#: ../../include/account.php:252 ../../include/account.php:360 msgid "Failed to store account information." msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/account.php:313 +#: ../../include/account.php:429 ../../include/account.php:497 +#: ../../Zotlabs/Module/Register.php:352 #, php-format msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:382 +#: ../../include/account.php:572 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:404 +#: ../../include/account.php:594 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:410 ../../include/account.php:473 +#: ../../include/account.php:600 ../../include/account.php:689 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:484 +#: ../../include/account.php:700 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:524 +#: ../../include/account.php:756 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:807 ../../include/account.php:809 +#: ../../include/account.php:763 +#, php-format +msgid "Could not revoke registration for %s" +msgstr "No se ha podido revocar el registro de %s" + +#: ../../include/account.php:1179 ../../include/account.php:1181 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:815 +#: ../../include/account.php:1187 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/account.php:820 +#: ../../include/account.php:1192 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/photo/photo_driver.php:434 +#: ../../include/account.php:1252 +msgid "open" +msgstr "abierto" + +#: ../../include/account.php:1252 +msgid "closed" +msgstr "cerrado" + +#: ../../include/account.php:1259 +msgid "Registration is currently" +msgstr "El registro está actualmente " + +#: ../../include/account.php:1268 +msgid "please come back" +msgstr "por favor, vuelva" + +#: ../../include/photo/photo_driver.php:435 #: ../../Zotlabs/Module/Profile_photo.php:147 #: ../../Zotlabs/Module/Profile_photo.php:284 msgid "Profile Photos" @@ -6871,8 +6905,8 @@ msgstr "%sha compartido un/una %scon usted" msgid "%1$s's bookmarks" msgstr "Marcadores de %1$s" -#: ../../include/menu.php:120 ../../include/channel.php:1539 -#: ../../include/channel.php:1543 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../include/menu.php:120 ../../include/channel.php:1563 +#: ../../include/channel.php:1567 ../../Zotlabs/Widget/Cdav.php:138 #: ../../Zotlabs/Widget/Cdav.php:175 ../../Zotlabs/Module/Article_edit.php:98 #: ../../Zotlabs/Module/Group.php:253 ../../Zotlabs/Module/Card_edit.php:99 #: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Module/Editwebpage.php:142 @@ -6884,84 +6918,84 @@ msgstr "Marcadores de %1$s" #: ../../Zotlabs/Module/Connections.php:363 #: ../../Zotlabs/Module/Connections.php:383 ../../Zotlabs/Module/Menu.php:176 #: ../../Zotlabs/Module/Oauth2.php:194 ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Module/Wiki.php:383 #: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Lib/Apps.php:557 #: ../../Zotlabs/Lib/ThreadItem.php:149 msgid "Edit" msgstr "Editar" -#: ../../include/bbcode.php:221 ../../include/bbcode.php:916 -#: ../../include/bbcode.php:1494 ../../include/bbcode.php:1502 +#: ../../include/bbcode.php:233 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:1525 ../../include/bbcode.php:1533 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:268 ../../include/bbcode.php:1519 +#: ../../include/bbcode.php:280 ../../include/bbcode.php:1550 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:322 +#: ../../include/bbcode.php:334 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:326 +#: ../../include/bbcode.php:338 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/bbcode.php:336 ../../Zotlabs/Module/Impel.php:43 +#: ../../include/bbcode.php:348 ../../Zotlabs/Module/Impel.php:43 msgid "webpage" msgstr "página web" -#: ../../include/bbcode.php:339 ../../Zotlabs/Module/Impel.php:53 +#: ../../include/bbcode.php:351 ../../Zotlabs/Module/Impel.php:53 msgid "layout" msgstr "plantilla" -#: ../../include/bbcode.php:342 ../../Zotlabs/Module/Impel.php:48 +#: ../../include/bbcode.php:354 ../../Zotlabs/Module/Impel.php:48 msgid "block" msgstr "bloque" -#: ../../include/bbcode.php:345 ../../Zotlabs/Module/Impel.php:60 +#: ../../include/bbcode.php:357 ../../Zotlabs/Module/Impel.php:60 msgid "menu" msgstr "menú" -#: ../../include/bbcode.php:539 +#: ../../include/bbcode.php:551 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:541 +#: ../../include/bbcode.php:553 msgid "article" msgstr "el artículo" -#: ../../include/bbcode.php:547 ../../include/markdown.php:202 +#: ../../include/bbcode.php:559 ../../include/markdown.php:202 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/bbcode.php:624 ../../include/bbcode.php:632 +#: ../../include/bbcode.php:636 ../../include/bbcode.php:644 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:632 ../../include/markdown.php:255 +#: ../../include/bbcode.php:644 ../../include/markdown.php:255 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View article" msgstr "Ver el artículo" -#: ../../include/bbcode.php:645 +#: ../../include/bbcode.php:657 msgid "View summary" msgstr "Ver sumario" -#: ../../include/bbcode.php:1038 ../../include/bbcode.php:1195 -#: ../../Zotlabs/Lib/NativeWikiPage.php:605 +#: ../../include/bbcode.php:1050 ../../include/bbcode.php:1217 +#: ../../Zotlabs/Lib/NativeWikiPage.php:618 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/bbcode.php:1482 +#: ../../include/bbcode.php:1501 msgid "$1 wrote:" msgstr "$1 escribió:" @@ -6981,16 +7015,18 @@ msgstr "Nombre demasiado largo" msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/channel.php:212 +#: ../../include/channel.php:212 ../../Zotlabs/Module/Register.php:95 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/channel.php:226 ../../include/channel.php:707 +#: ../../include/channel.php:226 ../../include/channel.php:706 +#: ../../Zotlabs/Module/Register.php:100 #: ../../Zotlabs/Module/Changeaddr.php:46 msgid "Reserved nickname. Please choose another." msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/channel.php:231 ../../include/channel.php:712 +#: ../../include/channel.php:231 ../../include/channel.php:711 +#: ../../Zotlabs/Module/Register.php:105 #: ../../Zotlabs/Module/Changeaddr.php:51 msgid "" "Nickname has unsupported characters or is already being used on this site." @@ -7004,192 +7040,192 @@ msgstr "No ha sido posible recuperar la identidad creada" msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/channel.php:640 ../../include/channel.php:729 +#: ../../include/channel.php:639 ../../include/channel.php:728 msgid "Unable to retrieve modified identity" msgstr "No se puede recuperar la identidad modficada" -#: ../../include/channel.php:1386 +#: ../../include/channel.php:1410 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../include/channel.php:1532 ../../Zotlabs/Module/Profiles.php:730 +#: ../../include/channel.php:1556 ../../Zotlabs/Module/Profiles.php:730 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" -#: ../../include/channel.php:1540 +#: ../../include/channel.php:1564 msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:1558 ../../Zotlabs/Module/Profiles.php:822 +#: ../../include/channel.php:1582 ../../Zotlabs/Module/Profiles.php:822 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../include/channel.php:1561 +#: ../../include/channel.php:1585 msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1562 ../../Zotlabs/Module/Profiles.php:727 +#: ../../include/channel.php:1586 ../../Zotlabs/Module/Profiles.php:727 #: ../../Zotlabs/Module/Profiles.php:826 msgid "Edit visibility" msgstr "Editar visibilidad" -#: ../../include/channel.php:1638 ../../include/channel.php:1766 +#: ../../include/channel.php:1662 ../../include/channel.php:1790 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1639 ../../include/channel.php:1810 +#: ../../include/channel.php:1663 ../../include/channel.php:1834 msgid "Status:" msgstr "Estado:" -#: ../../include/channel.php:1640 ../../include/channel.php:1834 +#: ../../include/channel.php:1664 ../../include/channel.php:1858 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/channel.php:1641 +#: ../../include/channel.php:1665 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1694 +#: ../../include/channel.php:1718 msgid "Change your profile photo" msgstr "Cambiar su foto del perfil" -#: ../../include/channel.php:1725 +#: ../../include/channel.php:1749 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1764 +#: ../../include/channel.php:1788 #: ../../Zotlabs/Module/Settings/Channel.php:501 msgid "Full Name:" msgstr "Nombre completo:" -#: ../../include/channel.php:1771 +#: ../../include/channel.php:1795 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1795 +#: ../../include/channel.php:1819 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1796 +#: ../../include/channel.php:1820 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1803 +#: ../../include/channel.php:1827 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1807 ../../Zotlabs/Module/Directory.php:349 +#: ../../include/channel.php:1831 ../../Zotlabs/Module/Directory.php:349 msgid "Age:" msgstr "Edad:" -#: ../../include/channel.php:1816 +#: ../../include/channel.php:1840 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1828 +#: ../../include/channel.php:1852 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1832 +#: ../../include/channel.php:1856 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1836 ../../Zotlabs/Module/Directory.php:367 +#: ../../include/channel.php:1860 ../../Zotlabs/Module/Directory.php:367 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../include/channel.php:1838 +#: ../../include/channel.php:1862 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1840 +#: ../../include/channel.php:1864 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1842 ../../Zotlabs/Module/Directory.php:369 +#: ../../include/channel.php:1866 ../../Zotlabs/Module/Directory.php:369 msgid "About:" msgstr "Sobre mí:" -#: ../../include/channel.php:1844 +#: ../../include/channel.php:1868 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1846 +#: ../../include/channel.php:1870 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1848 +#: ../../include/channel.php:1872 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1850 +#: ../../include/channel.php:1874 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1852 +#: ../../include/channel.php:1876 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1854 +#: ../../include/channel.php:1878 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1856 +#: ../../include/channel.php:1880 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1858 +#: ../../include/channel.php:1882 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1860 +#: ../../include/channel.php:1884 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1862 +#: ../../include/channel.php:1886 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1864 +#: ../../include/channel.php:1888 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1866 +#: ../../include/channel.php:1890 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1887 ../../Zotlabs/Module/Profperm.php:113 +#: ../../include/channel.php:1911 ../../Zotlabs/Module/Profperm.php:113 #: ../../Zotlabs/Lib/Apps.php:362 msgid "Profile" msgstr "Perfil" -#: ../../include/channel.php:1889 +#: ../../include/channel.php:1913 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/channel.php:1890 ../../Zotlabs/Module/Events.php:699 +#: ../../include/channel.php:1914 ../../Zotlabs/Module/Events.php:699 msgid "Export" msgstr "Exportar" -#: ../../include/channel.php:2329 ../../Zotlabs/Module/Cover_photo.php:304 +#: ../../include/channel.php:2353 ../../Zotlabs/Module/Cover_photo.php:304 msgid "cover photo" msgstr "Imagen de portada del perfil" -#: ../../include/channel.php:2598 ../../Zotlabs/Module/Rmagic.php:96 -#: ../../boot.php:1712 +#: ../../include/channel.php:2622 ../../Zotlabs/Module/Rmagic.php:96 +#: ../../boot.php:1717 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../include/channel.php:2599 ../../Zotlabs/Module/Rmagic.php:97 +#: ../../include/channel.php:2623 ../../Zotlabs/Module/Rmagic.php:97 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../include/channel.php:2600 ../../Zotlabs/Module/Rmagic.php:98 +#: ../../include/channel.php:2624 ../../Zotlabs/Module/Rmagic.php:98 msgid "Authenticate" msgstr "Acceder" -#: ../../include/channel.php:2758 ../../Zotlabs/Module/Admin/Accounts.php:91 +#: ../../include/channel.php:2782 ../../Zotlabs/Module/Admin/Accounts.php:184 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" @@ -7199,49 +7235,49 @@ msgstr "La cuenta '%s' ha sido eliminada" msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." -#: ../../include/acl_selectors.php:99 +#: ../../include/acl_selectors.php:100 msgid "Profile-Based Privacy Groups" msgstr "Grupos de privacidad basados en perfiles" -#: ../../include/acl_selectors.php:118 +#: ../../include/acl_selectors.php:119 msgid "Private Forum" msgstr "Foro privado" -#: ../../include/acl_selectors.php:124 ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:115 +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:123 #: ../../Zotlabs/Widget/Notifications.php:139 #: ../../Zotlabs/Widget/Notifications.php:140 msgid "Forums" msgstr "Foros" -#: ../../include/acl_selectors.php:135 +#: ../../include/acl_selectors.php:136 #: ../../Zotlabs/Lib/PermissionDescription.php:107 msgid "Only me" msgstr "Sólo yo" -#: ../../include/acl_selectors.php:142 +#: ../../include/acl_selectors.php:143 msgid "Share with" msgstr "Compartir con " -#: ../../include/acl_selectors.php:143 +#: ../../include/acl_selectors.php:144 msgid "Custom selection" msgstr "Selección personalizada" -#: ../../include/acl_selectors.php:145 +#: ../../include/acl_selectors.php:146 msgid "" "Select \"Allow\" to allow viewing. \"Don't allow\" lets you override and " "limit the scope of \"Allow\"." msgstr "Seleccione \"Permitir\" para permitir la visualización. \"No permitir\" le permite anular y limitar el alcance de \"Permitir\"." -#: ../../include/acl_selectors.php:146 ../../Zotlabs/Module/Authorize.php:32 +#: ../../include/acl_selectors.php:147 ../../Zotlabs/Module/Authorize.php:32 msgid "Allow" msgstr "Permitir" -#: ../../include/acl_selectors.php:147 +#: ../../include/acl_selectors.php:148 msgid "Don't allow" msgstr "No permitir" -#: ../../include/acl_selectors.php:180 +#: ../../include/acl_selectors.php:181 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
These" @@ -7440,28 +7476,28 @@ msgstr "Compartir esto" msgid "share" msgstr "compartir" -#: ../../Zotlabs/Widget/Pinned.php:123 ../../Zotlabs/Widget/Pinned.php:124 +#: ../../Zotlabs/Widget/Pinned.php:122 ../../Zotlabs/Widget/Pinned.php:123 #, php-format msgid "View %s's profile - %s" msgstr "Ver el perfil de %s - %s" -#: ../../Zotlabs/Widget/Pinned.php:128 ../../Zotlabs/Lib/ThreadItem.php:414 +#: ../../Zotlabs/Widget/Pinned.php:127 ../../Zotlabs/Lib/ThreadItem.php:414 msgid "via" msgstr "mediante" -#: ../../Zotlabs/Widget/Pinned.php:143 ../../Zotlabs/Lib/ThreadItem.php:445 +#: ../../Zotlabs/Widget/Pinned.php:141 ../../Zotlabs/Lib/ThreadItem.php:445 msgid "Attendance Options" msgstr "Opciones de participación o asistencia" -#: ../../Zotlabs/Widget/Pinned.php:144 ../../Zotlabs/Lib/ThreadItem.php:447 +#: ../../Zotlabs/Widget/Pinned.php:142 ../../Zotlabs/Lib/ThreadItem.php:447 msgid "Voting Options" msgstr "Opciones de votación" -#: ../../Zotlabs/Widget/Pinned.php:156 ../../Zotlabs/Lib/ThreadItem.php:471 +#: ../../Zotlabs/Widget/Pinned.php:154 ../../Zotlabs/Lib/ThreadItem.php:471 msgid "Pinned post" msgstr "Entradas ancladas" -#: ../../Zotlabs/Widget/Pinned.php:158 +#: ../../Zotlabs/Widget/Pinned.php:156 msgid "Don't show" msgstr "No mostrar" @@ -7487,7 +7523,7 @@ msgid "Channel Calendar" msgstr "Calendario del canal" #: ../../Zotlabs/Widget/Cdav.php:129 ../../Zotlabs/Widget/Cdav.php:143 -#: ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Module/Cdav.php:1056 msgid "CalDAV Calendars" msgstr "Calendarios CalDAV" @@ -7508,7 +7544,7 @@ msgid "Create new CalDAV calendar" msgstr "Crear un nuevo calendario CalDAV" #: ../../Zotlabs/Widget/Cdav.php:140 ../../Zotlabs/Widget/Cdav.php:178 -#: ../../Zotlabs/Module/Cdav.php:1059 ../../Zotlabs/Module/Cdav.php:1387 +#: ../../Zotlabs/Module/Cdav.php:1060 ../../Zotlabs/Module/Cdav.php:1388 #: ../../Zotlabs/Module/Webpages.php:254 #: ../../Zotlabs/Module/New_channel.php:189 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Profiles.php:800 @@ -7526,7 +7562,7 @@ msgstr "Nombre del calendario" msgid "Calendar Tools" msgstr "Gestión de calendarios" -#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Widget/Cdav.php:143 ../../Zotlabs/Module/Cdav.php:1056 msgid "Channel Calendars" msgstr "Calendarios del canal" @@ -7611,23 +7647,23 @@ msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" #: ../../Zotlabs/Widget/Wiki_page_history.php:23 -#: ../../Zotlabs/Lib/NativeWikiPage.php:564 +#: ../../Zotlabs/Lib/NativeWikiPage.php:577 msgctxt "wiki_history" msgid "Message" msgstr "Mensaje" #: ../../Zotlabs/Widget/Wiki_page_history.php:24 -#: ../../Zotlabs/Lib/NativeWikiPage.php:565 +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 msgid "Date" msgstr "Fecha" #: ../../Zotlabs/Widget/Wiki_page_history.php:25 -#: ../../Zotlabs/Module/Wiki.php:367 ../../Zotlabs/Lib/NativeWikiPage.php:566 +#: ../../Zotlabs/Module/Wiki.php:366 ../../Zotlabs/Lib/NativeWikiPage.php:579 msgid "Revert" msgstr "Revertir" #: ../../Zotlabs/Widget/Wiki_page_history.php:26 -#: ../../Zotlabs/Lib/NativeWikiPage.php:567 +#: ../../Zotlabs/Lib/NativeWikiPage.php:580 msgid "Compare" msgstr "Comparar" @@ -7663,13 +7699,13 @@ msgstr "Nuevo mensaje" msgid "photo/image" msgstr "foto/imagen" -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:411 msgid "Site" msgstr "Sitio" #: ../../Zotlabs/Widget/Admin.php:23 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:308 +#: ../../Zotlabs/Module/Admin/Accounts.php:327 #: ../../Zotlabs/Module/Admin.php:96 msgid "Accounts" msgstr "Cuentas" @@ -7680,7 +7716,7 @@ msgstr "Inscripciones de nuevos miembros pendientes de aprobación" #: ../../Zotlabs/Widget/Admin.php:24 #: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:114 +#: ../../Zotlabs/Module/Admin.php:117 msgid "Channels" msgstr "Canales" @@ -7724,85 +7760,85 @@ msgstr "Informes" msgid "Addon Features" msgstr "Características del addon" -#: ../../Zotlabs/Widget/Activity_filter.php:33 +#: ../../Zotlabs/Widget/Activity_filter.php:37 msgid "Direct Messages" msgstr "Mensajes directos" -#: ../../Zotlabs/Widget/Activity_filter.php:37 +#: ../../Zotlabs/Widget/Activity_filter.php:41 msgid "Show direct (private) messages" msgstr "Mostrar mensajes (privados) directos" -#: ../../Zotlabs/Widget/Activity_filter.php:42 +#: ../../Zotlabs/Widget/Activity_filter.php:46 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:46 +#: ../../Zotlabs/Widget/Activity_filter.php:50 msgid "Show posts that include events" msgstr "Mostrar entradas que incluyan eventos" -#: ../../Zotlabs/Widget/Activity_filter.php:52 +#: ../../Zotlabs/Widget/Activity_filter.php:56 msgid "Polls" msgstr "Encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:56 +#: ../../Zotlabs/Widget/Activity_filter.php:60 msgid "Show posts that include polls" msgstr "Mostrar entradas que incluyan encuestas" -#: ../../Zotlabs/Widget/Activity_filter.php:77 +#: ../../Zotlabs/Widget/Activity_filter.php:83 #, php-format msgid "Show posts related to the %s privacy group" msgstr "Mostrar entradas relacionadas con el grupo %s" -#: ../../Zotlabs/Widget/Activity_filter.php:86 +#: ../../Zotlabs/Widget/Activity_filter.php:92 msgid "Show my privacy groups" msgstr "Mostrar mis grupos de canales" -#: ../../Zotlabs/Widget/Activity_filter.php:108 +#: ../../Zotlabs/Widget/Activity_filter.php:116 msgid "Show posts to this forum" msgstr "Mostrar las entradas en este foro" -#: ../../Zotlabs/Widget/Activity_filter.php:119 +#: ../../Zotlabs/Widget/Activity_filter.php:127 msgid "Show forums" msgstr "Mostrar los foros" -#: ../../Zotlabs/Widget/Activity_filter.php:133 +#: ../../Zotlabs/Widget/Activity_filter.php:141 msgid "Starred Posts" msgstr "Entradas preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:137 +#: ../../Zotlabs/Widget/Activity_filter.php:145 msgid "Show posts that I have starred" msgstr "Mostrar entradas que he señalado como preferidas" -#: ../../Zotlabs/Widget/Activity_filter.php:148 +#: ../../Zotlabs/Widget/Activity_filter.php:156 msgid "Personal Posts" msgstr "Entradas personales" -#: ../../Zotlabs/Widget/Activity_filter.php:152 +#: ../../Zotlabs/Widget/Activity_filter.php:160 msgid "Show posts that mention or involve me" msgstr "Mostrar entradas que me mencionen o involucren" -#: ../../Zotlabs/Widget/Activity_filter.php:173 +#: ../../Zotlabs/Widget/Activity_filter.php:183 #, php-format msgid "Show posts that I have filed to %s" msgstr "Mostrar las entradas que he enviado a %s" -#: ../../Zotlabs/Widget/Activity_filter.php:183 +#: ../../Zotlabs/Widget/Activity_filter.php:193 msgid "Show filed post categories" msgstr "Mostrar los temas de las entradas archivadas" -#: ../../Zotlabs/Widget/Activity_filter.php:197 +#: ../../Zotlabs/Widget/Activity_filter.php:207 msgid "Panel search" msgstr "Panel de búsqueda" -#: ../../Zotlabs/Widget/Activity_filter.php:207 +#: ../../Zotlabs/Widget/Activity_filter.php:217 msgid "Filter by name" msgstr "Filtrar por nombre" -#: ../../Zotlabs/Widget/Activity_filter.php:222 +#: ../../Zotlabs/Widget/Activity_filter.php:232 msgid "Remove active filter" msgstr "Eliminar el filtro activo" -#: ../../Zotlabs/Widget/Activity_filter.php:238 +#: ../../Zotlabs/Widget/Activity_filter.php:248 msgid "Stream Filters" msgstr "Filtros del stream" @@ -8219,29 +8255,29 @@ msgstr "No se puede copiar la carpeta en sí misma." msgid "Can not move folder \"%s\" into itself." msgstr "No se puede mover la carpeta\"%s\" en sí misma." -#: ../../Zotlabs/Module/Network.php:105 +#: ../../Zotlabs/Module/Network.php:107 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:152 +#: ../../Zotlabs/Module/Network.php:156 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:164 ../../Zotlabs/Module/Channel.php:221 +#: ../../Zotlabs/Module/Network.php:168 ../../Zotlabs/Module/Channel.php:221 msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:205 ../../Zotlabs/Module/Channel.php:256 +#: ../../Zotlabs/Module/Network.php:209 ../../Zotlabs/Module/Channel.php:256 #: ../../Zotlabs/Module/Hq.php:125 ../../Zotlabs/Module/Pubstream.php:95 #: ../../Zotlabs/Module/Display.php:76 msgid "Reset form" msgstr "Reiniciar el formulario" -#: ../../Zotlabs/Module/Network.php:239 +#: ../../Zotlabs/Module/Network.php:243 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:249 +#: ../../Zotlabs/Module/Network.php:253 msgid "Privacy group: " msgstr "Grupo de canales: " @@ -8278,7 +8314,7 @@ msgid "" msgstr "Utilice este formulario para importar entradas y contenido desde un archivo de exportación." #: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:629 +#: ../../Zotlabs/Module/Import.php:630 msgid "File to Upload" msgstr "Fichero para subir" @@ -8291,42 +8327,42 @@ msgstr "Su paquete de servicios solo permite %d canales." msgid "No channel. Import failed." msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Import.php:622 +#: ../../Zotlabs/Module/Import.php:623 msgid "You must be logged in to use this feature." msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Import.php:627 +#: ../../Zotlabs/Module/Import.php:628 msgid "Import Channel" msgstr "Importar canal" -#: ../../Zotlabs/Module/Import.php:628 +#: ../../Zotlabs/Module/Import.php:629 msgid "" "Use this form to import an existing channel from a different server/hub. You" " may retrieve the channel identity from the old server/hub via the network " "or provide an export file." msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../Zotlabs/Module/Import.php:630 +#: ../../Zotlabs/Module/Import.php:631 msgid "Or provide the old server/hub details" msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Import.php:632 +#: ../../Zotlabs/Module/Import.php:633 msgid "Your old identity address (xyz@example.com)" msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Import.php:633 +#: ../../Zotlabs/Module/Import.php:634 msgid "Your old login email address" msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Import.php:634 +#: ../../Zotlabs/Module/Import.php:635 msgid "Your old login password" msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Import.php:635 +#: ../../Zotlabs/Module/Import.php:636 msgid "Import a few months of posts if possible (limited by available memory" msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible" -#: ../../Zotlabs/Module/Import.php:637 +#: ../../Zotlabs/Module/Import.php:638 msgid "" "For either option, please choose whether to make this hub your new primary " "address, or whether your old location should continue this role. You will be" @@ -8334,26 +8370,26 @@ msgid "" "primary location for files, photos, and media." msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../Zotlabs/Module/Import.php:639 +#: ../../Zotlabs/Module/Import.php:640 msgid "Make this hub my primary location" msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Import.php:640 +#: ../../Zotlabs/Module/Import.php:641 msgid "Move this channel (disable all previous locations)" msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "Use this channel nickname instead of the one provided" msgstr "Usa este alias de canal en lugar del que se proporciona" -#: ../../Zotlabs/Module/Import.php:641 +#: ../../Zotlabs/Module/Import.php:642 msgid "" "Leave blank to keep your existing channel nickname. You will be randomly " "assigned a similar nickname if either name is already allocated on this " "site." msgstr "Dejar en blanco para mantener su alias de canal . Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio." -#: ../../Zotlabs/Module/Import.php:643 +#: ../../Zotlabs/Module/Import.php:644 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." @@ -8380,146 +8416,150 @@ msgstr "php util/z6convert.php" msgid "from the terminal." msgstr "desde la terminal." -#: ../../Zotlabs/Module/Register.php:52 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:112 +msgid "Email address required" +msgstr "Dirección de correo electrónico requerida" -#: ../../Zotlabs/Module/Register.php:58 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." +#: ../../Zotlabs/Module/Register.php:153 +msgid "No password provided" +msgstr "No se ha proporcionado la contraseña" -#: ../../Zotlabs/Module/Register.php:92 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../Zotlabs/Module/Register.php:176 +msgid "Terms of Service not accepted" +msgstr "No se han aceptado los Términos del servicio" -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." +#: ../../Zotlabs/Module/Register.php:238 +msgid "Invitation code succesfully applied" +msgstr "El código de invitación se ha aplicado con éxito" -#: ../../Zotlabs/Module/Register.php:138 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." +#: ../../Zotlabs/Module/Register.php:258 +msgid "Invitation not in time or too late" +msgstr "La invitación no llega a tiempo o llega demasiado tarde" -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." +#: ../../Zotlabs/Module/Register.php:264 +msgid "Invitation email failed" +msgstr "Error en el correo electrónico de invitación" + +#: ../../Zotlabs/Module/Register.php:272 +msgid "Invitation code failed" +msgstr "Código de invitación fallido" + +#: ../../Zotlabs/Module/Register.php:279 +msgid "Invitations are not available" +msgstr "No hay invitaciones disponibles" + +#: ../../Zotlabs/Module/Register.php:305 +msgid "Email address already in use" +msgstr "La dirección de correo electrónico ya está en uso" -#: ../../Zotlabs/Module/Register.php:148 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../Zotlabs/Module/Register.php:315 +msgid "Registration on this hub is by invitation only" +msgstr "El registro en este hub solo es posible por invitación" -#: ../../Zotlabs/Module/Register.php:195 +#: ../../Zotlabs/Module/Register.php:423 +msgid "New register request" +msgstr "Nueva solicitud de registro" + +#: ../../Zotlabs/Module/Register.php:441 +msgid "Error creating dId A" +msgstr "Error al crear dId A" + +#: ../../Zotlabs/Module/Register.php:459 msgid "Registration on this hub is disabled." msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Register.php:468 msgid "Registration on this hub is by approval only." msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Register.php:205 ../../Zotlabs/Module/Register.php:214 -msgid "
Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../Zotlabs/Module/Register.php:469 +msgid "Register at another affiliated hub in case when prefered" +msgstr "Regístrese en otro hub afiliado en caso de que lo prefiera" -#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Register.php:482 msgid "Registration on this hub is by invitation only." msgstr "La inscripción en este hub es sólo posible por invitación." -#: ../../Zotlabs/Module/Register.php:224 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." +#: ../../Zotlabs/Module/Register.php:483 +msgid "Register at another affiliated hub" +msgstr "Regístrese en otro hub afiliado" -#: ../../Zotlabs/Module/Register.php:239 ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Register.php:497 ../../Zotlabs/Module/Siteinfo.php:28 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:503 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/Register.php:510 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:257 +#: ../../Zotlabs/Module/Register.php:520 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:522 ../../Zotlabs/Module/Oauth.php:117 +#: ../../Zotlabs/Module/Sources.php:123 ../../Zotlabs/Module/Sources.php:158 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Register.php:527 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:528 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:530 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Your Name" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Your name" msgstr "Su nombre" -#: ../../Zotlabs/Module/Register.php:261 -msgid "Real names are preferred." -msgstr "Se prefieren los nombres reales" +#: ../../Zotlabs/Module/Register.php:532 +msgid "Real name is preferred" +msgstr "Se prefiere el nombre real" -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Register.php:534 #: ../../Zotlabs/Module/New_channel.php:177 msgid "Choose a short nickname" msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Register.php:263 -#, php-format +#: ../../Zotlabs/Module/Register.php:534 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +"Your nickname will be used to create an easy to remember channel address" +msgstr "Tu alias se utilizará para crear una dirección de canal fácil de recordar" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Register.php:538 +msgid "Why do you want to join this hub?" +msgstr "¿Por qué quiere unirse a este hub?" -#: ../../Zotlabs/Module/Register.php:264 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/Register.php:538 +msgid "This will help to review your registration" +msgstr "Esto ayudará a revisar su registro" -#: ../../Zotlabs/Module/Register.php:264 -#: ../../Zotlabs/Module/New_channel.php:178 -msgid "Read more about channel permission roles" -msgstr "Leer más sobre los roles y permisos" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:265 -msgid "yes" -msgstr "sí" - -#: ../../Zotlabs/Module/Register.php:277 -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Register.php:544 +#: ../../Zotlabs/Module/Admin/Site.php:413 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Register.php:294 +#: ../../Zotlabs/Module/Register.php:552 +msgid "I have an invite code" +msgstr "Tengo un código de invitación" + +#: ../../Zotlabs/Module/Register.php:599 msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." +"This site has exceeded the number of allowed daily account registrations." +msgstr "Este sitio ha superado el número permitido de registros diarios de cuentas." -#: ../../Zotlabs/Module/Search.php:22 +#: ../../Zotlabs/Module/Search.php:21 #: ../../Zotlabs/Module/Viewconnections.php:23 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Display.php:26 #: ../../Zotlabs/Module/Directory.php:73 ../../Zotlabs/Module/Directory.php:78 @@ -8527,425 +8567,425 @@ msgstr "Este sitio requiere verificación por correo electrónico. Después de c msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Search.php:251 +#: ../../Zotlabs/Module/Search.php:250 #, php-format msgid "Items tagged with: %s" msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Search.php:253 +#: ../../Zotlabs/Module/Search.php:252 #, php-format msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Setup.php:167 +#: ../../Zotlabs/Module/Setup.php:169 msgid "$Projectname Server - Setup" msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Setup.php:171 +#: ../../Zotlabs/Module/Setup.php:173 msgid "Could not connect to database." msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Setup.php:175 +#: ../../Zotlabs/Module/Setup.php:177 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../Zotlabs/Module/Setup.php:182 +#: ../../Zotlabs/Module/Setup.php:184 msgid "Could not create table." msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Setup.php:188 +#: ../../Zotlabs/Module/Setup.php:190 msgid "Your site database has been installed." msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Setup.php:194 +#: ../../Zotlabs/Module/Setup.php:196 msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:259 -#: ../../Zotlabs/Module/Setup.php:766 +#: ../../Zotlabs/Module/Setup.php:197 ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:768 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Setup.php:256 +#: ../../Zotlabs/Module/Setup.php:258 msgid "System check" msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Setup.php:260 ../../Zotlabs/Module/Cdav.php:1036 +#: ../../Zotlabs/Module/Setup.php:262 ../../Zotlabs/Module/Cdav.php:1037 #: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Events.php:707 #: ../../Zotlabs/Module/Cal.php:204 ../../Zotlabs/Module/Photos.php:956 msgid "Next" msgstr "Siguiente" -#: ../../Zotlabs/Module/Setup.php:261 +#: ../../Zotlabs/Module/Setup.php:263 msgid "Check again" msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Setup.php:282 +#: ../../Zotlabs/Module/Setup.php:284 msgid "Database connection" msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Setup.php:283 +#: ../../Zotlabs/Module/Setup.php:285 msgid "" "In order to install $Projectname we need to know how to connect to your " "database." msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../Zotlabs/Module/Setup.php:284 +#: ../../Zotlabs/Module/Setup.php:286 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../Zotlabs/Module/Setup.php:285 +#: ../../Zotlabs/Module/Setup.php:287 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Database Server Name" msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:291 msgid "Default is 127.0.0.1" msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Database Port" msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Setup.php:290 +#: ../../Zotlabs/Module/Setup.php:292 msgid "Communication port number - use 0 for default" msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Setup.php:293 msgid "Database Login Name" msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Setup.php:292 +#: ../../Zotlabs/Module/Setup.php:294 msgid "Database Login Password" msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Setup.php:293 +#: ../../Zotlabs/Module/Setup.php:295 msgid "Database Name" msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Setup.php:294 +#: ../../Zotlabs/Module/Setup.php:296 msgid "Database Type" msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "Site administrator email address" msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:336 +#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:338 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Website URL" msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:338 +#: ../../Zotlabs/Module/Setup.php:299 ../../Zotlabs/Module/Setup.php:340 msgid "Please use SSL (https) URL if available." msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Setup.php:298 ../../Zotlabs/Module/Setup.php:340 +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:342 msgid "Please select a default timezone for your website" msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Setup.php:325 +#: ../../Zotlabs/Module/Setup.php:327 msgid "Site settings" msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Setup.php:379 +#: ../../Zotlabs/Module/Setup.php:381 msgid "PHP version 7.1 or greater is required." msgstr "Se requiere la versión 7.1 o superior de PHP." -#: ../../Zotlabs/Module/Setup.php:380 +#: ../../Zotlabs/Module/Setup.php:382 msgid "PHP version" msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Setup.php:396 +#: ../../Zotlabs/Module/Setup.php:398 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../Zotlabs/Module/Setup.php:397 +#: ../../Zotlabs/Module/Setup.php:399 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "PHP executable path" msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Setup.php:401 +#: ../../Zotlabs/Module/Setup.php:403 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../Zotlabs/Module/Setup.php:406 +#: ../../Zotlabs/Module/Setup.php:408 msgid "Command line PHP" msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Setup.php:416 +#: ../../Zotlabs/Module/Setup.php:418 msgid "" "Unable to check command line PHP, as shell_exec() is disabled. This is " "required." msgstr "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado." -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Setup.php:422 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Setup.php:423 msgid "This is required for message delivery to work." msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Setup.php:424 +#: ../../Zotlabs/Module/Setup.php:426 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Setup.php:444 +#: ../../Zotlabs/Module/Setup.php:446 msgid "" "This is not sufficient to upload larger images or files. You should be able " "to upload at least 4 MB at once." msgstr "Esto no es suficiente para subir imágenes o archivos más grandes. Usted debe ser capaz de subir al menos 4 MB a la vez." -#: ../../Zotlabs/Module/Setup.php:446 +#: ../../Zotlabs/Module/Setup.php:448 #, php-format msgid "" "Your max allowed total upload size is set to %s. Maximum size of one file to" " upload is set to %s. You are allowed to upload up to %d files at once." msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../Zotlabs/Module/Setup.php:452 +#: ../../Zotlabs/Module/Setup.php:454 msgid "You can adjust these settings in the server php.ini file." msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Setup.php:454 +#: ../../Zotlabs/Module/Setup.php:456 msgid "PHP upload limits" msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Setup.php:477 +#: ../../Zotlabs/Module/Setup.php:479 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../Zotlabs/Module/Setup.php:478 +#: ../../Zotlabs/Module/Setup.php:480 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Setup.php:481 +#: ../../Zotlabs/Module/Setup.php:483 msgid "Generate encryption keys" msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Setup.php:498 +#: ../../Zotlabs/Module/Setup.php:500 msgid "libCurl PHP module" msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Setup.php:499 +#: ../../Zotlabs/Module/Setup.php:501 msgid "GD graphics PHP module" msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:502 msgid "OpenSSL PHP module" msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:503 msgid "PDO database PHP module" msgstr "Módulo PHP de la base de datos PDO " -#: ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:504 msgid "mb_string PHP module" msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:505 msgid "xml PHP module" msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Setup.php:504 +#: ../../Zotlabs/Module/Setup.php:506 msgid "zip PHP module" msgstr "Módulo zip PHP" -#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:510 +#: ../../Zotlabs/Module/Setup.php:510 ../../Zotlabs/Module/Setup.php:512 msgid "Apache mod_rewrite module" msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Setup.php:508 +#: ../../Zotlabs/Module/Setup.php:510 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 +#: ../../Zotlabs/Module/Setup.php:516 ../../Zotlabs/Module/Setup.php:519 msgid "exec" msgstr "ejecutable" -#: ../../Zotlabs/Module/Setup.php:514 +#: ../../Zotlabs/Module/Setup.php:516 msgid "" "Error: exec is required but is either not installed or has been disabled in " "php.ini" msgstr "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +#: ../../Zotlabs/Module/Setup.php:522 ../../Zotlabs/Module/Setup.php:525 msgid "shell_exec" msgstr "shell_exec" -#: ../../Zotlabs/Module/Setup.php:520 +#: ../../Zotlabs/Module/Setup.php:522 msgid "" "Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" msgstr "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini" -#: ../../Zotlabs/Module/Setup.php:528 +#: ../../Zotlabs/Module/Setup.php:530 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:532 +#: ../../Zotlabs/Module/Setup.php:534 msgid "" "Error: GD PHP module with JPEG support or ImageMagick graphics library " "required but not installed." msgstr "Error: Se requiere el módulo GD PHP con soporte para JPEG o la biblioteca de gráficos ImageMagick, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:536 +#: ../../Zotlabs/Module/Setup.php:538 msgid "Error: openssl PHP module required but not installed." msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:542 +#: ../../Zotlabs/Module/Setup.php:544 msgid "" "Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "Error: El módulo PHP de la base de datos PDO carece de un controlador para mysql o pgsql." -#: ../../Zotlabs/Module/Setup.php:547 +#: ../../Zotlabs/Module/Setup.php:549 msgid "Error: PDO database PHP module required but not installed." msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:551 +#: ../../Zotlabs/Module/Setup.php:553 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:555 +#: ../../Zotlabs/Module/Setup.php:557 msgid "Error: xml PHP module required for DAV but not installed." msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:559 +#: ../../Zotlabs/Module/Setup.php:561 msgid "Error: zip PHP module required but not installed." msgstr "Error: se requiere el módulo zip PHP pero no está instalado." -#: ../../Zotlabs/Module/Setup.php:578 ../../Zotlabs/Module/Setup.php:587 +#: ../../Zotlabs/Module/Setup.php:580 ../../Zotlabs/Module/Setup.php:589 msgid ".htconfig.php is writable" msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:585 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Setup.php:584 +#: ../../Zotlabs/Module/Setup.php:586 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../Zotlabs/Module/Setup.php:585 +#: ../../Zotlabs/Module/Setup.php:587 msgid "Please see install/INSTALL.txt for additional information." msgstr "Por favor, consulte install/INSTALL.txt para más información." -#: ../../Zotlabs/Module/Setup.php:601 +#: ../../Zotlabs/Module/Setup.php:603 msgid "" "This software uses the Smarty3 template engine to render its web views. " "Smarty3 compiles templates to PHP to speed up rendering." msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." -#: ../../Zotlabs/Module/Setup.php:602 +#: ../../Zotlabs/Module/Setup.php:604 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal." -#: ../../Zotlabs/Module/Setup.php:603 ../../Zotlabs/Module/Setup.php:624 +#: ../../Zotlabs/Module/Setup.php:605 ../../Zotlabs/Module/Setup.php:626 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../Zotlabs/Module/Setup.php:604 +#: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" "Note: as a security measure, you should give the web server write access to " "%s only--not the template files (.tpl) that it contains." msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Setup.php:609 #, php-format msgid "%s is writable" msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:623 +#: ../../Zotlabs/Module/Setup.php:625 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level" " web folder" msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Setup.php:627 +#: ../../Zotlabs/Module/Setup.php:629 msgid "store is writable" msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:661 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../Zotlabs/Module/Setup.php:660 +#: ../../Zotlabs/Module/Setup.php:662 msgid "" "If you have https access to your website or allow connections to TCP port " "443 (the https: port), you MUST use a browser-valid certificate. You MUST " "NOT use self-signed certificates!" msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:663 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Setup.php:662 +#: ../../Zotlabs/Module/Setup.php:664 msgid "" "If your certificate is not recognized, members of other sites (who may " "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../Zotlabs/Module/Setup.php:663 +#: ../../Zotlabs/Module/Setup.php:665 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Setup.php:664 +#: ../../Zotlabs/Module/Setup.php:666 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../Zotlabs/Module/Setup.php:665 +#: ../../Zotlabs/Module/Setup.php:667 msgid "" "If you are confident that the certificate is valid and signed by a trusted " "authority, check to see if you have failed to install an intermediate cert. " @@ -8953,32 +8993,32 @@ msgid "" "server communications." msgstr "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." -#: ../../Zotlabs/Module/Setup.php:667 +#: ../../Zotlabs/Module/Setup.php:669 msgid "SSL certificate validation" msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Setup.php:673 +#: ../../Zotlabs/Module/Setup.php:675 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../Zotlabs/Module/Setup.php:676 +#: ../../Zotlabs/Module/Setup.php:678 msgid "Url rewrite is working" msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Setup.php:689 +#: ../../Zotlabs/Module/Setup.php:691 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../Zotlabs/Module/Setup.php:764 +#: ../../Zotlabs/Module/Setup.php:766 msgid "

What next?

" msgstr "

¿Qué sigue?

" -#: ../../Zotlabs/Module/Setup.php:765 +#: ../../Zotlabs/Module/Setup.php:767 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -9032,18 +9072,18 @@ msgstr "Valorar" #: ../../Zotlabs/Module/Pubsites.php:61 ../../Zotlabs/Module/Webpages.php:261 #: ../../Zotlabs/Module/Events.php:702 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Wiki.php:213 ../../Zotlabs/Module/Wiki.php:409 +#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Module/Wiki.php:408 #: ../../Zotlabs/Module/Layouts.php:198 msgid "View" msgstr "Ver" #: ../../Zotlabs/Module/Channel.php:131 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:60 +#: ../../Zotlabs/Module/Profile.php:62 msgid "Posts and comments" msgstr "Publicaciones y comentarios" #: ../../Zotlabs/Module/Channel.php:138 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:67 +#: ../../Zotlabs/Module/Profile.php:69 msgid "Only posts" msgstr "Solo publicaciones" @@ -9051,7 +9091,7 @@ msgstr "Solo publicaciones" msgid "Insufficient permissions. Request redirected to profile page." msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Channel.php:482 ../../Zotlabs/Module/Display.php:362 +#: ../../Zotlabs/Module/Channel.php:483 ../../Zotlabs/Module/Display.php:354 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "Debe habilitar javascript para poder ver este contenido en su navegador." @@ -9218,7 +9258,7 @@ msgid "Key and Secret are required" msgstr "\"Key\" y \"Secret\" son obligatorios" #: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Module/Cdav.php:1053 ../../Zotlabs/Module/Cdav.php:1388 +#: ../../Zotlabs/Module/Cdav.php:1054 ../../Zotlabs/Module/Cdav.php:1389 #: ../../Zotlabs/Module/Admin/Addons.php:457 #: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Oauth2.php:58 #: ../../Zotlabs/Module/Oauth2.php:144 ../../Zotlabs/Module/Connedit.php:932 @@ -9266,11 +9306,6 @@ msgstr "URI de redirección - dejar en blanco a menos que su aplicación especí msgid "Icon url" msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Oauth.php:117 ../../Zotlabs/Module/Sources.php:123 -#: ../../Zotlabs/Module/Sources.php:158 -msgid "Optional" -msgstr "Opcional" - #: ../../Zotlabs/Module/Oauth.php:128 msgid "Application not found." msgstr "Aplicación no encontrada." @@ -9315,7 +9350,7 @@ msgstr "¡Bienvenido a Hubzilla!" msgid "You have got no unseen posts..." msgstr "No tiene ningún mensaje sin leer..." -#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:461 +#: ../../Zotlabs/Module/Pin.php:36 ../../Zotlabs/Module/Item.php:471 msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." @@ -9373,7 +9408,7 @@ msgid "No chatrooms available" msgstr "No hay salas de chat disponibles" #: ../../Zotlabs/Module/Chat.php:262 ../../Zotlabs/Module/Manage.php:145 -#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:214 +#: ../../Zotlabs/Module/Profiles.php:833 ../../Zotlabs/Module/Wiki.php:213 msgid "Create New" msgstr "Crear" @@ -9420,7 +9455,7 @@ msgid "Delete event" msgstr "Borrar evento" #: ../../Zotlabs/Module/Channel_calendar.php:392 -#: ../../Zotlabs/Module/Cdav.php:943 ../../Zotlabs/Module/Cal.php:165 +#: ../../Zotlabs/Module/Cdav.php:944 ../../Zotlabs/Module/Cal.php:165 msgid "Link to source" msgstr "Enlace a la fuente" @@ -9520,168 +9555,168 @@ msgstr "Elegir qué desea enviar al destinatario" msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Cdav.php:818 ../../Zotlabs/Module/Events.php:28 +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Events.php:28 msgid "Calendar entries imported." msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:30 +#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:30 msgid "No calendar entries found." msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Cdav.php:876 +#: ../../Zotlabs/Module/Cdav.php:877 msgid "CardDAV App" msgstr "App CarDav" -#: ../../Zotlabs/Module/Cdav.php:877 +#: ../../Zotlabs/Module/Cdav.php:878 msgid "CalDAV capable addressbook" msgstr "Libreta de direcciones compatible con CalDav" -#: ../../Zotlabs/Module/Cdav.php:1009 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:468 msgid "Event title" msgstr "Título del evento" -#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:474 +#: ../../Zotlabs/Module/Cdav.php:1011 ../../Zotlabs/Module/Events.php:474 msgid "Start date and time" msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Cdav.php:1011 +#: ../../Zotlabs/Module/Cdav.php:1012 msgid "End date and time" msgstr "Fecha y hora de finalización" -#: ../../Zotlabs/Module/Cdav.php:1012 ../../Zotlabs/Module/Events.php:497 +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Events.php:497 msgid "Timezone:" msgstr "Zona horaria: " -#: ../../Zotlabs/Module/Cdav.php:1035 ../../Zotlabs/Module/Events.php:697 +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:697 #: ../../Zotlabs/Module/Events.php:706 ../../Zotlabs/Module/Cal.php:203 #: ../../Zotlabs/Module/Photos.php:947 msgid "Previous" msgstr "Anterior" -#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:708 +#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:708 #: ../../Zotlabs/Module/Cal.php:205 msgid "Today" msgstr "Hoy" -#: ../../Zotlabs/Module/Cdav.php:1038 ../../Zotlabs/Module/Events.php:703 +#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:703 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Cdav.php:1039 ../../Zotlabs/Module/Events.php:704 +#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:704 msgid "Week" msgstr "Semana" -#: ../../Zotlabs/Module/Cdav.php:1040 ../../Zotlabs/Module/Events.php:705 +#: ../../Zotlabs/Module/Cdav.php:1041 ../../Zotlabs/Module/Events.php:705 msgid "Day" msgstr "Día" -#: ../../Zotlabs/Module/Cdav.php:1041 +#: ../../Zotlabs/Module/Cdav.php:1042 msgid "List month" msgstr "Lista mensual" -#: ../../Zotlabs/Module/Cdav.php:1042 +#: ../../Zotlabs/Module/Cdav.php:1043 msgid "List week" msgstr "Lista semanal" -#: ../../Zotlabs/Module/Cdav.php:1043 +#: ../../Zotlabs/Module/Cdav.php:1044 msgid "List day" msgstr "Lista diaria" -#: ../../Zotlabs/Module/Cdav.php:1051 +#: ../../Zotlabs/Module/Cdav.php:1052 msgid "More" msgstr "Más" -#: ../../Zotlabs/Module/Cdav.php:1052 +#: ../../Zotlabs/Module/Cdav.php:1053 msgid "Less" msgstr "Menos" -#: ../../Zotlabs/Module/Cdav.php:1054 +#: ../../Zotlabs/Module/Cdav.php:1055 msgid "Select calendar" msgstr "Seleccionar un calendario" -#: ../../Zotlabs/Module/Cdav.php:1057 +#: ../../Zotlabs/Module/Cdav.php:1058 msgid "Delete all" msgstr "Eliminar todos" -#: ../../Zotlabs/Module/Cdav.php:1060 +#: ../../Zotlabs/Module/Cdav.php:1061 msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado." -#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:917 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1375 ../../Zotlabs/Module/Profiles.php:788 +#: ../../Zotlabs/Module/Cdav.php:1376 ../../Zotlabs/Module/Profiles.php:788 #: ../../Zotlabs/Module/Connedit.php:919 msgid "Phone" msgstr "Teléfono" -#: ../../Zotlabs/Module/Cdav.php:1377 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:790 #: ../../Zotlabs/Module/Connedit.php:921 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1378 ../../Zotlabs/Module/Profiles.php:791 +#: ../../Zotlabs/Module/Cdav.php:1379 ../../Zotlabs/Module/Profiles.php:791 #: ../../Zotlabs/Module/Connedit.php:922 msgid "Website" msgstr "Sitio web" -#: ../../Zotlabs/Module/Cdav.php:1379 +#: ../../Zotlabs/Module/Cdav.php:1380 #: ../../Zotlabs/Module/Admin/Channels.php:160 #: ../../Zotlabs/Module/Profiles.php:504 ../../Zotlabs/Module/Profiles.php:792 #: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Locs.php:129 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1380 ../../Zotlabs/Module/Profiles.php:793 +#: ../../Zotlabs/Module/Cdav.php:1381 ../../Zotlabs/Module/Profiles.php:793 #: ../../Zotlabs/Module/Connedit.php:924 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1385 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:798 #: ../../Zotlabs/Module/Connedit.php:929 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1386 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Cdav.php:1387 ../../Zotlabs/Module/Profiles.php:799 #: ../../Zotlabs/Module/Connedit.php:930 msgid "Add Field" msgstr "Añadir un campo" -#: ../../Zotlabs/Module/Cdav.php:1391 ../../Zotlabs/Module/Connedit.php:935 +#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:935 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1392 ../../Zotlabs/Module/Connedit.php:936 +#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:936 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1393 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:937 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1394 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:938 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1395 ../../Zotlabs/Module/Connedit.php:939 +#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:939 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1396 ../../Zotlabs/Module/Connedit.php:940 +#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Connedit.php:940 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1397 ../../Zotlabs/Module/Profiles.php:759 +#: ../../Zotlabs/Module/Cdav.php:1398 ../../Zotlabs/Module/Profiles.php:759 #: ../../Zotlabs/Module/Connedit.php:941 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Cdav.php:1456 +#: ../../Zotlabs/Module/Cdav.php:1457 msgid "Default Calendar" msgstr "Calendario por defecto" -#: ../../Zotlabs/Module/Cdav.php:1467 +#: ../../Zotlabs/Module/Cdav.php:1468 msgid "Default Addressbook" msgstr "Agenda de direcciones por defecto" @@ -9699,32 +9734,32 @@ msgctxt "acl" msgid "Profile" msgstr "Perfil" -#: ../../Zotlabs/Module/Item.php:747 +#: ../../Zotlabs/Module/Item.php:757 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:1181 +#: ../../Zotlabs/Module/Item.php:1189 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:1326 +#: ../../Zotlabs/Module/Item.php:1334 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1360 +#: ../../Zotlabs/Module/Item.php:1368 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1490 +#: ../../Zotlabs/Module/Item.php:1498 msgid "Unable to obtain post information from database." msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../Zotlabs/Module/Item.php:1497 +#: ../../Zotlabs/Module/Item.php:1505 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../Zotlabs/Module/Item.php:1504 +#: ../../Zotlabs/Module/Item.php:1512 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." @@ -10073,15 +10108,11 @@ msgstr "Canal premium o restringido" msgid "Not found" msgstr "No encontrado" -#: ../../Zotlabs/Module/Cloud.php:126 -msgid "Please refresh page" -msgstr "Por favor, recargue la página" - -#: ../../Zotlabs/Module/Cloud.php:129 +#: ../../Zotlabs/Module/Cloud.php:130 msgid "Unknown error" msgstr "Error desconocido" -#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2154 +#: ../../Zotlabs/Module/Share.php:104 ../../Zotlabs/Lib/Activity.php:2186 #, php-format msgid "🔁 Repeated %1$s's %2$s" msgstr "🔁 Repetidos %2$sde %1$s" @@ -10125,7 +10156,7 @@ msgid "Do you authorize the app %s to access your channel data?" msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" #: ../../Zotlabs/Module/Authorize.php:33 -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:319 msgid "Deny" msgstr "Rechazar" @@ -10182,13 +10213,13 @@ msgstr "Instantánea de pantalla" #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Security.php:98 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Accounts.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:408 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Addons.php:342 #: ../../Zotlabs/Module/Admin/Addons.php:440 -#: ../../Zotlabs/Module/Admin.php:138 +#: ../../Zotlabs/Module/Admin.php:141 msgid "Administration" msgstr "Administración" @@ -10357,526 +10388,690 @@ msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." msgid "Allow embedded (inline) PDF files" msgstr "Permitir ficheros PDF incrustados (en línea)" -#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#: ../../Zotlabs/Module/Admin/Accounts.php:128 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#: ../../Zotlabs/Module/Admin/Accounts.php:135 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin/Accounts.php:80 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#: ../../Zotlabs/Module/Admin/Accounts.php:192 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#: ../../Zotlabs/Module/Admin/Accounts.php:200 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "seleccionar todo" +#: ../../Zotlabs/Module/Admin/Accounts.php:240 +msgid "Unverified" +msgstr "Sin verificar" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" +#: ../../Zotlabs/Module/Admin/Accounts.php:243 +msgid "Expired" +msgstr "Caducado/a" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show verified registrations" +msgstr "Mostrar registros verificados" + +#: ../../Zotlabs/Module/Admin/Accounts.php:310 +msgid "Show all registrations" +msgstr "Mostrar todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:312 +msgid "Select toggle" +msgstr "Seleccionar alternar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:313 +msgid "Deny selected" +msgstr "Denegar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:314 +msgid "Approve selected" +msgstr "Aprobar seleccionado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "All registrations" +msgstr "Todos los registros" + +#: ../../Zotlabs/Module/Admin/Accounts.php:315 +msgid "Verified registrations waiting for approval" +msgstr "Registros verificados en espera de aprobación" + +#: ../../Zotlabs/Module/Admin/Accounts.php:316 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Sin registros." +#: ../../Zotlabs/Module/Admin/Accounts.php:316 +msgid "Requests" +msgstr "Solicitudes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No registrations available" +msgstr "No hay registros disponibles" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Admin/Accounts.php:317 +msgid "No verified registrations available" +msgstr "No hay registros verificados disponibles" + +#: ../../Zotlabs/Module/Admin/Accounts.php:321 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Admin/Accounts.php:322 #: ../../Zotlabs/Module/Connedit.php:629 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Admin/Accounts.php:323 +msgid "Verified" +msgstr "Verificado/a" + +#: ../../Zotlabs/Module/Admin/Accounts.php:324 +msgid "Not yet verified" +msgstr "Aún no se ha verificado" + +#: ../../Zotlabs/Module/Admin/Accounts.php:329 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" +#: ../../Zotlabs/Module/Admin/Accounts.php:331 +msgid "All channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:332 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:333 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 +#: ../../Zotlabs/Module/Admin/Accounts.php:334 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" +#: ../../Zotlabs/Module/Admin/Accounts.php:335 +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Service class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Accounts.php:190 +#: ../../Zotlabs/Module/Admin/Accounts.php:337 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Accounts.php:191 +#: ../../Zotlabs/Module/Admin/Accounts.php:338 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Site.php:165 +#: ../../Zotlabs/Module/Admin/Site.php:112 +msgid "Invalid input" +msgstr "Entrada no válida" + +#: ../../Zotlabs/Module/Admin/Site.php:132 +msgid "Errors" +msgstr "Errores" + +#: ../../Zotlabs/Module/Admin/Site.php:225 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Admin/Site.php:262 #: ../../Zotlabs/Module/Settings/Display.php:118 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Admin/Site.php:269 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:211 +#: ../../Zotlabs/Module/Admin/Site.php:271 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:213 +#: ../../Zotlabs/Module/Admin/Site.php:273 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:260 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Default permission role for new accounts" msgstr "Permisos de rol por defecto para las nuevas cuentas" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "" "This role will be used for the first channel created after registration." msgstr "Este rol se utilizará para el primer canal creado después del registro." -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:353 ../../Zotlabs/Module/Invite.php:398 +msgid "Minute(s)" +msgstr "Minuto(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:354 ../../Zotlabs/Module/Invite.php:399 +msgid "Hour(s)" +msgstr "Hora(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:355 ../../Zotlabs/Module/Invite.php:400 +msgid "Day(s)" +msgstr "Día(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Week(s)" +msgstr "Semana(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:357 +msgid "Month(s)" +msgstr "Mes(Meses)" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Year(s)" +msgstr "Año(s)" + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Register verification delay" +msgstr "Retraso en la verificación del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Time to wait before a registration can be verified" +msgstr "Tiempo de espera para verificar un registro " + +#: ../../Zotlabs/Module/Admin/Site.php:372 +#: ../../Zotlabs/Module/Admin/Site.php:394 ../../Zotlabs/Module/Invite.php:409 +msgid "duration up from now" +msgstr "duración a partir de ahora " + +#: ../../Zotlabs/Module/Admin/Site.php:388 +msgid "Register verification expiration time" +msgstr "Tiempo de caducidad de la verificación del registro " + +#: ../../Zotlabs/Module/Admin/Site.php:391 +msgid "Time before an unverified registration will expire" +msgstr "Tiempo antes de que caduque un registro no verificado " + +#: ../../Zotlabs/Module/Admin/Site.php:414 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:415 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:422 msgid "Unfiltered HTML/CSS/JS is allowed" msgstr "Se permite HTML/CSS/JS sin filtrar" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:423 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 #: ../../Zotlabs/Module/Siteinfo.php:24 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:424 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:425 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:426 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:429 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:430 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Invitation only" -msgstr "Solo con una invitación" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." - -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age" msgstr "Edad mínima" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:431 msgid "Minimum age (in years) for who may register on this site." msgstr "Edad mínima (en años) para poder registrarse en este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:432 msgid "This is displayed on the public server site list." msgstr "Esto se muestra en la lista de sitios de servidores públicos." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:438 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." +#: ../../Zotlabs/Module/Admin/Site.php:440 +msgid "This text will be displayed prominently at the registration page" +msgstr "Este texto se mostrará de forma destacada en la página de registro " -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:444 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" + +#: ../../Zotlabs/Module/Admin/Site.php:451 +msgid "Configure the registration open days/hours" +msgstr "Configurar los días/horas de apertura del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:453 +msgid "Empty or '-:-' value will keep registration open 24/7 (default)" +msgstr "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)" + +#: ../../Zotlabs/Module/Admin/Site.php:454 +msgid "" +"Weekdays and hours must be separated by colon ':', From-To ranges with a " +"dash `-` example: 1:800-1200" +msgstr "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200" + +#: ../../Zotlabs/Module/Admin/Site.php:455 +msgid "" +"Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 " +"2:900-1700" +msgstr "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:456 +msgid "" +"From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 " +"or 1-2,4-5:900-1700" +msgstr "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700" + +#: ../../Zotlabs/Module/Admin/Site.php:457 +msgid "Advanced examples:" +msgstr "Ejemplos avanzados: " + +#: ../../Zotlabs/Module/Admin/Site.php:457 +#: ../../Zotlabs/Module/Settings/Channel.php:420 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Admin/Site.php:458 +msgid "Check your configuration" +msgstr "Compruebe su configuración" + +#: ../../Zotlabs/Module/Admin/Site.php:462 +msgid "Max account registrations per day" +msgstr "Máximo de registros de cuentas por día " + +#: ../../Zotlabs/Module/Admin/Site.php:464 +msgid "Unlimited if zero or no value - default 50" +msgstr "Ilimitado si es cero o sin valor - por defecto 50" + +#: ../../Zotlabs/Module/Admin/Site.php:468 +msgid "Max account registrations from same IP" +msgstr "Máximo de registros de cuentas desde la misma IP" + +#: ../../Zotlabs/Module/Admin/Site.php:470 +msgid "Unlimited if zero or no value - default 3" +msgstr "Ilimitado si es cero o sin valor - por defecto 3" + +#: ../../Zotlabs/Module/Admin/Site.php:476 +msgid "Auto channel create" +msgstr "Creación automática de canales" + +#: ../../Zotlabs/Module/Admin/Site.php:478 +msgid "" +"If disabled the channel will be created in a separate step during the " +"registration process" +msgstr "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro" + +#: ../../Zotlabs/Module/Admin/Site.php:482 +msgid "Require invite code" +msgstr "Solicitar código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:487 +msgid "Allow invite code" +msgstr "Permitir código de invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:492 +msgid "Require email address" +msgstr "Solicitar dirección de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Site.php:494 +msgid "The provided email address will be verified (recommended)" +msgstr "La dirección de correo electrónico proporcionada será verificada (recomendado)" + +#: ../../Zotlabs/Module/Admin/Site.php:498 +msgid "Abandon account after x days" +msgstr "Abandonar la cuenta después de x días" + +#: ../../Zotlabs/Module/Admin/Site.php:500 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." + +#: ../../Zotlabs/Module/Admin/Site.php:505 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:505 msgid "" "example: 'pubstream' to show public stream, 'page/sys/home' to show a system" " webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo." -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:319 +#: ../../Zotlabs/Module/Admin/Site.php:506 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." - -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:507 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." - -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:509 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "Site only Public Streams" msgstr "Solo contenido público en este sitio" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:510 msgid "" "Allow access to public content originating only from this site if Imported " "Public Streams are disabled." msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "Allow anybody on the internet to access the Public streams" msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:511 msgid "" "Disable to require authentication before viewing. Warning: this content is " "unmoderated." msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:512 msgid "Only import Public stream posts with this text" msgstr "Importar solo entradas del stream púlbico con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:327 -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:513 #: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:886 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:513 msgid "Do not import Public stream posts with this text" msgstr "No importar entradas del stream público con este texto " -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:331 +#: ../../Zotlabs/Module/Admin/Site.php:516 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:332 +#: ../../Zotlabs/Module/Admin/Site.php:517 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin/Site.php:334 +#: ../../Zotlabs/Module/Admin/Site.php:519 msgid "Reply-to email address for system generated email." msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:335 +#: ../../Zotlabs/Module/Admin/Site.php:520 msgid "Sender (From) email address for system generated email." msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:336 +#: ../../Zotlabs/Module/Admin/Site.php:521 msgid "Name of email sender for system generated email." msgstr "Nombre del remitente del correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:338 +#: ../../Zotlabs/Module/Admin/Site.php:523 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "Enable SSE Notifications" msgstr "Habilitar notificaciones SSE" -#: ../../Zotlabs/Module/Admin/Site.php:340 +#: ../../Zotlabs/Module/Admin/Site.php:525 msgid "" "If disabled, traditional polling will be used. Warning: this setting might " "not be suited for shared hosting" msgstr "Si está desactivado, se usará el sistema de votación tradicional. Advertencia: esta configuración podría no ser adecuada para el alojamiento compartido" -#: ../../Zotlabs/Module/Admin/Site.php:342 +#: ../../Zotlabs/Module/Admin/Site.php:527 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:343 +#: ../../Zotlabs/Module/Admin/Site.php:528 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:344 +#: ../../Zotlabs/Module/Admin/Site.php:529 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:345 +#: ../../Zotlabs/Module/Admin/Site.php:530 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:346 +#: ../../Zotlabs/Module/Admin/Site.php:531 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:532 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Admin/Site.php:533 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:349 +#: ../../Zotlabs/Module/Admin/Site.php:534 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:350 +#: ../../Zotlabs/Module/Admin/Site.php:535 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin/Site.php:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin/Site.php:351 +#: ../../Zotlabs/Module/Admin/Site.php:536 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin/Site.php:352 +#: ../../Zotlabs/Module/Admin/Site.php:537 msgid "" "Do not expire any posts which have comments less than this many days ago" msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 msgid "" "Public servers: Optional landing (marketing) webpage for new registrants" msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" -#: ../../Zotlabs/Module/Admin/Site.php:354 +#: ../../Zotlabs/Module/Admin/Site.php:538 #, php-format msgid "Create this page first. Default is %s/register" msgstr "Crear esta página primero. Por defecto es %s/register" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Page to display after creating a new channel" msgstr "Página a mostrar después de la creación de un nuevo canal" -#: ../../Zotlabs/Module/Admin/Site.php:355 +#: ../../Zotlabs/Module/Admin/Site.php:539 msgid "Default: profiles" msgstr "Perfiles predeterminados" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Optional: site location" msgstr "Opcional: ubicación del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:357 +#: ../../Zotlabs/Module/Admin/Site.php:540 msgid "Region or country" msgstr "Región o país" +#: ../../Zotlabs/Module/Admin/Site.php:625 +#: ../../Zotlabs/Module/Admin/Site.php:626 +msgid "Invalid 24h time value (hhmm/hmm)" +msgstr "Valor de tiempo de 24h no válido (hhmm/hmm)" + #: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." @@ -10953,6 +11148,10 @@ msgstr "Código permitido al canal '%s'" msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleccionar todo" + #: ../../Zotlabs/Module/Admin/Channels.php:150 #: ../../Zotlabs/Module/Directory.php:362 msgid "Censor" @@ -11016,10 +11215,6 @@ msgstr "Nueva contraseña otra vez" msgid "Account language (for emails)" msgstr "Idioma de la cuenta (para los correos electrónicos)" -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Service class" -msgstr "Clase de servicio" - #: ../../Zotlabs/Module/Admin/Profs.php:89 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -11286,6 +11481,129 @@ msgstr "Por favor, introduzca su contraseña para su verificación:" msgid "Remove Channel" msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resent" +msgstr "Correo electrónico reenviado" + +#: ../../Zotlabs/Module/Regate.php:81 +msgid "Email resend failed" +msgstr "Fallo en el reenvío del correo electrónico" + +#: ../../Zotlabs/Module/Regate.php:105 +msgid "Verify successfull" +msgstr "Verificar que se ha hecho bien" + +#: ../../Zotlabs/Module/Regate.php:149 +msgid "Account successfull created" +msgstr "Cuenta creada con éxito" + +#: ../../Zotlabs/Module/Regate.php:190 +msgid "Channel successfull created" +msgstr "Canal creado con éxito" + +#: ../../Zotlabs/Module/Regate.php:196 +msgid "Automatic channel creation failed. Please create a channel." +msgstr "La creación automática de canales ha fallado. Por favor, cree un canal." + +#: ../../Zotlabs/Module/Regate.php:208 +msgid "Account creation error" +msgstr "Error en la creación de la cuenta" + +#: ../../Zotlabs/Module/Regate.php:220 +msgid "Verify failed" +msgstr "Verificación fallida" + +#: ../../Zotlabs/Module/Regate.php:225 +msgid "Token verification failed" +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Regate.php:230 +msgid "Request not inside time frame" +msgstr "Solicitud fuera de plazo" + +#: ../../Zotlabs/Module/Regate.php:236 ../../Zotlabs/Module/Regate.php:266 +msgid "Identity unknown" +msgstr "Identidad desconocida" + +#: ../../Zotlabs/Module/Regate.php:242 +msgid "dId2 mistaken" +msgstr "did2 equivocado/a" + +#: ../../Zotlabs/Module/Regate.php:270 +msgid "Your Registration ID" +msgstr "Su ID de registro" + +#: ../../Zotlabs/Module/Regate.php:283 ../../Zotlabs/Module/Regate.php:374 +#: ../../Zotlabs/Module/Regate.php:403 +msgid "Registration verification" +msgstr "Verificación del registro" + +#: ../../Zotlabs/Module/Regate.php:290 ../../Zotlabs/Module/Regate.php:408 +msgid "Hold on, you can start verification in" +msgstr "Espere, puede empezar la verificación en " + +#: ../../Zotlabs/Module/Regate.php:291 +msgid "Please remember your verification token for ID" +msgstr "Por favor, recuerde su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:292 +msgid "Token validity" +msgstr "Validez del token" + +#: ../../Zotlabs/Module/Regate.php:328 +msgid "Resend" +msgstr "Reenviar" + +#: ../../Zotlabs/Module/Regate.php:333 +msgid "Registration status" +msgstr "Estado del registro" + +#: ../../Zotlabs/Module/Regate.php:336 +msgid "Verification successful!" +msgstr "¡Verificación exitosa!" + +#: ../../Zotlabs/Module/Regate.php:337 +msgid "Your login ID is" +msgstr "Su ID de acceso es" + +#: ../../Zotlabs/Module/Regate.php:338 +msgid "" +"After your account has been approved by our administrator you will be able " +"to login with your login ID and your provided password." +msgstr "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada." + +#: ../../Zotlabs/Module/Regate.php:350 +msgid "Registration request revoked" +msgstr "Solicitud de registro anulada" + +#: ../../Zotlabs/Module/Regate.php:351 +msgid "Sorry for any inconvience. Thank you for your response." +msgstr "Disculpe las molestias. Gracias por su respuesta." + +#: ../../Zotlabs/Module/Regate.php:375 +msgid "Please enter your verification token for ID" +msgstr "Por favor, introduzca su token de verificación para la identificación" + +#: ../../Zotlabs/Module/Regate.php:385 +msgid "Verification token" +msgstr "Token de verificación " + +#: ../../Zotlabs/Module/Regate.php:396 +msgid "ID expired" +msgstr "ID caducada" + +#: ../../Zotlabs/Module/Regate.php:409 +msgid "You will require the verification token for ID" +msgstr "Necesitará el token de verificación para identificarse" + +#: ../../Zotlabs/Module/Regate.php:417 +msgid "Unknown or expired ID" +msgstr "ID desconocida o caducada" + +#: ../../Zotlabs/Module/Regate.php:428 +msgid "dId2 malformed" +msgstr "did2 malformado/a" + #: ../../Zotlabs/Module/Events.php:468 msgid "Edit event title" msgstr "Editar el título del evento" @@ -11534,7 +11852,7 @@ msgid "" msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." #: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:105 +#: ../../Zotlabs/Module/Settings/Account.php:109 msgid "Remove Account" msgstr "Eliminar cuenta" @@ -11546,30 +11864,30 @@ msgstr "App idioma" msgid "Change UI language" msgstr "Cambiar el idioma de la interfaz de usuario" -#: ../../Zotlabs/Module/Uexport.php:61 +#: ../../Zotlabs/Module/Uexport.php:62 msgid "Channel Export App" msgstr "App Exportación de canales" -#: ../../Zotlabs/Module/Uexport.php:62 +#: ../../Zotlabs/Module/Uexport.php:63 msgid "Export your channel" msgstr "Exportar su canal" -#: ../../Zotlabs/Module/Uexport.php:72 ../../Zotlabs/Module/Uexport.php:73 +#: ../../Zotlabs/Module/Uexport.php:73 ../../Zotlabs/Module/Uexport.php:74 msgid "Export Channel" msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Uexport.php:74 +#: ../../Zotlabs/Module/Uexport.php:75 msgid "" "Export your basic channel information to a file. This acts as a backup of " "your connections, permissions, profile and basic data, which can be used to " "import your data to a new server hub, but does not contain your content." msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../Zotlabs/Module/Uexport.php:75 +#: ../../Zotlabs/Module/Uexport.php:76 msgid "Export Content" msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Uexport.php:76 +#: ../../Zotlabs/Module/Uexport.php:77 msgid "" "Export your channel information and recent content to a JSON backup that can" " be restored or imported to another server hub. This backs up all of your " @@ -11578,11 +11896,11 @@ msgid "" " this download to begin." msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../Zotlabs/Module/Uexport.php:78 +#: ../../Zotlabs/Module/Uexport.php:79 msgid "Export your posts from a given year." msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Uexport.php:80 +#: ../../Zotlabs/Module/Uexport.php:81 msgid "" "You may also export your posts and conversations for a particular year or " "month. Adjust the date in your browser location bar to select other dates. " @@ -11590,21 +11908,21 @@ msgid "" "please try again selecting a more limited date range." msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../Zotlabs/Module/Uexport.php:81 +#: ../../Zotlabs/Module/Uexport.php:82 #, php-format msgid "" "To select all posts for a given year, such as this year, visit %2$s" msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:82 +#: ../../Zotlabs/Module/Uexport.php:83 #, php-format msgid "" "To select all posts for a given month, such as January of this year, visit " "%2$s" msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../Zotlabs/Module/Uexport.php:83 +#: ../../Zotlabs/Module/Uexport.php:84 #, php-format msgid "" "These content files may be imported or restored by visiting %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Display.php:380 +#: ../../Zotlabs/Module/Display.php:372 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:425 +#: ../../Zotlabs/Module/Display.php:417 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -11664,12 +11982,21 @@ msgstr "Los caracteres permitidos son a-z 0-9, - and _" msgid "Channel name" msgstr "Nombre del canal" +#: ../../Zotlabs/Module/New_channel.php:178 +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" + #: ../../Zotlabs/Module/New_channel.php:178 msgid "" "Select a channel permission role compatible with your usage needs and " "privacy requirements." msgstr "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad." +#: ../../Zotlabs/Module/New_channel.php:178 +msgid "Read more about channel permission roles" +msgstr "Leer más sobre los roles y permisos" + #: ../../Zotlabs/Module/New_channel.php:181 msgid "Create a Channel" msgstr "Crear un canal" @@ -11698,7 +12025,7 @@ msgstr "le ha enviado un mensaje privado" msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:418 ../../Zotlabs/Lib/Enotify.php:986 +#: ../../Zotlabs/Module/Ping.php:418 msgid "requires approval" msgstr "requiere aprobación" @@ -11719,11 +12046,11 @@ msgstr "publicó un evento" msgid "shared a file with you" msgstr "compartió un archivo con usted" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Private forum" msgstr "Foro privado" -#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:540 +#: ../../Zotlabs/Module/Ping.php:672 ../../Zotlabs/Module/Sse_bs.php:554 msgid "Public forum" msgstr "Foro público" @@ -11857,43 +12184,43 @@ msgstr "Cuentas caducadas" msgid "Expiring accounts" msgstr "Cuentas que caducan" -#: ../../Zotlabs/Module/Admin.php:120 +#: ../../Zotlabs/Module/Admin.php:123 msgid "Message queues" msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Admin.php:134 +#: ../../Zotlabs/Module/Admin.php:137 msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:139 +#: ../../Zotlabs/Module/Admin.php:142 msgid "Summary" msgstr "Sumario" -#: ../../Zotlabs/Module/Admin.php:142 +#: ../../Zotlabs/Module/Admin.php:145 msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:143 +#: ../../Zotlabs/Module/Admin.php:146 msgid "Pending registrations" msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Admin.php:144 +#: ../../Zotlabs/Module/Admin.php:147 msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:145 +#: ../../Zotlabs/Module/Admin.php:148 msgid "Active addons" msgstr "Addons acivos" -#: ../../Zotlabs/Module/Admin.php:146 +#: ../../Zotlabs/Module/Admin.php:149 msgid "Version" msgstr "Versión" -#: ../../Zotlabs/Module/Admin.php:147 +#: ../../Zotlabs/Module/Admin.php:150 msgid "Repository version (master)" msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Admin.php:148 +#: ../../Zotlabs/Module/Admin.php:151 msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" @@ -12132,7 +12459,7 @@ msgid "Use a photo from your albums" msgstr "Usar una foto de sus álbumes" #: ../../Zotlabs/Module/Profile_photo.php:511 -#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:405 +#: ../../Zotlabs/Module/Cover_photo.php:432 ../../Zotlabs/Module/Wiki.php:404 msgid "Choose a different album" msgstr "Elegir un álbum diferente..." @@ -12217,7 +12544,7 @@ msgstr "Archivadas o inaccesibles" #: ../../Zotlabs/Module/Connections.php:83 #: ../../Zotlabs/Module/Connections.php:92 ../../Zotlabs/Module/Menu.php:180 -#: ../../Zotlabs/Module/Notifications.php:50 +#: ../../Zotlabs/Module/Notifications.php:53 msgid "New" msgstr "Nuevas" @@ -12526,7 +12853,7 @@ msgid "" "Password reset failed." msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1720 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1725 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -12743,7 +13070,7 @@ msgid "Your full name" msgstr "Nombre completo" #: ../../Zotlabs/Module/Profiles.php:752 -msgid "Short title/tescription" +msgid "Short title/description" msgstr "Breve título y descripción" #: ../../Zotlabs/Module/Profiles.php:752 @@ -12842,12 +13169,12 @@ msgstr "Mis otros canales" msgid "Communications" msgstr "Comunicaciones" -#: ../../Zotlabs/Module/Subthread.php:143 +#: ../../Zotlabs/Module/Subthread.php:128 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../Zotlabs/Module/Subthread.php:145 +#: ../../Zotlabs/Module/Subthread.php:130 #, php-format msgid "%1$s stopped following %2$s's %3$s" msgstr "%1$s ha dejado de seguir %3$s de %2$s" @@ -12914,74 +13241,121 @@ msgstr "Nueva dirección del canal" msgid "Rename Channel" msgstr "Renombrar el canal" -#: ../../Zotlabs/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../Zotlabs/Module/Invite.php:56 ../../Zotlabs/Module/Invite.php:310 +msgid "Invite App" +msgstr "Solicitar una app" + +#: ../../Zotlabs/Module/Invite.php:68 +msgid "Register is closed" +msgstr "El registro está cerrado" -#: ../../Zotlabs/Module/Invite.php:61 +#: ../../Zotlabs/Module/Invite.php:102 ../../Zotlabs/Module/Invite.php:549 +msgid "Note, the invitation code is valid up to" +msgstr "Tenga en cuenta que el código de invitación es válido hasta " + +#: ../../Zotlabs/Module/Invite.php:115 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +msgid "Too many recipients for one invitation (max %d)" +msgstr "Demasiados destinatarios para una invitación (máx %d)" -#: ../../Zotlabs/Module/Invite.php:75 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../Zotlabs/Module/Invite.php:119 +msgid "No recipients for this invitation" +msgstr "No hay destinatarios para esta invitación" -#: ../../Zotlabs/Module/Invite.php:85 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." +#: ../../Zotlabs/Module/Invite.php:133 +#, php-format +msgid "(%s) : Not a valid email address" +msgstr "(%s): No es una dirección de correo electrónico válida" -#: ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Invite.php:138 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +msgid "(%s) : Not a real email address" +msgstr "(%s) : No es una dirección de correo electrónica real" -#: ../../Zotlabs/Module/Invite.php:110 -msgid "Invite App" -msgstr "Solicitar una app" +#: ../../Zotlabs/Module/Invite.php:145 +#, php-format +msgid "(%s) : Not allowed email address" +msgstr "(%s) : Dirección de correo electrónico no permitida" -#: ../../Zotlabs/Module/Invite.php:111 -msgid "Send email invitations to join this network" -msgstr "Enviar invitaciones por correo electrónico para unirse a esta red" +#: ../../Zotlabs/Module/Invite.php:158 +#, php-format +msgid "(%s) : email address already in use" +msgstr "(%s) : La dirección de correo electrónico ya está en uso" + +#: ../../Zotlabs/Module/Invite.php:165 +#, php-format +msgid "(%s) : Accepted email address" +msgstr "(%s) : Dirección de correo electrónico aceptada" + +#: ../../Zotlabs/Module/Invite.php:257 +#, php-format +msgid "To %s : Message delivery success." +msgstr "To %s : Entrega exitosa del mensaje." + +#: ../../Zotlabs/Module/Invite.php:289 +#, php-format +msgid "%1$d mail(s) sent, %2$d mail error(s)" +msgstr "%1$d correo(s) enviado, %2$d error(es) de correo" -#: ../../Zotlabs/Module/Invite.php:124 +#: ../../Zotlabs/Module/Invite.php:315 +msgid "Invites not proposed by configuration" +msgstr "Invitaciones no propuestas por la configuración" + +#: ../../Zotlabs/Module/Invite.php:316 +msgid "Contact the site admin" +msgstr "Contactar con el administrador del sitio" + +#: ../../Zotlabs/Module/Invite.php:332 +msgid "Invites by users not enabled" +msgstr "Invitaciones de usuarios no habilitadas" + +#: ../../Zotlabs/Module/Invite.php:337 msgid "You have no more invitations available" msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Invite.php:155 +#: ../../Zotlabs/Module/Invite.php:353 +msgid "Not on xchan" +msgstr "No en xchan" + +#: ../../Zotlabs/Module/Invite.php:386 +msgid "All users invitation limit exceeded." +msgstr "Se ha superado el límite de invitaciones a todos los usuarios." + +#: ../../Zotlabs/Module/Invite.php:404 +msgid "Invitation expires after" +msgstr "La invitación expira después de " + +#: ../../Zotlabs/Module/Invite.php:504 ../../Zotlabs/Module/Invite.php:543 +msgid "Invitation" +msgstr "Invitación" + +#: ../../Zotlabs/Module/Invite.php:534 msgid "Send invitations" msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Invite.php:156 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../Zotlabs/Module/Invite.php:535 +msgid "Invitations I am using" +msgstr "Invitaciones que estoy utilizando " -#: ../../Zotlabs/Module/Invite.php:160 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../Zotlabs/Module/Invite.php:536 +msgid "Invitations we are using" +msgstr "Invitaciones que usamos " -#: ../../Zotlabs/Module/Invite.php:161 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" +#: ../../Zotlabs/Module/Invite.php:537 +msgid "§ Note, the email(s) sent will be recorded in the system logs" +msgstr "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema" -#: ../../Zotlabs/Module/Invite.php:163 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." +#: ../../Zotlabs/Module/Invite.php:538 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Invite.php:164 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Invite.php:540 +msgid "Invite template" +msgstr "Plantilla de invitación" -#: ../../Zotlabs/Module/Invite.php:166 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../Zotlabs/Module/Invite.php:548 +msgid "Here you may enter personal notes to the recipient(s)" +msgstr "Aquí puede introducir notas personales para el/los destinatario(s)" #: ../../Zotlabs/Module/Notes.php:57 msgid "Notes App" @@ -13126,10 +13500,6 @@ msgstr "Publicar su perfil principal en el directorio de la red" msgid "Allow us to suggest you as a potential friend to new members?" msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../Zotlabs/Module/Settings/Channel.php:420 -msgid "or" -msgstr "o" - #: ../../Zotlabs/Module/Settings/Channel.php:429 msgid "Your channel address is" msgstr "Su dirección de canal es" @@ -13157,7 +13527,6 @@ msgid "Basic Settings" msgstr "Configuración básica" #: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Email Address:" msgstr "Dirección de correo electrónico:" @@ -13476,59 +13845,63 @@ msgstr "Carpeta por defecto de los ficheros subidos" msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Account.php:19 +#: ../../Zotlabs/Module/Settings/Account.php:21 msgid "Not valid email." msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Settings/Account.php:22 +#: ../../Zotlabs/Module/Settings/Account.php:24 msgid "Protected email address. Cannot change to that email." msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../Zotlabs/Module/Settings/Account.php:31 +#: ../../Zotlabs/Module/Settings/Account.php:33 msgid "System failure storing new email. Please try again." msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:48 +#: ../../Zotlabs/Module/Settings/Account.php:51 msgid "Password verification failed." msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Settings/Account.php:55 +#: ../../Zotlabs/Module/Settings/Account.php:58 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:59 +#: ../../Zotlabs/Module/Settings/Account.php:62 msgid "Empty passwords are not allowed. Password unchanged." msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Settings/Account.php:73 +#: ../../Zotlabs/Module/Settings/Account.php:76 msgid "Password changed." msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Settings/Account.php:75 +#: ../../Zotlabs/Module/Settings/Account.php:78 msgid "Password update failed. Please try again." msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../Zotlabs/Module/Settings/Account.php:99 +#: ../../Zotlabs/Module/Settings/Account.php:103 msgid "Account Settings" msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Settings/Account.php:100 +#: ../../Zotlabs/Module/Settings/Account.php:104 msgid "Current Password" msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Settings/Account.php:101 +#: ../../Zotlabs/Module/Settings/Account.php:105 msgid "Enter New Password" msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Confirm New Password" msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Settings/Account.php:102 +#: ../../Zotlabs/Module/Settings/Account.php:106 msgid "Leave password fields blank unless changing" msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Settings/Account.php:106 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "DId2 or Email Address:" +msgstr "Did2 o dirección de correo electrónico: " + +#: ../../Zotlabs/Module/Settings/Account.php:110 msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" @@ -14040,135 +14413,135 @@ msgstr "App Wiki" msgid "Provide a wiki for your channel" msgstr "Proporcionar un wiki para su canal" -#: ../../Zotlabs/Module/Wiki.php:133 +#: ../../Zotlabs/Module/Wiki.php:132 msgid "Error retrieving wiki" msgstr "Error al recuperar el wiki" -#: ../../Zotlabs/Module/Wiki.php:140 +#: ../../Zotlabs/Module/Wiki.php:139 msgid "Error creating zip file export folder" msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" -#: ../../Zotlabs/Module/Wiki.php:191 +#: ../../Zotlabs/Module/Wiki.php:190 msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " -#: ../../Zotlabs/Module/Wiki.php:212 ../../Zotlabs/Storage/Browser.php:404 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Storage/Browser.php:404 msgid "Download" msgstr "Descargar" -#: ../../Zotlabs/Module/Wiki.php:216 +#: ../../Zotlabs/Module/Wiki.php:215 msgid "Wiki name" msgstr "Nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:217 +#: ../../Zotlabs/Module/Wiki.php:216 msgid "Content type" msgstr "Tipo de contenido" -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Storage/Browser.php:378 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Module/Wiki.php:220 +#: ../../Zotlabs/Module/Wiki.php:219 msgid "Any type" msgstr "Cualquier tipo" -#: ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:226 msgid "Lock content type" msgstr "Tipo de contenido bloqueado" -#: ../../Zotlabs/Module/Wiki.php:228 +#: ../../Zotlabs/Module/Wiki.php:227 msgid "Create a status post for this wiki" msgstr "Crear un mensaje de estado para este wiki" -#: ../../Zotlabs/Module/Wiki.php:229 +#: ../../Zotlabs/Module/Wiki.php:228 msgid "Edit Wiki Name" msgstr "Editar el nombre del wiki" -#: ../../Zotlabs/Module/Wiki.php:274 +#: ../../Zotlabs/Module/Wiki.php:273 msgid "Wiki not found" msgstr "Wiki no encontrado" -#: ../../Zotlabs/Module/Wiki.php:300 +#: ../../Zotlabs/Module/Wiki.php:299 msgid "Rename page" msgstr "Renombrar la página" -#: ../../Zotlabs/Module/Wiki.php:321 +#: ../../Zotlabs/Module/Wiki.php:320 msgid "Error retrieving page content" msgstr "Error al recuperar el contenido de la página" -#: ../../Zotlabs/Module/Wiki.php:329 ../../Zotlabs/Module/Wiki.php:331 +#: ../../Zotlabs/Module/Wiki.php:328 ../../Zotlabs/Module/Wiki.php:330 msgid "New page" msgstr "Nueva página" -#: ../../Zotlabs/Module/Wiki.php:366 +#: ../../Zotlabs/Module/Wiki.php:365 msgid "Revision Comparison" msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Wiki.php:374 +#: ../../Zotlabs/Module/Wiki.php:373 msgid "Short description of your changes (optional)" msgstr "Breve descripción de sus cambios (opcional)" -#: ../../Zotlabs/Module/Wiki.php:394 +#: ../../Zotlabs/Module/Wiki.php:393 msgid "New page name" msgstr "Nombre de la nueva página" -#: ../../Zotlabs/Module/Wiki.php:399 +#: ../../Zotlabs/Module/Wiki.php:398 msgid "Embed image from photo albums" msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Wiki.php:410 +#: ../../Zotlabs/Module/Wiki.php:409 msgid "History" msgstr "Historial" -#: ../../Zotlabs/Module/Wiki.php:488 +#: ../../Zotlabs/Module/Wiki.php:487 msgid "Error creating wiki. Invalid name." msgstr "Error al crear el wiki: el nombre no es válido." -#: ../../Zotlabs/Module/Wiki.php:495 +#: ../../Zotlabs/Module/Wiki.php:494 msgid "A wiki with this name already exists." msgstr "Ya hay un wiki con este nombre." -#: ../../Zotlabs/Module/Wiki.php:508 +#: ../../Zotlabs/Module/Wiki.php:507 msgid "Wiki created, but error creating Home page." msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio." -#: ../../Zotlabs/Module/Wiki.php:515 +#: ../../Zotlabs/Module/Wiki.php:514 msgid "Error creating wiki" msgstr "Error al crear el wiki" -#: ../../Zotlabs/Module/Wiki.php:539 +#: ../../Zotlabs/Module/Wiki.php:538 msgid "Error updating wiki. Invalid name." msgstr "Error al actualizar el wiki. Nombre no válido." -#: ../../Zotlabs/Module/Wiki.php:559 +#: ../../Zotlabs/Module/Wiki.php:557 msgid "Error updating wiki" msgstr "Error al actualizar el wiki" -#: ../../Zotlabs/Module/Wiki.php:574 +#: ../../Zotlabs/Module/Wiki.php:572 msgid "Wiki delete permission denied." msgstr "Se ha denegado el permiso para eliminar el wiki." -#: ../../Zotlabs/Module/Wiki.php:584 +#: ../../Zotlabs/Module/Wiki.php:582 msgid "Error deleting wiki" msgstr "Se ha producido un error al eliminar el wiki" -#: ../../Zotlabs/Module/Wiki.php:617 +#: ../../Zotlabs/Module/Wiki.php:615 msgid "New page created" msgstr "Se ha creado la nueva página" -#: ../../Zotlabs/Module/Wiki.php:739 +#: ../../Zotlabs/Module/Wiki.php:741 msgid "Cannot delete Home" msgstr "No se puede eliminar la página principal" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Current Revision" msgstr "Revisión actual" -#: ../../Zotlabs/Module/Wiki.php:803 +#: ../../Zotlabs/Module/Wiki.php:817 msgid "Selected Revision" msgstr "Revisión seleccionada" -#: ../../Zotlabs/Module/Wiki.php:853 +#: ../../Zotlabs/Module/Wiki.php:872 msgid "You must be authenticated." msgstr "Debe estar autenticado." @@ -14446,17 +14819,17 @@ msgstr "Última actualización:" msgid "Details" msgstr "Detalles" -#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Notifications.php:58 #: ../../Zotlabs/Module/Notify.php:61 msgid "No more system notifications." msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:59 +#: ../../Zotlabs/Module/Notifications.php:62 #: ../../Zotlabs/Module/Notify.php:65 msgid "System Notifications" msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Module/Notifications.php:63 #: ../../Zotlabs/Lib/ThreadItem.php:484 msgid "Mark all seen" msgstr "Marcar todo como visto" @@ -14674,32 +15047,32 @@ msgctxt "permcat" msgid "publisher" msgstr "editor" -#: ../../Zotlabs/Lib/Activity.php:2131 +#: ../../Zotlabs/Lib/Activity.php:2163 #, php-format msgid "Likes %1$s's %2$s" msgstr "Gusta de %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2134 +#: ../../Zotlabs/Lib/Activity.php:2166 #, php-format msgid "Doesn't like %1$s's %2$s" msgstr "No le gusta %2$sde %1$s" -#: ../../Zotlabs/Lib/Activity.php:2140 +#: ../../Zotlabs/Lib/Activity.php:2172 #, php-format msgid "Will attend %s's event" msgstr "Asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2143 +#: ../../Zotlabs/Lib/Activity.php:2175 #, php-format msgid "Will not attend %s's event" msgstr "No asistirá al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2146 +#: ../../Zotlabs/Lib/Activity.php:2178 #, php-format msgid "May attend %s's event" msgstr "Puede asistir al evento de %s" -#: ../../Zotlabs/Lib/Activity.php:2149 +#: ../../Zotlabs/Lib/Activity.php:2181 #, php-format msgid "May not attend %s's event" msgstr "Puede no asistir al evento de %s" @@ -14984,6 +15357,10 @@ msgstr "ha editado un comentario %s" msgid "created an event" msgstr "se creó un evento" +#: ../../Zotlabs/Lib/Enotify.php:986 +msgid "verified" +msgstr "verificado" + #: ../../Zotlabs/Lib/Connect.php:271 msgid "error saving data" msgstr "error guardando los datos" @@ -15008,11 +15385,11 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/NativeWiki.php:145 +#: ../../Zotlabs/Lib/NativeWiki.php:146 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" -#: ../../Zotlabs/Lib/NativeWiki.php:199 +#: ../../Zotlabs/Lib/NativeWiki.php:206 msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" @@ -15165,51 +15542,51 @@ msgstr "(Sin título)" msgid "Wiki page create failed." msgstr "Se ha producido un error en la creación de la página wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:122 +#: ../../Zotlabs/Lib/NativeWikiPage.php:123 msgid "Wiki not found." msgstr "No se ha encontrado el wiki." -#: ../../Zotlabs/Lib/NativeWikiPage.php:133 +#: ../../Zotlabs/Lib/NativeWikiPage.php:134 msgid "Destination name already exists" msgstr "El nombre de destino ya existe" -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -#: ../../Zotlabs/Lib/NativeWikiPage.php:361 +#: ../../Zotlabs/Lib/NativeWikiPage.php:167 +#: ../../Zotlabs/Lib/NativeWikiPage.php:368 msgid "Page not found" msgstr "No se ha encontrado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:197 +#: ../../Zotlabs/Lib/NativeWikiPage.php:200 msgid "Error reading page content" msgstr "Se ha producido un error al leer el contenido de la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:352 -#: ../../Zotlabs/Lib/NativeWikiPage.php:401 -#: ../../Zotlabs/Lib/NativeWikiPage.php:468 -#: ../../Zotlabs/Lib/NativeWikiPage.php:509 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +#: ../../Zotlabs/Lib/NativeWikiPage.php:409 +#: ../../Zotlabs/Lib/NativeWikiPage.php:480 +#: ../../Zotlabs/Lib/NativeWikiPage.php:522 msgid "Error reading wiki" msgstr "Se ha producido un error al leer el wiki" -#: ../../Zotlabs/Lib/NativeWikiPage.php:389 +#: ../../Zotlabs/Lib/NativeWikiPage.php:396 msgid "Page update failed." msgstr "Se ha producido un error al actualizar la página." -#: ../../Zotlabs/Lib/NativeWikiPage.php:423 +#: ../../Zotlabs/Lib/NativeWikiPage.php:431 msgid "Nothing deleted" msgstr "No se ha eliminado nada" -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +#: ../../Zotlabs/Lib/NativeWikiPage.php:501 msgid "Compare: object not found." msgstr "No se ha encontrado un objeto para comparar." -#: ../../Zotlabs/Lib/NativeWikiPage.php:495 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 msgid "Page updated" msgstr "Se ha actualizado la página" -#: ../../Zotlabs/Lib/NativeWikiPage.php:498 +#: ../../Zotlabs/Lib/NativeWikiPage.php:511 msgid "Untitled" msgstr "Sin título" -#: ../../Zotlabs/Lib/NativeWikiPage.php:504 +#: ../../Zotlabs/Lib/NativeWikiPage.php:517 msgid "Wiki resource_id required for git commit" msgstr "Se necesita Wiki resource_id para el git commit" @@ -15608,40 +15985,40 @@ msgid "" "an existing folder." msgstr "Puede seleccionar los archivos a través del botón de subir o soltarlos aquí mismo o en una carpeta existente." -#: ../../boot.php:1690 +#: ../../boot.php:1695 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1714 +#: ../../boot.php:1719 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1715 +#: ../../boot.php:1720 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1716 +#: ../../boot.php:1721 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1719 +#: ../../boot.php:1724 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2588 +#: ../../boot.php:2603 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2593 +#: ../../boot.php:2608 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2709 +#: ../../boot.php:2724 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2714 +#: ../../boot.php:2729 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index c41cf9fe9..d61cb65c2 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -2,7 +2,7 @@ if(! function_exists("string_plural_select_es_es")) { function string_plural_select_es_es($n){ - return ($n != 1 ? 1 : 0); + return ($n != 1); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; @@ -611,6 +611,7 @@ App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocol App::$strings["The diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos."; App::$strings["Diaspora Protocol App"] = "App Protocolo Diaspora"; App::$strings["Allow any Diaspora member to comment or like your public posts"] = "Permitir que cualquier miembro de Diaspora comente o ponga un like en sus entradas públicas"; +App::$strings["If this setting is disabled only your contacts will be able to comment or like your public posts"] = "Si esta configuración está desactivada, sólo sus contactos podrán comentar o dar a \"me gusta\" en sus publicaciones públicas"; App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; @@ -1129,6 +1130,7 @@ App::$strings["__ctx:calendar__ week"] = "semana"; App::$strings["__ctx:calendar__ day"] = "día"; App::$strings["__ctx:calendar__ All day"] = "Todos los días"; App::$strings["Please stand by while your download is being prepared."] = "Por favor, espere mientras se prepara la descarga."; +App::$strings["Email address not valid"] = "Dirección de correo electrónica no válida"; App::$strings["Help:"] = "Ayuda:"; App::$strings["Help"] = "Ayuda"; App::$strings["Not Found"] = "No encontrado"; @@ -1487,9 +1489,9 @@ App::$strings["profile photo"] = "foto del perfil"; App::$strings["[Edited %s]"] = "[se ha editado %s]"; App::$strings["__ctx:edit_activity__ Post"] = "Publicar"; App::$strings["__ctx:edit_activity__ Comment"] = "Comentar"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["The provided email address is not valid"] = "La dirección de correo electrónico proporcionada no es válida"; +App::$strings["The provided email domain is not among those allowed on this site"] = "El dominio de correo electrónico proporcionado no está entre los permitidos en este sitio"; +App::$strings["The provided email address is already registered at this site"] = "La dirección de correo electrónico proporcionada ya está registrada en este sitio"; App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; @@ -1500,9 +1502,14 @@ App::$strings["your registration password"] = "su contraseña de registro"; App::$strings["Registration details for %s"] = "Detalles del registro de %s"; App::$strings["Account approved."] = "Cuenta aprobada."; App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Could not revoke registration for %s"] = "No se ha podido revocar el registro de %s"; App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["open"] = "abierto"; +App::$strings["closed"] = "cerrado"; +App::$strings["Registration is currently"] = "El registro está actualmente "; +App::$strings["please come back"] = "por favor, vuelva"; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Item was not found."] = "Elemento no encontrado."; App::$strings["Unknown error."] = "Error desconocido"; @@ -1863,36 +1870,40 @@ App::$strings["Update to Hubzilla 5.0 step 2"] = "Actualizar a Hubzilla 5.0. Pas App::$strings["To complete the update please run"] = "Para completar la actualización, ejecutar "; App::$strings["php util/z6convert.php"] = "php util/z6convert.php"; App::$strings["from the terminal."] = "desde la terminal."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +App::$strings["Email address required"] = "Dirección de correo electrónico requerida"; +App::$strings["No password provided"] = "No se ha proporcionado la contraseña"; +App::$strings["Terms of Service not accepted"] = "No se han aceptado los Términos del servicio"; +App::$strings["Invitation code succesfully applied"] = "El código de invitación se ha aplicado con éxito"; +App::$strings["Invitation not in time or too late"] = "La invitación no llega a tiempo o llega demasiado tarde"; +App::$strings["Invitation email failed"] = "Error en el correo electrónico de invitación"; +App::$strings["Invitation code failed"] = "Código de invitación fallido"; +App::$strings["Invitations are not available"] = "No hay invitaciones disponibles"; +App::$strings["Email address already in use"] = "La dirección de correo electrónico ya está en uso"; +App::$strings["Registration on this hub is by invitation only"] = "El registro en este hub solo es posible por invitación"; +App::$strings["New register request"] = "Nueva solicitud de registro"; +App::$strings["Error creating dId A"] = "Error al crear dId A"; App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["Register at another affiliated hub in case when prefered"] = "Regístrese en otro hub afiliado en caso de que lo prefiera"; App::$strings["Registration on this hub is by invitation only."] = "La inscripción en este hub es sólo posible por invitación."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +App::$strings["Register at another affiliated hub"] = "Regístrese en otro hub afiliado"; App::$strings["Terms of Service"] = "Términos del servicio"; App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; App::$strings["Your email address"] = "Su dirección de correo electrónico"; +App::$strings["Optional"] = "Opcional"; App::$strings["Choose a password"] = "Elija una contraseña"; App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -App::$strings["Your Name"] = "Su nombre"; -App::$strings["Real names are preferred."] = "Se prefieren los nombres reales"; +App::$strings["Your name"] = "Su nombre"; +App::$strings["Real name is preferred"] = "Se prefiere el nombre real"; App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; -App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; +App::$strings["Your nickname will be used to create an easy to remember channel address"] = "Tu alias se utilizará para crear una dirección de canal fácil de recordar"; +App::$strings["Why do you want to join this hub?"] = "¿Por qué quiere unirse a este hub?"; +App::$strings["This will help to review your registration"] = "Esto ayudará a revisar su registro"; App::$strings["Registration"] = "Registro"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; +App::$strings["I have an invite code"] = "Tengo un código de invitación"; +App::$strings["This site has exceeded the number of allowed daily account registrations."] = "Este sitio ha superado el número permitido de registros diarios de cuentas."; App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; @@ -2050,7 +2061,6 @@ App::$strings["Automatically generated - change if desired. Max length 20"] = "G App::$strings["Redirect"] = "Redirigir"; App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; App::$strings["Application not found."] = "Aplicación no encontrada."; App::$strings["Connected OAuth Apps"] = "Apps OAuth conectadas"; App::$strings["Client key starts with"] = "La \"client key\" empieza por"; @@ -2238,7 +2248,6 @@ App::$strings["By continuing, I certify that I have complied with any instructio App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; App::$strings["Not found"] = "No encontrado"; -App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; App::$strings["🔁 Repeated %1\$s's %2\$s"] = "🔁 Repetidos %2\$sde %1\$s"; App::$strings["Post repeated"] = "Entrada repetida"; @@ -2310,20 +2319,33 @@ App::$strings["%s account deleted"] = array( App::$strings["Account not found"] = "Cuenta no encontrada"; App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; +App::$strings["Unverified"] = "Sin verificar"; +App::$strings["Expired"] = "Caducado/a"; +App::$strings["Show verified registrations"] = "Mostrar registros verificados"; +App::$strings["Show all registrations"] = "Mostrar todos los registros"; +App::$strings["Select toggle"] = "Seleccionar alternar"; +App::$strings["Deny selected"] = "Denegar seleccionado"; +App::$strings["Approve selected"] = "Aprobar seleccionado"; +App::$strings["All registrations"] = "Todos los registros"; +App::$strings["Verified registrations waiting for approval"] = "Registros verificados en espera de aprobación"; App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; +App::$strings["Requests"] = "Solicitudes"; +App::$strings["No registrations available"] = "No hay registros disponibles"; +App::$strings["No verified registrations available"] = "No hay registros verificados disponibles"; App::$strings["Block"] = "Bloquear"; App::$strings["Unblock"] = "Desbloquear"; +App::$strings["Verified"] = "Verificado/a"; +App::$strings["Not yet verified"] = "Aún no se ha verificado"; App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Todos los canales"; +App::$strings["All channels"] = "Todos los canales"; App::$strings["Register date"] = "Fecha de registro"; App::$strings["Last login"] = "Último acceso"; App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; +App::$strings["Service class"] = "Clase de servicio"; App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Invalid input"] = "Entrada no válida"; +App::$strings["Errors"] = "Errores"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; App::$strings["mobile"] = "móvil"; @@ -2336,6 +2358,17 @@ App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuit App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; App::$strings["Default permission role for new accounts"] = "Permisos de rol por defecto para las nuevas cuentas"; App::$strings["This role will be used for the first channel created after registration."] = "Este rol se utilizará para el primer canal creado después del registro."; +App::$strings["Minute(s)"] = "Minuto(s)"; +App::$strings["Hour(s)"] = "Hora(s)"; +App::$strings["Day(s)"] = "Día(s)"; +App::$strings["Week(s)"] = "Semana(s)"; +App::$strings["Month(s)"] = "Mes(Meses)"; +App::$strings["Year(s)"] = "Año(s)"; +App::$strings["Register verification delay"] = "Retraso en la verificación del registro"; +App::$strings["Time to wait before a registration can be verified"] = "Tiempo de espera para verificar un registro "; +App::$strings["duration up from now"] = "duración a partir de ahora "; +App::$strings["Register verification expiration time"] = "Tiempo de caducidad de la verificación del registro "; +App::$strings["Time before an unverified registration will expire"] = "Tiempo antes de que caduque un registro no verificado "; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Banner/Logo"] = "Banner/Logo"; @@ -2351,25 +2384,39 @@ App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como cone App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Invitation only"] = "Solo con una invitación"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; App::$strings["Minimum age"] = "Edad mínima"; App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; App::$strings["This is displayed on the public server site list."] = "Esto se muestra en la lista de sitios de servidores públicos."; App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +App::$strings["This text will be displayed prominently at the registration page"] = "Este texto se mostrará de forma destacada en la página de registro "; +App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +App::$strings["Configure the registration open days/hours"] = "Configurar los días/horas de apertura del registro"; +App::$strings["Empty or '-:-' value will keep registration open 24/7 (default)"] = "El valor vacío o \"-:-\" mantendrá el registro abierto 24/7 (por defecto)"; +App::$strings["Weekdays and hours must be separated by colon ':', From-To ranges with a dash `-` example: 1:800-1200"] = "Los días de la semana y las horas deben separarse con dos puntos ':', los rangos Desde-Hasta con un guión `-` ejemplo: 1:800-1200"; +App::$strings["Weekday:Hour pairs must be separated by space ' ' example: 1:900-1700 2:900-1700"] = "Los pares día de la semana:hora deben estar separados por un espacio ' ' ejemplo: 1:900-1700 2:900-1700"; +App::$strings["From-To ranges must be separated by comma ',' example: 1:800-1200,1300-1700 or 1-2,4-5:900-1700"] = "Los rangos desde-hasta deben estar separados por comas ',' ejemplo: 1:800-1200,1300-1700 o 1-2,4-5:900-1700"; +App::$strings["Advanced examples:"] = "Ejemplos avanzados: "; +App::$strings["or"] = "o"; +App::$strings["Check your configuration"] = "Compruebe su configuración"; +App::$strings["Max account registrations per day"] = "Máximo de registros de cuentas por día "; +App::$strings["Unlimited if zero or no value - default 50"] = "Ilimitado si es cero o sin valor - por defecto 50"; +App::$strings["Max account registrations from same IP"] = "Máximo de registros de cuentas desde la misma IP"; +App::$strings["Unlimited if zero or no value - default 3"] = "Ilimitado si es cero o sin valor - por defecto 3"; +App::$strings["Auto channel create"] = "Creación automática de canales"; +App::$strings["If disabled the channel will be created in a separate step during the registration process"] = "Si se desactiva, el canal se creará en un paso separado durante el proceso de registro"; +App::$strings["Require invite code"] = "Solicitar código de invitación"; +App::$strings["Allow invite code"] = "Permitir código de invitación"; +App::$strings["Require email address"] = "Solicitar dirección de correo electrónico"; +App::$strings["The provided email address will be verified (recommended)"] = "La dirección de correo electrónico proporcionada será verificada (recomendado)"; +App::$strings["Abandon account after x days"] = "Abandonar la cuenta después de x días"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'pubstream' para mostrar el stream público, 'page/sys/home' para mostrar una página web del sistema llamada 'home' o 'include:home.html' para incluir un archivo."; App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; -App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; App::$strings["Force publish"] = "Forzar la publicación"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; App::$strings["Import Public Streams"] = "Importar contenido público"; @@ -2417,6 +2464,7 @@ App::$strings["Page to display after creating a new channel"] = "Página a mostr App::$strings["Default: profiles"] = "Perfiles predeterminados"; App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; App::$strings["Region or country"] = "Región o país"; +App::$strings["Invalid 24h time value (hhmm/hmm)"] = "Valor de tiempo de 24h no válido (hhmm/hmm)"; App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; App::$strings["Clear"] = "Vaciar"; App::$strings["Debugging"] = "Depuración"; @@ -2441,6 +2489,7 @@ App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +App::$strings["select all"] = "seleccionar todo"; App::$strings["Censor"] = "Censurar"; App::$strings["Uncensor"] = "No censurar"; App::$strings["Allow Code"] = "Permitir código"; @@ -2455,7 +2504,6 @@ App::$strings["Account Edit"] = "Editar la cuenta"; App::$strings["New Password"] = "Nueva contraseña"; App::$strings["New Password again"] = "Nueva contraseña otra vez"; App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; -App::$strings["Service class"] = "Clase de servicio"; App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; App::$strings["Field nickname"] = "Alias del campo"; App::$strings["System name of field"] = "Nombre del campo en el sistema"; @@ -2515,6 +2563,36 @@ App::$strings["This channel will be completely removed from the network. "] = "E App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["Email resent"] = "Correo electrónico reenviado"; +App::$strings["Email resend failed"] = "Fallo en el reenvío del correo electrónico"; +App::$strings["Verify successfull"] = "Verificar que se ha hecho bien"; +App::$strings["Account successfull created"] = "Cuenta creada con éxito"; +App::$strings["Channel successfull created"] = "Canal creado con éxito"; +App::$strings["Automatic channel creation failed. Please create a channel."] = "La creación automática de canales ha fallado. Por favor, cree un canal."; +App::$strings["Account creation error"] = "Error en la creación de la cuenta"; +App::$strings["Verify failed"] = "Verificación fallida"; +App::$strings["Token verification failed"] = "Ha fallado el token de verificación."; +App::$strings["Request not inside time frame"] = "Solicitud fuera de plazo"; +App::$strings["Identity unknown"] = "Identidad desconocida"; +App::$strings["dId2 mistaken"] = "did2 equivocado/a"; +App::$strings["Your Registration ID"] = "Su ID de registro"; +App::$strings["Registration verification"] = "Verificación del registro"; +App::$strings["Hold on, you can start verification in"] = "Espere, puede empezar la verificación en "; +App::$strings["Please remember your verification token for ID"] = "Por favor, recuerde su token de verificación para la identificación"; +App::$strings["Token validity"] = "Validez del token"; +App::$strings["Resend"] = "Reenviar"; +App::$strings["Registration status"] = "Estado del registro"; +App::$strings["Verification successful!"] = "¡Verificación exitosa!"; +App::$strings["Your login ID is"] = "Su ID de acceso es"; +App::$strings["After your account has been approved by our administrator you will be able to login with your login ID and your provided password."] = "Una vez que su cuenta haya sido aprobada por nuestro administrador, podrá iniciar sesión con su ID de acceso y la contraseña proporcionada."; +App::$strings["Registration request revoked"] = "Solicitud de registro anulada"; +App::$strings["Sorry for any inconvience. Thank you for your response."] = "Disculpe las molestias. Gracias por su respuesta."; +App::$strings["Please enter your verification token for ID"] = "Por favor, introduzca su token de verificación para la identificación"; +App::$strings["Verification token"] = "Token de verificación "; +App::$strings["ID expired"] = "ID caducada"; +App::$strings["You will require the verification token for ID"] = "Necesitará el token de verificación para identificarse"; +App::$strings["Unknown or expired ID"] = "ID desconocida o caducada"; +App::$strings["dId2 malformed"] = "did2 malformado/a"; App::$strings["Edit event title"] = "Editar el título del evento"; App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; App::$strings["Edit Category"] = "Modificar el tema"; @@ -2599,7 +2677,9 @@ App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \ App::$strings["This will be used to create a unique network address (like an email address)."] = "Esto se utilizará para crear una dirección de red única (como una dirección de correo electrónico)."; App::$strings["Allowed characters are a-z 0-9, - and _"] = "Los caracteres permitidos son a-z 0-9, - and _"; App::$strings["Channel name"] = "Nombre del canal"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Seleccione unos permisos de rol del canal compatibles con sus necesidades de uso y requisitos de privacidad."; +App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos"; App::$strings["Create a Channel"] = "Crear un canal"; App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas."; App::$strings["or import an existing channel from another location."] = "O importar un canal desde otro lugar."; @@ -2852,7 +2932,7 @@ App::$strings["Sexual preference"] = "Preferencia sexual"; App::$strings["Profile name"] = "Nombre del perfil"; App::$strings["This is your default profile."] = "Este es su perfil principal."; App::$strings["Your full name"] = "Nombre completo"; -App::$strings["Short title/tescription"] = "Breve título y descripción"; +App::$strings["Short title/description"] = "Breve título y descripción"; App::$strings["Maximal 190 characters"] = "Máximo de 190 caracteres"; App::$strings["Street address"] = "Dirección"; App::$strings["Locality/City"] = "Ciudad"; @@ -2894,25 +2974,33 @@ App::$strings["Change channel nickname/address"] = "Cambiar el alias o la direcc App::$strings["Any/all connections on other networks will be lost!"] = "¡Cualquier/todas las conexiones en otras redes se perderán!"; App::$strings["New channel address"] = "Nueva dirección del canal"; App::$strings["Rename Channel"] = "Renombrar el canal"; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); App::$strings["Invite App"] = "Solicitar una app"; -App::$strings["Send email invitations to join this network"] = "Enviar invitaciones por correo electrónico para unirse a esta red"; +App::$strings["Register is closed"] = "El registro está cerrado"; +App::$strings["Note, the invitation code is valid up to"] = "Tenga en cuenta que el código de invitación es válido hasta "; +App::$strings["Too many recipients for one invitation (max %d)"] = "Demasiados destinatarios para una invitación (máx %d)"; +App::$strings["No recipients for this invitation"] = "No hay destinatarios para esta invitación"; +App::$strings["(%s) : Not a valid email address"] = "(%s): No es una dirección de correo electrónico válida"; +App::$strings["(%s) : Not a real email address"] = "(%s) : No es una dirección de correo electrónica real"; +App::$strings["(%s) : Not allowed email address"] = "(%s) : Dirección de correo electrónico no permitida"; +App::$strings["(%s) : email address already in use"] = "(%s) : La dirección de correo electrónico ya está en uso"; +App::$strings["(%s) : Accepted email address"] = "(%s) : Dirección de correo electrónico aceptada"; +App::$strings["To %s : Message delivery success."] = "To %s : Entrega exitosa del mensaje."; +App::$strings["%1\$d mail(s) sent, %2\$d mail error(s)"] = "%1\$d correo(s) enviado, %2\$d error(es) de correo"; +App::$strings["Invites not proposed by configuration"] = "Invitaciones no propuestas por la configuración"; +App::$strings["Contact the site admin"] = "Contactar con el administrador del sitio"; +App::$strings["Invites by users not enabled"] = "Invitaciones de usuarios no habilitadas"; App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Not on xchan"] = "No en xchan"; +App::$strings["All users invitation limit exceeded."] = "Se ha superado el límite de invitaciones a todos los usuarios."; +App::$strings["Invitation expires after"] = "La invitación expira después de "; +App::$strings["Invitation"] = "Invitación"; App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Invitations I am using"] = "Invitaciones que estoy utilizando "; +App::$strings["Invitations we are using"] = "Invitaciones que usamos "; +App::$strings["§ Note, the email(s) sent will be recorded in the system logs"] = "§ Nota: el/los correo(s) electrónicos enviados quedarán registrados en los registros del sistema"; App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Invite template"] = "Plantilla de invitación"; +App::$strings["Here you may enter personal notes to the recipient(s)"] = "Aquí puede introducir notas personales para el/los destinatario(s)"; App::$strings["Notes App"] = "App Notas"; App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "Una simple aplicación de notas con un widget (aviso: las notas no están encriptadas)"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; @@ -2946,7 +3034,6 @@ App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; App::$strings["Anybody on the internet"] = "Cualquiera en internet"; App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "Su dirección de canal es"; App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; App::$strings["Automatic membership approval"] = "Aprobación automática de nuevos miembros"; @@ -3042,6 +3129,7 @@ App::$strings["Current Password"] = "Contraseña actual"; App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; +App::$strings["DId2 or Email Address:"] = "Did2 o dirección de correo electrónico: "; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Addon Settings"] = "Ajustes de los complementos"; @@ -3380,6 +3468,7 @@ App::$strings["repeated %s's post"] = "repetida la entrada de %s"; App::$strings["edited a post dated %s"] = "ha editado una entrada %s"; App::$strings["edited a comment dated %s"] = "ha editado un comentario %s"; App::$strings["created an event"] = "se creó un evento"; +App::$strings["verified"] = "verificado"; App::$strings["error saving data"] = "error guardando los datos"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -- cgit v1.2.3