diff --git a/boot.php b/boot.php index 72eaec8fe5..9264d34fc0 100644 --- a/boot.php +++ b/boot.php @@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.2.1745' ); +define ( 'FRIENDICA_VERSION', '3.2.1747' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1169 ); define ( 'EOL', "
\r\n" ); diff --git a/include/Contact.php b/include/Contact.php index ce1edbcc21..af77869989 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -215,13 +215,14 @@ function contact_photo_menu($contact) { $status_link = $profile_link . "?url=status"; $photos_link = $profile_link . "?url=photos"; $profile_link = $profile_link . "?url=profile"; - $contact_drop_link = $a->get_baseurl() . '/contacts/' . $contact['id'] . '/drop'; $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; } $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; + $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; + $menu = Array( 'poke' => array(t("Poke"), $poke_link), diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 6c0222e1c4..3306871d00 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -1,6 +1,7 @@ json_encode($perms['allow_gid']), '$denycid' => json_encode($perms['deny_cid']), '$denygid' => json_encode($perms['deny_gid']), + '$features' => array( + "aclautomention"=>(feature_enabled($user,"aclautomention")?"true":"false") + ), )); @@ -474,14 +478,15 @@ function acl_lookup(&$a, $out_type = 'json') { "name" => $g['name'], "id" => intval($g['id']), "uids" => array_map("intval", explode(",",$g['uids'])), - "link" => '' + "link" => '', + "forum" => '0' ); } } if ($type=='' || $type=='c'){ - $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact` + $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, forum FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != '' $sql_extra2 ORDER BY `name` ASC ", @@ -541,6 +546,7 @@ function acl_lookup(&$a, $out_type = 'json') { "network" => $g['network'], "link" => $g['url'], "nick" => ($g['attag']) ? $g['attag'] : $g['nick'], + "forum" => $g['forum'] ); } } diff --git a/include/api.php b/include/api.php index 3d8ecb35d3..9c3bb15244 100644 --- a/include/api.php +++ b/include/api.php @@ -74,7 +74,7 @@ logger('API_login: ' . print_r($_SERVER,true), LOGGER_DEBUG); header('WWW-Authenticate: Basic realm="Friendica"'); header('HTTP/1.0 401 Unauthorized'); - die((api_error(&$a, 'json', "This api requires login"))); + die((api_error($a, 'json', "This api requires login"))); //die('This api requires login'); } @@ -174,7 +174,7 @@ } header("HTTP/1.1 404 Not Found"); logger('API call not implemented: '.$a->query_string." - ".print_r($_REQUEST,true)); - return(api_error(&$a, $type, "not implemented")); + return(api_error($a, $type, "not implemented")); } diff --git a/include/conversation.php b/include/conversation.php index 31f40aa6f8..5b9a11bde1 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -504,6 +504,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $tpl = 'search_item.tpl'; foreach($items as $item) { + if($arr_blocked) { $blocked = false; foreach($arr_blocked as $b) { @@ -648,6 +649,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $tmp_item = array( 'template' => $tpl, 'id' => (($preview) ? 'P0' : $item['item_id']), + 'network' => $item['item_network'], 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), @@ -693,6 +695,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { call_hooks('display_item', $arr); $threads[$threadsid]['id'] = $item['item_id']; + $threads[$threadsid]['network'] = $item['item_network']; $threads[$threadsid]['items'] = array($arr['output']); } diff --git a/include/features.php b/include/features.php index b2712665e1..24955ba104 100644 --- a/include/features.php +++ b/include/features.php @@ -30,6 +30,7 @@ function get_features() { t('Post Composition Features'), array('richtext', t('Richtext Editor'), t('Enable richtext editor')), array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them')), + array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a fourm page is selected/deselected in ACL window.')), ), // Network sidebar widgets diff --git a/include/network.php b/include/network.php index a4538e88ed..a663a6d942 100644 --- a/include/network.php +++ b/include/network.php @@ -617,7 +617,6 @@ function fetch_xrd_links($url) { if(! function_exists('validate_url')) { function validate_url(&$url) { - // no naked subdomains (allow localhost for tests) if(strpos($url,'.') === false && strpos($url,'/localhost/') === false) return false; diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index 65c0d67871..ad90e3d311 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -44,6 +44,11 @@ function check_conversations() { function complete_conversation($itemid, $conversation_url, $only_add_conversation = false) { global $a; + if ($a->last_ostatus_conversation_url == $conversation_url) + return; + + $a->last_ostatus_conversation_url = $conversation_url; + //logger('complete_conversation: completing conversation url '.$conversation_url.' for id '.$itemid); $messages = q("SELECT `uid`, `parent`, `created` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid)); diff --git a/js/acl.js b/js/acl.js index fc6a6c0c1d..eeea6a2938 100644 --- a/js/acl.js +++ b/js/acl.js @@ -1,7 +1,8 @@ -function ACL(backend_url, preset){ +function ACL(backend_url, preset, automention){ that = this; that.url = backend_url; + that.automention = automention; that.kp_timer = null; @@ -26,10 +27,45 @@ function ACL(backend_url, preset){ $("#acl-search").keypress(that.on_search); $("#acl-wrapper").parents("form").submit(that.on_submit); + /* add/remove mentions */ + that.element = $("#profile-jot-text"); + that.htmlelm = that.element.get()[0]; + /* startup! */ that.get(0,100); } +ACL.prototype.remove_mention = function(id) { + if (!that.automention) return; + var nick = that.data[id].nick; + var searchText = "@"+nick+"+"+id+" "; + if (tinyMCE.activeEditor===null) { + start = that.element.val().indexOf(searchText); + if ( start<0) return; + end = start+searchText.length; + that.element.setSelection(start,end).replaceSelectedText('').collapseSelection(false); + } else { + start = tinyMCE.activeEditor.getContent({format : 'raw'}).search( searchText ); + if ( start<0 ) return; + txt = tinyMCE.activeEditor.getContent(); + newtxt = txt.replace(searchText, ''); + tinyMCE.activeEditor.setContent(newtxt); + } +} + +ACL.prototype.add_mention = function(id) { + if (!that.automention) return; + var nick = that.data[id].nick; + var searchText = "@"+nick+"+"+id+" "; + if (tinyMCE.activeEditor===null) { + if ( that.element.val().indexOf( searchText) >= 0 ) return; + that.element.val( searchText + that.element.val() ); + } else { + if ( tinyMCE.activeEditor.getContent({format : 'raw'}).search(searchText) >= 0 ) return; + tinyMCE.activeEditor.dom.add(tinyMCE.activeEditor.getBody(), 'span', {}, searchText); + } +} + ACL.prototype.on_submit = function(){ aclfileds = $("#acl-fields").html(""); $(that.allow_gid).each(function(i,v){ @@ -105,7 +141,8 @@ ACL.prototype.on_button_hide = function(event){ ACL.prototype.set_allow = function(itemid){ type = itemid[0]; - id = parseInt(itemid.substr(1)); + id = parseInt(itemid.substr(1)); + switch(type){ case "g": if (that.allow_gid.indexOf(id)<0){ @@ -118,8 +155,10 @@ ACL.prototype.set_allow = function(itemid){ case "c": if (that.allow_cid.indexOf(id)<0){ that.allow_cid.push(id) + if (that.data[id].forum=="1") that.add_mention(id); } else { that.allow_cid.remove(id); + if (that.data[id].forum=="1") that.remove_mention(id); } if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id); break; @@ -129,7 +168,8 @@ ACL.prototype.set_allow = function(itemid){ ACL.prototype.set_deny = function(itemid){ type = itemid[0]; - id = parseInt(itemid.substr(1)); + id = parseInt(itemid.substr(1)); + switch(type){ case "g": if (that.deny_gid.indexOf(id)<0){ @@ -140,6 +180,7 @@ ACL.prototype.set_deny = function(itemid){ if (that.allow_gid.indexOf(id)>=0) that.allow_gid.remove(id); break; case "c": + if (that.data[id].forum=="1") that.remove_mention(id); if (that.deny_cid.indexOf(id)<0){ that.deny_cid.push(id) } else { @@ -151,9 +192,13 @@ ACL.prototype.set_deny = function(itemid){ that.update_view(); } +ACL.prototype.is_show_all = function() { + return (that.allow_gid.length==0 && that.allow_cid.length==0 && + that.deny_gid.length==0 && that.deny_cid.length==0); +} + ACL.prototype.update_view = function(){ - if (that.allow_gid.length==0 && that.allow_cid.length==0 && - that.deny_gid.length==0 && that.deny_cid.length==0){ + if (this.is_show_all()){ that.showall.addClass("selected"); /* jot acl */ $('#jot-perms-icon').removeClass('lock').addClass('unlock'); @@ -246,17 +291,20 @@ ACL.prototype.get = function(start,count, search){ ACL.prototype.populate = function(data){ var height = Math.ceil(data.tot / that.nw) * 42; that.list_content.height(height); + that.data = {}; $(data.items).each(function(){ - html = "
"+that.item_tpl+"
"; - html = html.format(this.photo, this.name, this.type, this.id, '', this.network, this.link); + html = "
"+that.item_tpl+"
"; + html = html.format(this.photo, this.name, this.type, this.id, (this.forum=='1'?'forum':''), this.network, this.link); if (this.uids!=undefined) that.group_uids[this.id] = this.uids; //console.log(html); that.list_content.append(html); + that.data[this.id] = this; }); $(".acl-list-item img[data-src]", that.list_content).each(function(i, el){ // Add src attribute for images with a data-src attribute $(el).attr('src', $(el).data("src")); }); + that.update_view(); } diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js index b1bc40be28..2334bb4a2c 100644 --- a/js/fk.autocomplete.js +++ b/js/fk.autocomplete.js @@ -89,7 +89,7 @@ ACPopup.prototype._search = function(){ }); } - ACPopup.prototype.add = function(label, value){ +ACPopup.prototype.add = function(label, value){ var that=this; var elm = $("
"+label+"
"); elm.click(function(e){ diff --git a/library/slinky.php b/library/slinky.php index cae1f755ff..fc3714c201 100644 --- a/library/slinky.php +++ b/library/slinky.php @@ -341,7 +341,7 @@ abstract class Slinky_Service { curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, 0 ); // Don't stress about SSL validity curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); // Return the response, don't output it curl_setopt( $ch, CURLOPT_TIMEOUT, SLINKY_TIMEOUT ); // Limit how long we'll wait for a response - curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 ); // Allow following of redirections + //curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 ); // Allow following of redirections $r = curl_exec( $ch ); if ( curl_errno( $ch ) ) { return false; @@ -372,7 +372,7 @@ abstract class Slinky_Service { curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, 0 ); // Don't stress about SSL validity curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); // Return the response, don't output it curl_setopt( $ch, CURLOPT_TIMEOUT, SLINKY_TIMEOUT ); // Limit how long we'll wait for a response - curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 ); // Allow following of redirections + //curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 ); // Allow following of redirections $r = curl_exec( $ch ); if ( curl_errno( $ch ) ) { return false; diff --git a/mod/admin.php b/mod/admin.php index dd9a0d475f..32a4ab531c 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -328,6 +328,7 @@ function admin_page_site_post(&$a){ $enotify_no_content = ((x($_POST,'enotify_no_content')) ? True : False); $private_addons = ((x($_POST,'private_addons')) ? True : False); $disable_embedded = ((x($_POST,'disable_embedded')) ? True : False); + $allow_users_remote_self = ((x($_POST,'allow_users_remote_self')) ? True : False); $no_multi_reg = ((x($_POST,'no_multi_reg')) ? True : False); $no_openid = !((x($_POST,'no_openid')) ? True : False); @@ -453,6 +454,7 @@ function admin_page_site_post(&$a){ set_config('system','newuser_private', $newuser_private); set_config('system','enotify_no_content', $enotify_no_content); set_config('system','disable_embedded', $disable_embedded); + set_config('system','allow_users_remote_self', $allow_users_remote_self); set_config('system','block_extended_register', $no_multi_reg); set_config('system','no_openid', $no_openid); @@ -603,7 +605,7 @@ function admin_page_site(&$a) { '$enotify_no_content' => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.")), '$private_addons' => array('private_addons', t("Disallow public access to addons listed in the apps menu."), get_config('config','private_addons'), t("Checking this box will restrict addons listed in the apps menu to members only.")), '$disable_embedded' => array('disable_embedded', t("Don't embed private images in posts"), get_config('system','disable_embedded'), t("Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while.")), - + '$allow_users_remote_self' => array('allow_users_remote_self', t('Allow Users to set remote_self'), get_config('system','allow_users_remote_self'), t('With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream.')), '$no_multi_reg' => array('no_multi_reg', t("Block multiple registrations"), get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")), '$no_openid' => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")), '$no_regfullname' => array('no_regfullname', t("Fullname check"), !get_config('system','no_regfullname'), t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")), diff --git a/mod/contacts.php b/mod/contacts.php index f48978aaec..ad50376b70 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -67,11 +67,61 @@ function contacts_init(&$a) { } +function contacts_batch_actions(&$a){ + $contacts_id = $_POST['contact_batch']; + if (!is_array($contacts_id)) return; + + $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0", + implode(",", $contacts_id), + intval(local_user()) + ); + + $count_actions=0; + foreach($orig_records as $orig_record) { + $contact_id = $orig_record['id']; + if (x($_POST, 'contacts_batch_update')) { + _contact_update($contact_id); + $count_actions++; + } + if (x($_POST, 'contacts_batch_block')) { + $r = _contact_block($contact_id, $orig_record); + if ($r) $count_actions++; + } + if (x($_POST, 'contacts_batch_ignore')) { + $r = _contact_ignore($contact_id, $orig_record); + if ($r) $count_actions++; + } + if (x($_POST, 'contacts_batch_archive')) { + $r = _contact_archive($contact_id, $orig_record); + if ($r) $count_actions++; + } + if (x($_POST, 'contacts_batch_drop')) { + _contact_drop($contact_id, $orig_record); + $count_actions++; + } + } + if ($count_actions>0) { + info ( sprintf( tt("%d contact edited.", "%d contacts edited", $count_actions), $count_actions) ); + } + + if(x($_SESSION,'return_url')) + goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); + else + goaway($a->get_baseurl(true) . '/contacts'); + +} + + function contacts_post(&$a) { if(! local_user()) return; + if ($a->argv[1]==="batch") { + contacts_batch_actions($a); + return; + } + $contact_id = intval($a->argv[1]); if(! $contact_id) return; @@ -140,6 +190,49 @@ function contacts_post(&$a) { } +/*contact actions*/ +function _contact_update($contact_id) { + // pull feed and consume it, which should subscribe to the hub. + proc_run('php',"include/poller.php","$contact_id"); +} +function _contact_block($contact_id, $orig_record) { + $blocked = (($orig_record['blocked']) ? 0 : 1); + $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($blocked), + intval($contact_id), + intval(local_user()) + ); + return $r; + +} +function _contact_ignore($contact_id, $orig_record) { + $readonly = (($orig_record['readonly']) ? 0 : 1); + $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($readonly), + intval($contact_id), + intval(local_user()) + ); + return $r; +} +function _contact_archive($contact_id, $orig_record) { + $archived = (($orig_record['archive']) ? 0 : 1); + $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($archived), + intval($contact_id), + intval(local_user()) + ); + if ($archived) { + q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user())); + } + return $r; +} +function _contact_drop($contact_id, $orig_record) { + require_once('include/Contact.php'); + $a = get_app(); + + terminate_friendship($a->user,$a->contact,$orig_record); + contact_remove($orig_record['id']); +} function contacts_content(&$a) { @@ -174,57 +267,38 @@ function contacts_content(&$a) { } if($cmd === 'update') { - - // pull feed and consume it, which should subscribe to the hub. - proc_run('php',"include/poller.php","$contact_id"); + _contact_update($contact_id); goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); // NOTREACHED } if($cmd === 'block') { - $blocked = (($orig_record[0]['blocked']) ? 0 : 1); - $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($blocked), - intval($contact_id), - intval(local_user()) - ); + $r = _contact_block($contact_id, $orig_record[0]); if($r) { - //notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL ); info( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL ); } + goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); return; // NOTREACHED } if($cmd === 'ignore') { - $readonly = (($orig_record[0]['readonly']) ? 0 : 1); - $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($readonly), - intval($contact_id), - intval(local_user()) - ); + $r = _contact_ignore($contact_id, $orig_record[0]); if($r) { info( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL ); } + goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); return; // NOTREACHED } if($cmd === 'archive') { - $archived = (($orig_record[0]['archive']) ? 0 : 1); - $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($archived), - intval($contact_id), - intval(local_user()) - ); - if ($archived) { - q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user())); - } + $r = _contact_archive($contact_id, $orig_record[0]); if($r) { - //notice( t('Contact has been ') . (($archived) ? t('archived') : t('unarchived')) . EOL ); info( (($archived) ? t('Contact has been archived') : t('Contact has been unarchived')) . EOL ); - } + } + goaway($a->get_baseurl(true) . '/contacts/' . $contact_id); return; // NOTREACHED } @@ -257,15 +331,13 @@ function contacts_content(&$a) { } // Now check how the user responded to the confirmation query if($_REQUEST['canceled']) { - goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); - + if(x($_SESSION,'return_url')) + goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); + else + goaway($a->get_baseurl(true) . '/contacts'); } - require_once('include/Contact.php'); - - terminate_friendship($a->user,$a->contact,$orig_record[0]); - - contact_remove($orig_record[0]['id']); + _contact_drop($contact_id, $orig_record[0]); info( t('Contact has been removed.') . EOL ); if(x($_SESSION,'return_url')) goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); @@ -534,7 +606,7 @@ function contacts_content(&$a) { $search_txt = dbesc(protect_sprintf(preg_quote($search))); $searching = true; } - $sql_extra .= (($searching) ? " AND `name` REGEXP '$search_txt' " : ""); + $sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt' OR nick REGEXP '$search_txt') " : ""); if($nets) $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets)); @@ -612,6 +684,7 @@ function contacts_content(&$a) { $tpl = get_markup_template("contacts-template.tpl"); $o .= replace_macros($tpl, array( + '$baseurl' => $a->get_baseurl(), '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''), '$tabs' => $t, '$total' => $total, @@ -621,6 +694,14 @@ function contacts_content(&$a) { '$submit' => t('Find'), '$cmd' => $a->cmd, '$contacts' => $contacts, + '$contact_drop_confirm' => t('Do you really want to delete this contact?'), + '$batch_actions' => array( + 'contacts_batch_update' => t('Update'), + 'contacts_batch_block' => t('Block')."/".t("Unblock"), + "contacts_batch_ignore" => t('Ignore')."/".t("Unignore"), + "contacts_batch_archive" => t('Archive')."/".t("Unarchive"), + "contacts_batch_drop" => t('Delete'), + ), '$paginate' => paginate($a), )); diff --git a/mod/crepair.php b/mod/crepair.php index 171e88f312..0fdab7eebe 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -156,7 +156,9 @@ function crepair_content(&$a) { '$label_notify' => t('Notification Endpoint URL'), '$label_poll' => t('Poll/Feed URL'), '$label_photo' => t('New photo from this URL'), - '$label_self' => t('Mirror all posts to the wall?'), + '$label_remote_self' => t('Remote Self'), + '$allow_remote_self' => get_config('system','allow_users_remote_self'), + '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.')), '$contact_name' => $contact['name'], '$contact_nick' => $contact['nick'], '$contact_id' => $contact['id'], @@ -169,7 +171,7 @@ function crepair_content(&$a) { '$contact_self' => array('remote_self', t('Mirror all posts to the wall?'), $contact['remote_self'], t('Shall all posts from this contact posted like your own posts?')), '$lbl_submit' => t('Submit') - )); + )); return $o; diff --git a/mod/parse_url.php b/mod/parse_url.php index cb7268c1df..cf52011f15 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -311,9 +311,9 @@ function parse_url_content(&$a) { logger('parse_url: ' . $url); if($textmode) - $template = $br . '[bookmark=%s]%s[/bookmark]%s' . $br; + $template = '[bookmark=%s]%s[/bookmark]%s' . $br; else - $template = "
%s%s
"; + $template = "%s%s
"; $arr = array('url' => $url, 'text' => ''); @@ -328,9 +328,9 @@ function parse_url_content(&$a) { if($url && $title && $text) { if($textmode) - $text = $br . '[quote]' . trim($text) . '[/quote]' . $br; + $text = '[quote]' . trim($text) . '[/quote]' . $br; else - $text = '
' . trim($text) . '

'; + $text = '
' . trim($text) . '

'; $title = str_replace(array("\r","\n"),array('',''),$title); @@ -344,8 +344,10 @@ function parse_url_content(&$a) { $siteinfo = parseurl_getsiteinfo($url); + $sitedata = ""; + if($siteinfo["title"] == "") { - echo sprintf($template,$url,$url,'') . $str_tags; + $sitedata .= sprintf($template,$url,$url,'') . $str_tags; killme(); } else { $text = $siteinfo["text"]; @@ -377,20 +379,24 @@ function parse_url_content(&$a) { if(strlen($text)) { if($textmode) - $text = $br.'[quote]'.trim($text).'[/quote]'.$br ; + $text = '[quote]'.trim($text).'[/quote]'; else - $text = '
'.trim($text).'

'; + $text = '
'.trim($text).'
'; } if($image) { $text = $br.$br.$image.$text; } + $title = str_replace(array("\r","\n"),array('',''),$title); $result = sprintf($template,$url,($title) ? $title : $url,$text) . $str_tags; logger('parse_url: returns: ' . $result); - echo trim($result); + $sitedata .= trim($result); + + echo "[class=type-link]".$sitedata."[/class]"; + killme(); } diff --git a/mods/readme.txt b/mods/readme.txt index d74b846d00..9f47f85d5a 100644 --- a/mods/readme.txt +++ b/mods/readme.txt @@ -1,6 +1,18 @@ -Site speed can be improved when the following indexes are set. They cannot be set through the update script because on large sites they will block the site for several minutes. +Site speed can be improved when the following indexes are set. They +cannot be set through the update script because on large sites they will +block the site for several minutes. CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`); CREATE INDEX `uid_created` ON `item` (`uid`, `created`); CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`); CREATE INDEX `resource-id` ON `item` (`resource-id`); +CREATE INDEX `uri_received` ON item(`uri`, `received`); +CREATE INDEX `received_uri` ON item(`received`, `uri`); +CREATE INDEX `contact-id_created` ON item(`contact-id`, created); +CREATE INDEX `uid_network_received` ON item(`uid`, `network`, `received`); +CREATE INDEX `uid_parent` ON item(`uid`, `parent`); +CREATE INDEX `uid_received` ON item(`uid`, `received`); +CREATE INDEX `uid_network_commented` ON item(`uid`, `network`, `commented`); +CREATE INDEX `uid_commented` ON item(`uid`, `commented`); +CREATE INDEX `uid_title` ON item(uid, `title`); +CREATE INDEX `created_contact-id` ON item(`created`, `contact-id`); diff --git a/util/messages.po b/util/messages.po index ce6cd4cf9b..8d50655518 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.2.1745\n" +"Project-Id-Version: 3.2.1746\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-17 15:44+0100\n" +"POT-Creation-Date: 2013-12-31 18:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgid "Private Message" msgstr "" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:659 +#: ../../mod/content.php:727 ../../mod/settings.php:663 msgid "Edit" msgstr "" @@ -37,10 +37,10 @@ msgstr "" msgid "Select" msgstr "" -#: ../../object/Item.php:127 ../../mod/admin.php:902 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/settings.php:660 -#: ../../mod/group.php:171 ../../mod/photos.php:1637 -#: ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:695 +#: ../../mod/settings.php:664 ../../mod/group.php:171 +#: ../../mod/photos.php:1637 ../../include/conversation.php:612 msgid "Delete" msgstr "" @@ -131,7 +131,7 @@ msgstr "" msgid "%s from %s" msgstr "" -#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685 +#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 #: ../../mod/content.php:708 ../../mod/photos.php:1551 #: ../../mod/photos.php:1595 ../../mod/photos.php:1678 msgid "Comment" @@ -145,40 +145,40 @@ msgstr "" msgid "Please wait" msgstr "" -#: ../../object/Item.php:343 ../../mod/content.php:602 +#: ../../object/Item.php:345 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../object/Item.php:345 ../../object/Item.php:358 -#: ../../mod/content.php:604 ../../include/text.php:1919 +#: ../../object/Item.php:347 ../../object/Item.php:360 +#: ../../mod/content.php:604 ../../include/text.php:1928 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "" -#: ../../object/Item.php:631 ../../mod/content.php:706 +#: ../../object/Item.php:633 ../../mod/content.php:706 #: ../../mod/photos.php:1549 ../../mod/photos.php:1593 #: ../../mod/photos.php:1676 msgid "This is you" msgstr "" -#: ../../object/Item.php:634 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 #: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:166 ../../mod/content.php:709 -#: ../../mod/contacts.php:386 ../../mod/profiles.php:630 +#: ../../mod/crepair.php:171 ../../mod/content.php:709 +#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/localtime.php:45 ../../mod/photos.php:1078 #: ../../mod/photos.php:1199 ../../mod/photos.php:1501 @@ -189,39 +189,39 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../object/Item.php:635 ../../mod/content.php:710 +#: ../../object/Item.php:637 ../../mod/content.php:710 msgid "Bold" msgstr "" -#: ../../object/Item.php:636 ../../mod/content.php:711 +#: ../../object/Item.php:638 ../../mod/content.php:711 msgid "Italic" msgstr "" -#: ../../object/Item.php:637 ../../mod/content.php:712 +#: ../../object/Item.php:639 ../../mod/content.php:712 msgid "Underline" msgstr "" -#: ../../object/Item.php:638 ../../mod/content.php:713 +#: ../../object/Item.php:640 ../../mod/content.php:713 msgid "Quote" msgstr "" -#: ../../object/Item.php:639 ../../mod/content.php:714 +#: ../../object/Item.php:641 ../../mod/content.php:714 msgid "Code" msgstr "" -#: ../../object/Item.php:640 ../../mod/content.php:715 +#: ../../object/Item.php:642 ../../mod/content.php:715 msgid "Image" msgstr "" -#: ../../object/Item.php:641 ../../mod/content.php:716 +#: ../../object/Item.php:643 ../../mod/content.php:716 msgid "Link" msgstr "" -#: ../../object/Item.php:642 ../../mod/content.php:717 +#: ../../object/Item.php:644 ../../mod/content.php:717 msgid "Video" msgstr "" -#: ../../object/Item.php:643 ../../mod/editpost.php:145 +#: ../../object/Item.php:645 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1553 #: ../../mod/photos.php:1597 ../../mod/photos.php:1680 #: ../../include/conversation.php:1116 @@ -250,10 +250,10 @@ msgstr "" #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 #: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:115 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:147 -#: ../../mod/settings.php:96 ../../mod/settings.php:579 -#: ../../mod/settings.php:584 ../../mod/profiles.php:146 +#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 +#: ../../mod/settings.php:96 ../../mod/settings.php:583 +#: ../../mod/settings.php:588 ../../mod/profiles.php:146 #: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 @@ -265,7 +265,7 @@ msgstr "" #: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4187 +#: ../../include/items.php:4215 msgid "Permission denied." msgstr "" @@ -286,7 +286,7 @@ msgid "Your posts and conversations" msgstr "" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1963 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -299,7 +299,7 @@ msgid "Your profile page" msgstr "" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1970 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "" @@ -310,7 +310,7 @@ msgid "Your photos" msgstr "" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1987 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "" @@ -374,7 +374,7 @@ msgstr "" msgid "Set resolution for middle column" msgstr "" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 #: ../../include/nav.php:171 msgid "Contacts" msgstr "" @@ -409,7 +409,7 @@ msgid "Last likes" msgstr "" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1913 +#: ../../include/conversation.php:246 ../../include/text.php:1922 msgid "event" msgstr "" @@ -418,19 +418,19 @@ msgstr "" #: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1874 +#: ../../include/diaspora.php:1878 msgid "status" msgstr "" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:151 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1915 ../../include/diaspora.php:1874 +#: ../../include/text.php:1924 ../../include/diaspora.php:1878 msgid "photo" msgstr "" #: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1890 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" @@ -453,8 +453,8 @@ msgstr "" #: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:331 -#: ../../include/user.php:338 ../../include/user.php:345 +#: ../../mod/profile_photo.php:305 ../../include/user.php:334 +#: ../../include/user.php:341 ../../include/user.php:348 msgid "Profile Photos" msgstr "" @@ -487,7 +487,7 @@ msgstr "" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:999 ../../mod/admin.php:1207 ../../mod/settings.php:79 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 #: ../../mod/uexport.php:48 ../../include/nav.php:167 msgid "Settings" msgstr "" @@ -565,8 +565,8 @@ msgstr "" msgid "Set colour scheme" msgstr "" -#: ../../view/theme/clean/config.php:54 ../../include/user.php:243 -#: ../../include/text.php:1649 +#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 +#: ../../include/text.php:1658 msgid "default" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "Create a New Account" msgstr "" -#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108 +#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 msgid "Register" msgstr "" @@ -779,35 +779,35 @@ msgstr "" msgid "Events this week:" msgstr "" -#: ../../boot.php:1956 ../../include/nav.php:76 +#: ../../boot.php:1960 ../../include/nav.php:76 msgid "Status" msgstr "" -#: ../../boot.php:1959 +#: ../../boot.php:1963 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:1966 +#: ../../boot.php:1970 msgid "Profile Details" msgstr "" -#: ../../boot.php:1973 ../../mod/photos.php:51 +#: ../../boot.php:1977 ../../mod/photos.php:51 msgid "Photo Albums" msgstr "" -#: ../../boot.php:1977 ../../boot.php:1980 +#: ../../boot.php:1981 ../../boot.php:1984 msgid "Videos" msgstr "" -#: ../../boot.php:1990 +#: ../../boot.php:1994 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:1994 ../../mod/notes.php:44 +#: ../../boot.php:1998 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "" -#: ../../boot.php:1997 +#: ../../boot.php:2001 msgid "Only You Can See This" msgstr "" @@ -833,9 +833,9 @@ msgid "Public access denied." msgstr "" #: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:947 ../../mod/admin.php:1147 +#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:3995 +#: ../../include/items.php:4023 msgid "Item not found." msgstr "" @@ -851,35 +851,35 @@ msgstr "" msgid "Access denied." msgstr "" -#: ../../mod/friendica.php:55 +#: ../../mod/friendica.php:58 msgid "This is Friendica, version" msgstr "" -#: ../../mod/friendica.php:56 +#: ../../mod/friendica.php:59 msgid "running at web location" msgstr "" -#: ../../mod/friendica.php:58 +#: ../../mod/friendica.php:61 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "" -#: ../../mod/friendica.php:60 +#: ../../mod/friendica.php:63 msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/friendica.php:61 +#: ../../mod/friendica.php:64 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "" -#: ../../mod/friendica.php:75 +#: ../../mod/friendica.php:78 msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/friendica.php:88 +#: ../../mod/friendica.php:91 msgid "No installed plugins/addons/apps" msgstr "" @@ -888,7 +888,7 @@ msgstr "" msgid "%1$s welcomes %2$s" msgstr "" -#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54 +#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "" @@ -906,102 +906,102 @@ msgstr "" msgid "Your registration can not be processed." msgstr "" -#: ../../mod/register.php:145 +#: ../../mod/register.php:148 #, php-format msgid "Registration request at %s" msgstr "" -#: ../../mod/register.php:154 +#: ../../mod/register.php:157 msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/register.php:192 ../../mod/uimport.php:50 +#: ../../mod/register.php:195 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: ../../mod/register.php:220 +#: ../../mod/register.php:223 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "" -#: ../../mod/register.php:221 +#: ../../mod/register.php:224 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "" -#: ../../mod/register.php:222 +#: ../../mod/register.php:225 msgid "Your OpenID (optional): " msgstr "" -#: ../../mod/register.php:236 +#: ../../mod/register.php:239 msgid "Include your profile in member directory?" msgstr "" -#: ../../mod/register.php:239 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:246 -#: ../../mod/settings.php:977 ../../mod/settings.php:983 -#: ../../mod/settings.php:991 ../../mod/settings.php:995 -#: ../../mod/settings.php:1000 ../../mod/settings.php:1006 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1018 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1049 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1052 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4036 +#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 +#: ../../mod/settings.php:981 ../../mod/settings.php:987 +#: ../../mod/settings.php:995 ../../mod/settings.php:999 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 +#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 +#: ../../mod/message.php:209 ../../include/items.php:4064 msgid "Yes" msgstr "" -#: ../../mod/register.php:240 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:977 -#: ../../mod/settings.php:983 ../../mod/settings.php:991 -#: ../../mod/settings.php:995 ../../mod/settings.php:1000 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1018 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1049 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1051 ../../mod/settings.php:1052 +#: ../../mod/register.php:243 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 +#: ../../mod/settings.php:987 ../../mod/settings.php:995 +#: ../../mod/settings.php:999 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 +#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 #: ../../mod/profiles.php:611 msgid "No" msgstr "" -#: ../../mod/register.php:257 +#: ../../mod/register.php:260 msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/register.php:258 +#: ../../mod/register.php:261 msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:261 ../../mod/admin.php:570 +#: ../../mod/register.php:264 ../../mod/admin.php:572 msgid "Registration" msgstr "" -#: ../../mod/register.php:269 +#: ../../mod/register.php:272 msgid "Your Full Name (e.g. Joe Smith): " msgstr "" -#: ../../mod/register.php:270 +#: ../../mod/register.php:273 msgid "Your Email Address: " msgstr "" -#: ../../mod/register.php:271 +#: ../../mod/register.php:274 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: ../../mod/register.php:272 +#: ../../mod/register.php:275 msgid "Choose a nickname: " msgstr "" -#: ../../mod/register.php:281 ../../mod/uimport.php:64 +#: ../../mod/register.php:284 ../../mod/uimport.php:64 msgid "Import" msgstr "" -#: ../../mod/register.php:282 +#: ../../mod/register.php:285 msgid "Import your profile to this friendica instance" msgstr "" @@ -1011,7 +1011,7 @@ msgstr "" msgid "Profile not found." msgstr "" -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "" @@ -1454,12 +1454,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249 -#: ../../mod/settings.php:598 ../../mod/settings.php:624 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 +#: ../../mod/settings.php:602 ../../mod/settings.php:628 #: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4039 +#: ../../include/items.php:4067 msgid "Cancel" msgstr "" @@ -1876,19 +1876,19 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:568 +#: ../../mod/admin.php:101 ../../mod/admin.php:570 msgid "Site" msgstr "" -#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908 +#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 msgid "Users" msgstr "" -#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039 +#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239 +#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 msgid "Themes" msgstr "" @@ -1896,7 +1896,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 msgid "Logs" msgstr "" @@ -1912,19 +1912,19 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:187 ../../mod/admin.php:848 +#: ../../mod/admin.php:187 ../../mod/admin.php:852 msgid "Normal Account" msgstr "" -#: ../../mod/admin.php:188 ../../mod/admin.php:849 +#: ../../mod/admin.php:188 ../../mod/admin.php:853 msgid "Soapbox Account" msgstr "" -#: ../../mod/admin.php:189 ../../mod/admin.php:850 +#: ../../mod/admin.php:189 ../../mod/admin.php:854 msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/admin.php:190 ../../mod/admin.php:851 +#: ../../mod/admin.php:190 ../../mod/admin.php:855 msgid "Automatic Friend Account" msgstr "" @@ -1940,9 +1940,9 @@ msgstr "" msgid "Message queues" msgstr "" -#: ../../mod/admin.php:216 ../../mod/admin.php:567 ../../mod/admin.php:892 -#: ../../mod/admin.php:996 ../../mod/admin.php:1038 ../../mod/admin.php:1204 -#: ../../mod/admin.php:1238 ../../mod/admin.php:1325 +#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 +#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 +#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 msgid "Administration" msgstr "" @@ -1970,320 +1970,320 @@ msgstr "" msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/admin.php:481 +#: ../../mod/admin.php:483 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:510 ../../mod/settings.php:806 +#: ../../mod/admin.php:512 ../../mod/settings.php:810 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/admin.php:527 ../../mod/contacts.php:330 +#: ../../mod/admin.php:529 ../../mod/contacts.php:402 msgid "Never" msgstr "" -#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:538 msgid "Multi user instance" msgstr "" -#: ../../mod/admin.php:554 +#: ../../mod/admin.php:556 msgid "Closed" msgstr "" -#: ../../mod/admin.php:555 +#: ../../mod/admin.php:557 msgid "Requires approval" msgstr "" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:558 msgid "Open" msgstr "" -#: ../../mod/admin.php:560 +#: ../../mod/admin.php:562 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: ../../mod/admin.php:561 +#: ../../mod/admin.php:563 msgid "Force all links to use SSL" msgstr "" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: ../../mod/admin.php:569 ../../mod/admin.php:1040 ../../mod/admin.php:1240 -#: ../../mod/admin.php:1327 ../../mod/settings.php:597 -#: ../../mod/settings.php:707 ../../mod/settings.php:776 -#: ../../mod/settings.php:852 ../../mod/settings.php:1080 +#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 +#: ../../mod/admin.php:1332 ../../mod/settings.php:601 +#: ../../mod/settings.php:711 ../../mod/settings.php:780 +#: ../../mod/settings.php:856 ../../mod/settings.php:1084 msgid "Save Settings" msgstr "" -#: ../../mod/admin.php:571 +#: ../../mod/admin.php:573 msgid "File upload" msgstr "" -#: ../../mod/admin.php:572 +#: ../../mod/admin.php:574 msgid "Policies" msgstr "" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:575 msgid "Advanced" msgstr "" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:576 msgid "Performance" msgstr "" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:577 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:580 msgid "Site name" msgstr "" -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Additional Info" msgstr "" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "System language" msgstr "" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System theme" msgstr "" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "SSL link policy" msgstr "" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Old style 'Share'" msgstr "" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Hide help entry from navigation menu" msgstr "" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Single user instance" msgstr "" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image length" msgstr "" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "JPEG image quality" msgstr "" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:594 msgid "Register policy" msgstr "" -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "Maximum Daily Registrations" msgstr "" -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Register text" msgstr "" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 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 "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 msgid "Block public" msgstr "" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "Global directory update URL" msgstr "" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "" "URL to update the global directory. If this is not set, the global directory " "is completely unavailable to the application." msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Allow threaded items" msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Allow infinite level threading for items on this site." msgstr "" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Private posts by default for new users" msgstr "" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "Don't include post content in email notifications" msgstr "" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2291,483 +2291,494 @@ msgid "" msgstr "" #: ../../mod/admin.php:608 -msgid "Block multiple registrations" +msgid "Allow Users to set remote_self" msgstr "" #: ../../mod/admin.php:608 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: ../../mod/admin.php:609 +msgid "Block multiple registrations" +msgstr "" + +#: ../../mod/admin.php:609 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "OpenID support" msgstr "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "Fullname check" msgstr "" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "UTF-8 Regular expressions" msgstr "" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Show Community Page" msgstr "" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Enable OStatus support" msgstr "" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "" "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "Enable Diaspora support" msgstr "" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Only allow Friendica contacts" msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Verify SSL" msgstr "" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you " "cannot connect (at all) to self-signed SSL sites." msgstr "" -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:620 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 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 "" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:626 msgid "Use MySQL full text engine" msgstr "" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:626 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Suppress Language" msgstr "" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Path to item cache" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Cache duration in seconds" msgstr "" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day)." msgstr "" -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Path for lock file" msgstr "" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Temp path" msgstr "" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Base path to installation" msgstr "" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:634 msgid "New base url" msgstr "" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:652 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:662 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:665 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:669 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:672 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:687 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:691 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:694 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:739 +#: ../../mod/admin.php:740 msgid "Registration successful. Email send to user" msgstr "" -#: ../../mod/admin.php:749 +#: ../../mod/admin.php:750 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:756 +#: ../../mod/admin.php:757 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:795 +#: ../../mod/admin.php:796 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:804 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:804 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:894 +#: ../../mod/admin.php:899 msgid "Add User" msgstr "" -#: ../../mod/admin.php:895 +#: ../../mod/admin.php:900 msgid "select all" msgstr "" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:901 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:897 +#: ../../mod/admin.php:902 msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/admin.php:898 +#: ../../mod/admin.php:903 msgid "Request date" msgstr "" -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:924 ../../mod/crepair.php:148 -#: ../../mod/settings.php:599 ../../mod/settings.php:625 +#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:929 ../../mod/crepair.php:150 +#: ../../mod/settings.php:603 ../../mod/settings.php:629 msgid "Name" msgstr "" -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:926 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:904 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:900 ../../mod/notifications.php:161 +#: ../../mod/admin.php:905 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:906 msgid "Deny" msgstr "" -#: ../../mod/admin.php:903 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 +#: ../../mod/admin.php:908 ../../mod/contacts.php:425 +#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 msgid "Block" msgstr "" -#: ../../mod/admin.php:904 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 +#: ../../mod/admin.php:909 ../../mod/contacts.php:425 +#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 msgid "Unblock" msgstr "" -#: ../../mod/admin.php:905 +#: ../../mod/admin.php:910 msgid "Site admin" msgstr "" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:911 msgid "Account expired" msgstr "" -#: ../../mod/admin.php:909 +#: ../../mod/admin.php:914 msgid "New User" msgstr "" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Register date" msgstr "" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Last login" msgstr "" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Last item" msgstr "" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:915 msgid "Deleted since" msgstr "" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:916 msgid "Account" msgstr "" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:918 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:919 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:924 +#: ../../mod/admin.php:929 msgid "Name of the new user." msgstr "" -#: ../../mod/admin.php:925 +#: ../../mod/admin.php:930 msgid "Nickname" msgstr "" -#: ../../mod/admin.php:925 +#: ../../mod/admin.php:930 msgid "Nickname of the new user." msgstr "" -#: ../../mod/admin.php:926 +#: ../../mod/admin.php:931 msgid "Email address of the new user." msgstr "" -#: ../../mod/admin.php:959 +#: ../../mod/admin.php:964 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:963 +#: ../../mod/admin.php:968 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:973 ../../mod/admin.php:1176 +#: ../../mod/admin.php:978 ../../mod/admin.php:1181 msgid "Disable" msgstr "" -#: ../../mod/admin.php:975 ../../mod/admin.php:1178 +#: ../../mod/admin.php:980 ../../mod/admin.php:1183 msgid "Enable" msgstr "" -#: ../../mod/admin.php:998 ../../mod/admin.php:1206 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:1006 ../../mod/admin.php:1216 +#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 msgid "Author: " msgstr "" -#: ../../mod/admin.php:1007 ../../mod/admin.php:1217 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1136 +#: ../../mod/admin.php:1141 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1198 +#: ../../mod/admin.php:1203 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1244 +#: ../../mod/admin.php:1249 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1245 +#: ../../mod/admin.php:1250 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1272 +#: ../../mod/admin.php:1277 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1328 +#: ../../mod/admin.php:1333 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1339 msgid "Enable Debugging" msgstr "" -#: ../../mod/admin.php:1335 +#: ../../mod/admin.php:1340 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1335 +#: ../../mod/admin.php:1340 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:1336 +#: ../../mod/admin.php:1341 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1385 ../../mod/contacts.php:409 +#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 msgid "Update now" msgstr "" -#: ../../mod/admin.php:1386 +#: ../../mod/admin.php:1391 msgid "Close" msgstr "" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1397 msgid "FTP Host" msgstr "" -#: ../../mod/admin.php:1393 +#: ../../mod/admin.php:1398 msgid "FTP Path" msgstr "" -#: ../../mod/admin.php:1394 +#: ../../mod/admin.php:1399 msgid "FTP User" msgstr "" -#: ../../mod/admin.php:1395 +#: ../../mod/admin.php:1400 msgid "FTP Password" msgstr "" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927 -#: ../../include/text.php:928 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 +#: ../../include/text.php:935 ../../include/nav.php:118 msgid "Search" msgstr "" @@ -2895,7 +2906,7 @@ msgstr "" msgid "Find on this site" msgstr "" -#: ../../mod/directory.php:59 ../../mod/contacts.php:612 +#: ../../mod/directory.php:59 ../../mod/contacts.php:685 msgid "Finding: " msgstr "" @@ -2903,7 +2914,7 @@ msgstr "" msgid "Site Directory" msgstr "" -#: ../../mod/directory.php:61 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 ../../mod/contacts.php:686 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "" @@ -2924,66 +2935,80 @@ msgstr "" msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/crepair.php:102 +#: ../../mod/crepair.php:104 msgid "Contact settings applied." msgstr "" -#: ../../mod/crepair.php:104 +#: ../../mod/crepair.php:106 msgid "Contact update failed." msgstr "" -#: ../../mod/crepair.php:135 +#: ../../mod/crepair.php:137 msgid "Repair Contact Settings" msgstr "" -#: ../../mod/crepair.php:137 +#: ../../mod/crepair.php:139 msgid "" "WARNING: This is highly advanced and if you enter incorrect " "information your communications with this contact may stop working." msgstr "" -#: ../../mod/crepair.php:138 +#: ../../mod/crepair.php:140 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "" -#: ../../mod/crepair.php:144 +#: ../../mod/crepair.php:146 msgid "Return to contact editor" msgstr "" -#: ../../mod/crepair.php:149 +#: ../../mod/crepair.php:151 msgid "Account Nickname" msgstr "" -#: ../../mod/crepair.php:150 +#: ../../mod/crepair.php:152 msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: ../../mod/crepair.php:151 +#: ../../mod/crepair.php:153 msgid "Account URL" msgstr "" -#: ../../mod/crepair.php:152 +#: ../../mod/crepair.php:154 msgid "Friend Request URL" msgstr "" -#: ../../mod/crepair.php:153 +#: ../../mod/crepair.php:155 msgid "Friend Confirm URL" msgstr "" -#: ../../mod/crepair.php:154 +#: ../../mod/crepair.php:156 msgid "Notification Endpoint URL" msgstr "" -#: ../../mod/crepair.php:155 +#: ../../mod/crepair.php:157 msgid "Poll/Feed URL" msgstr "" -#: ../../mod/crepair.php:156 +#: ../../mod/crepair.php:158 msgid "New photo from this URL" msgstr "" +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + #: ../../mod/uimport.php:66 msgid "Move account" msgstr "" @@ -3023,7 +3048,7 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 msgid "Save" msgstr "" @@ -3120,7 +3145,7 @@ msgstr "" msgid "Disallowed profile URL." msgstr "" -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 msgid "Failed to update contact record." msgstr "" @@ -3156,7 +3181,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 msgid "[Name Withheld]" msgstr "" @@ -3208,7 +3233,7 @@ msgstr "" msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "" @@ -3238,294 +3263,307 @@ msgstr "" msgid "View in context" msgstr "" -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +#: ../../mod/contacts.php:104 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 msgid "Could not access contact record." msgstr "" -#: ../../mod/contacts.php:99 +#: ../../mod/contacts.php:149 msgid "Could not locate selected profile." msgstr "" -#: ../../mod/contacts.php:122 +#: ../../mod/contacts.php:172 msgid "Contact updated." msgstr "" -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:272 msgid "Contact has been blocked" msgstr "" -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:272 msgid "Contact has been unblocked" msgstr "" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:282 msgid "Contact has been ignored" msgstr "" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:282 msgid "Contact has been unignored" msgstr "" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:293 msgid "Contact has been archived" msgstr "" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:293 msgid "Contact has been unarchived" msgstr "" -#: ../../mod/contacts.php:244 +#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 msgid "Do you really want to delete this contact?" msgstr "" -#: ../../mod/contacts.php:263 +#: ../../mod/contacts.php:335 msgid "Contact has been removed." msgstr "" -#: ../../mod/contacts.php:301 +#: ../../mod/contacts.php:373 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: ../../mod/contacts.php:305 +#: ../../mod/contacts.php:377 #, php-format msgid "You are sharing with %s" msgstr "" -#: ../../mod/contacts.php:310 +#: ../../mod/contacts.php:382 #, php-format msgid "%s is sharing with you" msgstr "" -#: ../../mod/contacts.php:327 +#: ../../mod/contacts.php:399 msgid "Private communications are not available for this contact." msgstr "" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:406 msgid "(Update was successful)" msgstr "" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:406 msgid "(Update was not successful)" msgstr "" -#: ../../mod/contacts.php:336 +#: ../../mod/contacts.php:408 msgid "Suggest friends" msgstr "" -#: ../../mod/contacts.php:340 +#: ../../mod/contacts.php:412 #, php-format msgid "Network type: %s" msgstr "" -#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: ../../mod/contacts.php:348 +#: ../../mod/contacts.php:420 msgid "View all contacts" msgstr "" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:428 msgid "Toggle Blocked status" msgstr "" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 +#: ../../mod/contacts.php:693 msgid "Unignore" msgstr "" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 +#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 +#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "" -#: ../../mod/contacts.php:362 +#: ../../mod/contacts.php:434 msgid "Toggle Ignored status" msgstr "" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 msgid "Unarchive" msgstr "" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 msgid "Archive" msgstr "" -#: ../../mod/contacts.php:369 +#: ../../mod/contacts.php:441 msgid "Toggle Archive status" msgstr "" -#: ../../mod/contacts.php:372 +#: ../../mod/contacts.php:444 msgid "Repair" msgstr "" -#: ../../mod/contacts.php:375 +#: ../../mod/contacts.php:447 msgid "Advanced Contact Settings" msgstr "" -#: ../../mod/contacts.php:381 +#: ../../mod/contacts.php:453 msgid "Communications lost with this contact!" msgstr "" -#: ../../mod/contacts.php:384 +#: ../../mod/contacts.php:456 msgid "Contact Editor" msgstr "" -#: ../../mod/contacts.php:387 +#: ../../mod/contacts.php:459 msgid "Profile Visibility" msgstr "" -#: ../../mod/contacts.php:388 +#: ../../mod/contacts.php:460 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../mod/contacts.php:389 +#: ../../mod/contacts.php:461 msgid "Contact Information / Notes" msgstr "" -#: ../../mod/contacts.php:390 +#: ../../mod/contacts.php:462 msgid "Edit contact notes" msgstr "" -#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 +#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/contacts.php:396 +#: ../../mod/contacts.php:468 msgid "Block/Unblock contact" msgstr "" -#: ../../mod/contacts.php:397 +#: ../../mod/contacts.php:469 msgid "Ignore contact" msgstr "" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:470 msgid "Repair URL settings" msgstr "" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:471 msgid "View conversations" msgstr "" -#: ../../mod/contacts.php:401 +#: ../../mod/contacts.php:473 msgid "Delete contact" msgstr "" -#: ../../mod/contacts.php:405 +#: ../../mod/contacts.php:477 msgid "Last update:" msgstr "" -#: ../../mod/contacts.php:407 +#: ../../mod/contacts.php:479 msgid "Update public posts" msgstr "" -#: ../../mod/contacts.php:416 +#: ../../mod/contacts.php:488 msgid "Currently blocked" msgstr "" -#: ../../mod/contacts.php:417 +#: ../../mod/contacts.php:489 msgid "Currently ignored" msgstr "" -#: ../../mod/contacts.php:418 +#: ../../mod/contacts.php:490 msgid "Currently archived" msgstr "" -#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "" -#: ../../mod/contacts.php:419 +#: ../../mod/contacts.php:491 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:542 msgid "Suggestions" msgstr "" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:545 msgid "Suggest potential friends" msgstr "" -#: ../../mod/contacts.php:476 ../../mod/group.php:194 +#: ../../mod/contacts.php:548 ../../mod/group.php:194 msgid "All Contacts" msgstr "" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:551 msgid "Show all contacts" msgstr "" -#: ../../mod/contacts.php:482 +#: ../../mod/contacts.php:554 msgid "Unblocked" msgstr "" -#: ../../mod/contacts.php:485 +#: ../../mod/contacts.php:557 msgid "Only show unblocked contacts" msgstr "" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:561 msgid "Blocked" msgstr "" -#: ../../mod/contacts.php:492 +#: ../../mod/contacts.php:564 msgid "Only show blocked contacts" msgstr "" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:568 msgid "Ignored" msgstr "" -#: ../../mod/contacts.php:499 +#: ../../mod/contacts.php:571 msgid "Only show ignored contacts" msgstr "" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:575 msgid "Archived" msgstr "" -#: ../../mod/contacts.php:506 +#: ../../mod/contacts.php:578 msgid "Only show archived contacts" msgstr "" -#: ../../mod/contacts.php:510 +#: ../../mod/contacts.php:582 msgid "Hidden" msgstr "" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:585 msgid "Only show hidden contacts" msgstr "" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:633 msgid "Mutual Friendship" msgstr "" -#: ../../mod/contacts.php:565 +#: ../../mod/contacts.php:637 msgid "is a fan of yours" msgstr "" -#: ../../mod/contacts.php:569 +#: ../../mod/contacts.php:641 msgid "you are a fan of" msgstr "" -#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "" -#: ../../mod/contacts.php:611 +#: ../../mod/contacts.php:684 msgid "Search your contacts" msgstr "" +#: ../../mod/contacts.php:691 ../../mod/settings.php:126 +#: ../../mod/settings.php:627 +msgid "Update" +msgstr "" + #: ../../mod/settings.php:28 ../../mod/photos.php:79 msgid "everybody" msgstr "" @@ -3566,10 +3604,6 @@ msgstr "" msgid "Missing some important data!" msgstr "" -#: ../../mod/settings.php:126 ../../mod/settings.php:623 -msgid "Update" -msgstr "" - #: ../../mod/settings.php:232 msgid "Failed to connect with email account using the settings provided." msgstr "" @@ -3622,515 +3656,515 @@ msgstr "" msgid " Not valid email." msgstr "" -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:438 msgid " Cannot change to that email." msgstr "" -#: ../../mod/settings.php:489 +#: ../../mod/settings.php:493 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:497 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:523 +#: ../../mod/settings.php:527 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:596 ../../mod/settings.php:622 -#: ../../mod/settings.php:658 +#: ../../mod/settings.php:600 ../../mod/settings.php:626 +#: ../../mod/settings.php:662 msgid "Add application" msgstr "" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 +#: ../../mod/settings.php:604 ../../mod/settings.php:630 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:601 ../../mod/settings.php:627 +#: ../../mod/settings.php:605 ../../mod/settings.php:631 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:602 ../../mod/settings.php:628 +#: ../../mod/settings.php:606 ../../mod/settings.php:632 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:614 +#: ../../mod/settings.php:618 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:657 +#: ../../mod/settings.php:661 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:665 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:666 msgid "No name" msgstr "" -#: ../../mod/settings.php:663 +#: ../../mod/settings.php:667 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:679 msgid "No Plugin settings configured" msgstr "" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:687 msgid "Plugin Settings" msgstr "" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:701 msgid "Off" msgstr "" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:701 msgid "On" msgstr "" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:709 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 msgid "enabled" msgstr "" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 msgid "disabled" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:723 msgid "StatusNet" msgstr "" -#: ../../mod/settings.php:751 +#: ../../mod/settings.php:755 msgid "Email access is disabled on this site." msgstr "" -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:762 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:763 +#: ../../mod/settings.php:767 msgid "Email/Mailbox Setup" msgstr "" -#: ../../mod/settings.php:764 +#: ../../mod/settings.php:768 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: ../../mod/settings.php:765 +#: ../../mod/settings.php:769 msgid "Last successful email check:" msgstr "" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:771 msgid "IMAP server name:" msgstr "" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:772 msgid "IMAP port:" msgstr "" -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:773 msgid "Security:" msgstr "" -#: ../../mod/settings.php:769 ../../mod/settings.php:774 +#: ../../mod/settings.php:773 ../../mod/settings.php:778 msgid "None" msgstr "" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:774 msgid "Email login name:" msgstr "" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:775 msgid "Email password:" msgstr "" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:776 msgid "Reply-to address:" msgstr "" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:777 msgid "Send public posts to all email contacts:" msgstr "" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Action after import:" msgstr "" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Mark as seen" msgstr "" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Move to folder" msgstr "" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:779 msgid "Move to folder:" msgstr "" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:854 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:856 ../../mod/settings.php:869 +#: ../../mod/settings.php:860 ../../mod/settings.php:873 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:861 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:862 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:862 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:863 msgid "Number of items to display per page:" msgstr "" -#: ../../mod/settings.php:859 ../../mod/settings.php:860 +#: ../../mod/settings.php:863 ../../mod/settings.php:864 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:860 +#: ../../mod/settings.php:864 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:865 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:866 msgid "Infinite scroll" msgstr "" -#: ../../mod/settings.php:938 +#: ../../mod/settings.php:942 msgid "Normal Account Page" msgstr "" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:943 msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:946 msgid "Soapbox Page" msgstr "" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:947 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:950 msgid "Community Forum/Celebrity Account" msgstr "" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:951 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:954 msgid "Automatic Friend Page" msgstr "" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:955 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:958 msgid "Private Forum [Experimental]" msgstr "" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:959 msgid "Private forum - approved members only" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:971 msgid "OpenID:" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:971 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:981 msgid "Publish your default profile in your local site directory?" msgstr "" -#: ../../mod/settings.php:983 +#: ../../mod/settings.php:987 msgid "Publish your default profile in the global social directory?" msgstr "" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:995 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:999 msgid "Hide your profile details from unknown viewers?" msgstr "" -#: ../../mod/settings.php:1000 +#: ../../mod/settings.php:1004 msgid "Allow friends to post to your profile page?" msgstr "" -#: ../../mod/settings.php:1006 +#: ../../mod/settings.php:1010 msgid "Allow friends to tag your posts?" msgstr "" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:1018 +#: ../../mod/settings.php:1022 msgid "Permit unknown people to send you private mail?" msgstr "" -#: ../../mod/settings.php:1026 +#: ../../mod/settings.php:1030 msgid "Profile is not published." msgstr "" -#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 msgid "or" msgstr "" -#: ../../mod/settings.php:1034 +#: ../../mod/settings.php:1038 msgid "Your Identity Address is" msgstr "" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1049 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1049 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1050 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1051 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1052 msgid "Expire posts:" msgstr "" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 msgid "Expire personal notes:" msgstr "" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1054 msgid "Expire starred posts:" msgstr "" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1055 msgid "Expire photos:" msgstr "" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1056 msgid "Only expire posts by others:" msgstr "" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1082 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1090 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1091 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1092 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1092 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1093 msgid "Current Password:" msgstr "" -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 msgid "Your current password to confirm the changes" msgstr "" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1094 msgid "Password:" msgstr "" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1098 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1100 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1101 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1102 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1103 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1106 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1108 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1134 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 msgid "(to prevent spam abuse)" msgstr "" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1109 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1110 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:1115 ../../mod/photos.php:1140 +#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 #: ../../mod/photos.php:1506 msgid "Show to Groups" msgstr "" -#: ../../mod/settings.php:1116 ../../mod/photos.php:1141 +#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 #: ../../mod/photos.php:1507 msgid "Show to Contacts" msgstr "" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1121 msgid "Default Private Post" msgstr "" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1122 msgid "Default Public Post" msgstr "" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1126 msgid "Default Permissions for New Posts" msgstr "" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1138 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1141 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1142 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1143 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1144 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1145 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1146 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1147 msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1148 msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1149 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1150 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1151 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1152 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1153 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1154 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1157 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1158 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1161 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1162 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1163 msgid "Resend relocate message to contacts" msgstr "" @@ -4677,7 +4711,7 @@ msgstr "" msgid "No contacts." msgstr "" -#: ../../mod/viewcontacts.php:76 ../../include/text.php:850 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 msgid "View Contacts" msgstr "" @@ -4890,7 +4924,7 @@ msgstr "" msgid "No videos selected" msgstr "" -#: ../../mod/videos.php:301 ../../include/text.php:1376 +#: ../../mod/videos.php:301 ../../include/text.php:1383 msgid "View Video" msgstr "" @@ -4962,7 +4996,7 @@ msgid "Image exceeds size limit of %d" msgstr "" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:446 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "" @@ -5079,7 +5113,7 @@ msgstr "" msgid "Edit event" msgstr "" -#: ../../mod/events.php:335 ../../include/text.php:1606 +#: ../../mod/events.php:335 ../../include/text.php:1615 msgid "link to source" msgstr "" @@ -5214,32 +5248,32 @@ msgstr "" msgid "Unable to locate original post." msgstr "" -#: ../../mod/item.php:310 +#: ../../mod/item.php:317 msgid "Empty post discarded." msgstr "" -#: ../../mod/item.php:872 +#: ../../mod/item.php:884 msgid "System error. Post not saved." msgstr "" -#: ../../mod/item.php:897 +#: ../../mod/item.php:909 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social network." msgstr "" -#: ../../mod/item.php:899 +#: ../../mod/item.php:911 #, php-format msgid "You may visit them online at %s" msgstr "" -#: ../../mod/item.php:900 +#: ../../mod/item.php:912 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "" -#: ../../mod/item.php:904 +#: ../../mod/item.php:916 #, php-format msgid "%s posted an update." msgstr "" @@ -5641,6 +5675,15 @@ msgstr "" msgid "This action is not available under your subscription plan." msgstr "" +#: ../../include/api.php:255 ../../include/api.php:266 +#: ../../include/api.php:356 +msgid "User not found." +msgstr "" + +#: ../../include/api.php:1024 +msgid "There is no status with this id." +msgstr "" + #: ../../include/network.php:883 msgid "view full size" msgstr "" @@ -5708,39 +5751,39 @@ msgstr "" msgid "Not a valid email address." msgstr "" -#: ../../include/user.php:122 +#: ../../include/user.php:125 msgid "Cannot use that email." msgstr "" -#: ../../include/user.php:128 +#: ../../include/user.php:131 msgid "" "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "must also begin with a letter." msgstr "" -#: ../../include/user.php:134 ../../include/user.php:232 +#: ../../include/user.php:137 ../../include/user.php:235 msgid "Nickname is already registered. Please choose another." msgstr "" -#: ../../include/user.php:144 +#: ../../include/user.php:147 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "" -#: ../../include/user.php:160 +#: ../../include/user.php:163 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: ../../include/user.php:218 +#: ../../include/user.php:221 msgid "An error occurred during registration. Please try again." msgstr "" -#: ../../include/user.php:253 +#: ../../include/user.php:256 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: ../../include/user.php:285 ../../include/user.php:289 +#: ../../include/user.php:288 ../../include/user.php:292 #: ../../include/profile_selectors.php:42 msgid "Friends" msgstr "" @@ -5750,7 +5793,7 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:211 ../../include/text.php:979 +#: ../../include/conversation.php:211 ../../include/text.php:986 msgid "poked" msgstr "" @@ -5775,34 +5818,34 @@ msgstr "" msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:871 ../../include/Contact.php:228 +#: ../../include/conversation.php:871 ../../include/Contact.php:229 msgid "View Status" msgstr "" -#: ../../include/conversation.php:872 ../../include/Contact.php:229 +#: ../../include/conversation.php:872 ../../include/Contact.php:230 msgid "View Profile" msgstr "" -#: ../../include/conversation.php:873 ../../include/Contact.php:230 +#: ../../include/conversation.php:873 ../../include/Contact.php:231 msgid "View Photos" msgstr "" -#: ../../include/conversation.php:874 ../../include/Contact.php:231 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 msgid "Network Posts" msgstr "" -#: ../../include/conversation.php:875 ../../include/Contact.php:232 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "" -#: ../../include/conversation.php:876 ../../include/Contact.php:234 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 msgid "Send PM" msgstr "" -#: ../../include/conversation.php:877 ../../include/Contact.php:227 +#: ../../include/conversation.php:877 ../../include/Contact.php:228 msgid "Poke" msgstr "" @@ -5929,262 +5972,262 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" -#: ../../include/text.php:293 +#: ../../include/text.php:300 msgid "newer" msgstr "" -#: ../../include/text.php:295 +#: ../../include/text.php:302 msgid "older" msgstr "" -#: ../../include/text.php:300 +#: ../../include/text.php:307 msgid "prev" msgstr "" -#: ../../include/text.php:302 +#: ../../include/text.php:309 msgid "first" msgstr "" -#: ../../include/text.php:334 +#: ../../include/text.php:341 msgid "last" msgstr "" -#: ../../include/text.php:337 +#: ../../include/text.php:344 msgid "next" msgstr "" -#: ../../include/text.php:829 +#: ../../include/text.php:836 msgid "No contacts" msgstr "" -#: ../../include/text.php:838 +#: ../../include/text.php:845 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:979 +#: ../../include/text.php:986 msgid "poke" msgstr "" -#: ../../include/text.php:980 +#: ../../include/text.php:987 msgid "ping" msgstr "" -#: ../../include/text.php:980 +#: ../../include/text.php:987 msgid "pinged" msgstr "" -#: ../../include/text.php:981 +#: ../../include/text.php:988 msgid "prod" msgstr "" -#: ../../include/text.php:981 +#: ../../include/text.php:988 msgid "prodded" msgstr "" -#: ../../include/text.php:982 +#: ../../include/text.php:989 msgid "slap" msgstr "" -#: ../../include/text.php:982 +#: ../../include/text.php:989 msgid "slapped" msgstr "" -#: ../../include/text.php:983 +#: ../../include/text.php:990 msgid "finger" msgstr "" -#: ../../include/text.php:983 +#: ../../include/text.php:990 msgid "fingered" msgstr "" -#: ../../include/text.php:984 +#: ../../include/text.php:991 msgid "rebuff" msgstr "" -#: ../../include/text.php:984 +#: ../../include/text.php:991 msgid "rebuffed" msgstr "" -#: ../../include/text.php:998 +#: ../../include/text.php:1005 msgid "happy" msgstr "" -#: ../../include/text.php:999 +#: ../../include/text.php:1006 msgid "sad" msgstr "" -#: ../../include/text.php:1000 +#: ../../include/text.php:1007 msgid "mellow" msgstr "" -#: ../../include/text.php:1001 +#: ../../include/text.php:1008 msgid "tired" msgstr "" -#: ../../include/text.php:1002 +#: ../../include/text.php:1009 msgid "perky" msgstr "" -#: ../../include/text.php:1003 +#: ../../include/text.php:1010 msgid "angry" msgstr "" -#: ../../include/text.php:1004 +#: ../../include/text.php:1011 msgid "stupified" msgstr "" -#: ../../include/text.php:1005 +#: ../../include/text.php:1012 msgid "puzzled" msgstr "" -#: ../../include/text.php:1006 +#: ../../include/text.php:1013 msgid "interested" msgstr "" -#: ../../include/text.php:1007 +#: ../../include/text.php:1014 msgid "bitter" msgstr "" -#: ../../include/text.php:1008 +#: ../../include/text.php:1015 msgid "cheerful" msgstr "" -#: ../../include/text.php:1009 +#: ../../include/text.php:1016 msgid "alive" msgstr "" -#: ../../include/text.php:1010 +#: ../../include/text.php:1017 msgid "annoyed" msgstr "" -#: ../../include/text.php:1011 +#: ../../include/text.php:1018 msgid "anxious" msgstr "" -#: ../../include/text.php:1012 +#: ../../include/text.php:1019 msgid "cranky" msgstr "" -#: ../../include/text.php:1013 +#: ../../include/text.php:1020 msgid "disturbed" msgstr "" -#: ../../include/text.php:1014 +#: ../../include/text.php:1021 msgid "frustrated" msgstr "" -#: ../../include/text.php:1015 +#: ../../include/text.php:1022 msgid "motivated" msgstr "" -#: ../../include/text.php:1016 +#: ../../include/text.php:1023 msgid "relaxed" msgstr "" -#: ../../include/text.php:1017 +#: ../../include/text.php:1024 msgid "surprised" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Monday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Tuesday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Wednesday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Thursday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Friday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Saturday" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Sunday" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "January" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "February" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "March" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "April" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "May" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "June" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "July" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "August" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "September" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "October" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "November" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "December" msgstr "" -#: ../../include/text.php:1408 +#: ../../include/text.php:1415 msgid "bytes" msgstr "" -#: ../../include/text.php:1432 ../../include/text.php:1444 +#: ../../include/text.php:1439 ../../include/text.php:1451 msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1661 +#: ../../include/text.php:1670 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1917 +#: ../../include/text.php:1926 msgid "activity" msgstr "" -#: ../../include/text.php:1920 +#: ../../include/text.php:1929 msgid "post" msgstr "" -#: ../../include/text.php:2075 +#: ../../include/text.php:2084 msgid "Item filed" msgstr "" @@ -6644,23 +6687,23 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:614 -#: ../../include/bbcode.php:615 +#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 +#: ../../include/bbcode.php:621 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:279 +#: ../../include/bbcode.php:285 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: ../../include/bbcode.php:578 ../../include/bbcode.php:598 +#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 msgid "$1 wrote:" msgstr "" -#: ../../include/bbcode.php:625 ../../include/bbcode.php:626 +#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 msgid "Encrypted content" msgstr "" @@ -6967,7 +7010,7 @@ msgstr "" msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/diaspora.php:2264 +#: ../../include/diaspora.php:2269 msgid "Attachments:" msgstr "" @@ -6975,27 +7018,27 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: ../../include/items.php:3511 +#: ../../include/items.php:3539 msgid "A new person is sharing with you at " msgstr "" -#: ../../include/items.php:3511 +#: ../../include/items.php:3539 msgid "You have a new follower at " msgstr "" -#: ../../include/items.php:4034 +#: ../../include/items.php:4062 msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/items.php:4257 +#: ../../include/items.php:4285 msgid "Archives" msgstr "" -#: ../../include/oembed.php:138 +#: ../../include/oembed.php:140 msgid "Embedded content" msgstr "" -#: ../../include/oembed.php:147 +#: ../../include/oembed.php:149 msgid "Embedding disabled" msgstr "" @@ -7249,7 +7292,7 @@ msgstr "" msgid "stopped following" msgstr "" -#: ../../include/Contact.php:233 +#: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "" diff --git a/view/de/messages.po b/view/de/messages.po index 36e2165f5a..453536230b 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -17,7 +17,7 @@ # Oliver , 2012 # Sennewood , 2013 # Sennewood , 2012-2013 -# bavatar , 2013 +# bavatar , 2013-2014 # bavatar , 2011-2013 # zottel , 2011-2012 # tschlotfeldt , 2011 @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-11-17 15:44+0100\n" -"PO-Revision-Date: 2013-11-19 08:36+0000\n" +"POT-Creation-Date: 2013-12-31 18:07+0100\n" +"PO-Revision-Date: 2014-01-01 09:39+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgid "Private Message" msgstr "Private Nachricht" #: ../../object/Item.php:117 ../../mod/editpost.php:109 -#: ../../mod/content.php:727 ../../mod/settings.php:659 +#: ../../mod/content.php:727 ../../mod/settings.php:663 msgid "Edit" msgstr "Bearbeiten" @@ -54,10 +54,10 @@ msgstr "Bearbeiten" msgid "Select" msgstr "Auswählen" -#: ../../object/Item.php:127 ../../mod/admin.php:902 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../mod/settings.php:660 -#: ../../mod/group.php:171 ../../mod/photos.php:1637 -#: ../../include/conversation.php:612 +#: ../../object/Item.php:127 ../../mod/admin.php:907 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/contacts.php:695 +#: ../../mod/settings.php:664 ../../mod/group.php:171 +#: ../../mod/photos.php:1637 ../../include/conversation.php:612 msgid "Delete" msgstr "Löschen" @@ -148,7 +148,7 @@ msgstr "via Wall-To-Wall:" msgid "%s from %s" msgstr "%s von %s" -#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685 +#: ../../object/Item.php:319 ../../object/Item.php:635 ../../boot.php:685 #: ../../mod/content.php:708 ../../mod/photos.php:1551 #: ../../mod/photos.php:1595 ../../mod/photos.php:1678 msgid "Comment" @@ -162,40 +162,40 @@ msgstr "Kommentar" msgid "Please wait" msgstr "Bitte warten" -#: ../../object/Item.php:343 ../../mod/content.php:602 +#: ../../object/Item.php:345 ../../mod/content.php:602 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../object/Item.php:345 ../../object/Item.php:358 -#: ../../mod/content.php:604 ../../include/text.php:1919 +#: ../../object/Item.php:347 ../../object/Item.php:360 +#: ../../mod/content.php:604 ../../include/text.php:1928 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605 +#: ../../object/Item.php:348 ../../boot.php:686 ../../mod/content.php:605 #: ../../include/contact_widgets.php:204 msgid "show more" msgstr "mehr anzeigen" -#: ../../object/Item.php:631 ../../mod/content.php:706 +#: ../../object/Item.php:633 ../../mod/content.php:706 #: ../../mod/photos.php:1549 ../../mod/photos.php:1593 #: ../../mod/photos.php:1676 msgid "This is you" msgstr "Das bist du" -#: ../../object/Item.php:634 ../../view/theme/perihel/config.php:95 +#: ../../object/Item.php:636 ../../view/theme/perihel/config.php:95 #: ../../view/theme/diabook/theme.php:633 #: ../../view/theme/diabook/config.php:148 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 #: ../../view/theme/clean/config.php:71 #: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 #: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/crepair.php:166 ../../mod/content.php:709 -#: ../../mod/contacts.php:386 ../../mod/profiles.php:630 +#: ../../mod/crepair.php:171 ../../mod/content.php:709 +#: ../../mod/contacts.php:458 ../../mod/profiles.php:630 #: ../../mod/message.php:335 ../../mod/message.php:564 #: ../../mod/localtime.php:45 ../../mod/photos.php:1078 #: ../../mod/photos.php:1199 ../../mod/photos.php:1501 @@ -206,39 +206,39 @@ msgstr "Das bist du" msgid "Submit" msgstr "Senden" -#: ../../object/Item.php:635 ../../mod/content.php:710 +#: ../../object/Item.php:637 ../../mod/content.php:710 msgid "Bold" msgstr "Fett" -#: ../../object/Item.php:636 ../../mod/content.php:711 +#: ../../object/Item.php:638 ../../mod/content.php:711 msgid "Italic" msgstr "Kursiv" -#: ../../object/Item.php:637 ../../mod/content.php:712 +#: ../../object/Item.php:639 ../../mod/content.php:712 msgid "Underline" msgstr "Unterstrichen" -#: ../../object/Item.php:638 ../../mod/content.php:713 +#: ../../object/Item.php:640 ../../mod/content.php:713 msgid "Quote" msgstr "Zitat" -#: ../../object/Item.php:639 ../../mod/content.php:714 +#: ../../object/Item.php:641 ../../mod/content.php:714 msgid "Code" msgstr "Code" -#: ../../object/Item.php:640 ../../mod/content.php:715 +#: ../../object/Item.php:642 ../../mod/content.php:715 msgid "Image" msgstr "Bild" -#: ../../object/Item.php:641 ../../mod/content.php:716 +#: ../../object/Item.php:643 ../../mod/content.php:716 msgid "Link" msgstr "Link" -#: ../../object/Item.php:642 ../../mod/content.php:717 +#: ../../object/Item.php:644 ../../mod/content.php:717 msgid "Video" msgstr "Video" -#: ../../object/Item.php:643 ../../mod/editpost.php:145 +#: ../../object/Item.php:645 ../../mod/editpost.php:145 #: ../../mod/content.php:718 ../../mod/photos.php:1553 #: ../../mod/photos.php:1597 ../../mod/photos.php:1680 #: ../../include/conversation.php:1116 @@ -267,10 +267,10 @@ msgstr "Zugriff verweigert" #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 #: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 -#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:115 -#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:147 -#: ../../mod/settings.php:96 ../../mod/settings.php:579 -#: ../../mod/settings.php:584 ../../mod/profiles.php:146 +#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:240 +#: ../../mod/settings.php:96 ../../mod/settings.php:583 +#: ../../mod/settings.php:588 ../../mod/profiles.php:146 #: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 #: ../../mod/message.php:38 ../../mod/message.php:174 #: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 @@ -282,7 +282,7 @@ msgstr "Zugriff verweigert" #: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 #: ../../mod/notifications.php:66 ../../mod/invite.php:15 #: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 -#: ../../include/items.php:4187 +#: ../../include/items.php:4215 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -303,7 +303,7 @@ msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" #: ../../view/theme/perihel/theme.php:34 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1963 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1967 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../include/nav.php:77 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 @@ -316,7 +316,7 @@ msgid "Your profile page" msgstr "Deine Profilseite" #: ../../view/theme/perihel/theme.php:35 -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1970 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1974 #: ../../mod/fbrowser.php:25 ../../include/nav.php:78 msgid "Photos" msgstr "Bilder" @@ -327,7 +327,7 @@ msgid "Your photos" msgstr "Deine Fotos" #: ../../view/theme/perihel/theme.php:36 -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1987 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1991 #: ../../mod/events.php:370 ../../include/nav.php:79 msgid "Events" msgstr "Veranstaltungen" @@ -391,7 +391,7 @@ msgstr "Liniengröße für Beiträge und Kommantare festlegen" msgid "Set resolution for middle column" msgstr "Auflösung für die Mittelspalte setzen" -#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607 +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:680 #: ../../include/nav.php:171 msgid "Contacts" msgstr "Kontakte" @@ -426,7 +426,7 @@ msgid "Last likes" msgstr "Zuletzt gemocht" #: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1913 +#: ../../include/conversation.php:246 ../../include/text.php:1922 msgid "event" msgstr "Veranstaltung" @@ -435,19 +435,19 @@ msgstr "Veranstaltung" #: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 #: ../../include/conversation.php:121 ../../include/conversation.php:130 #: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../include/diaspora.php:1874 +#: ../../include/diaspora.php:1878 msgid "status" msgstr "Status" #: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 #: ../../mod/like.php:151 ../../mod/subthread.php:87 #: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1915 ../../include/diaspora.php:1874 +#: ../../include/text.php:1924 ../../include/diaspora.php:1878 msgid "photo" msgstr "Foto" #: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 -#: ../../include/conversation.php:137 ../../include/diaspora.php:1890 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1894 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" @@ -470,8 +470,8 @@ msgstr "Kontaktbilder" #: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../include/user.php:331 -#: ../../include/user.php:338 ../../include/user.php:345 +#: ../../mod/profile_photo.php:305 ../../include/user.php:334 +#: ../../include/user.php:341 ../../include/user.php:348 msgid "Profile Photos" msgstr "Profilbilder" @@ -504,7 +504,7 @@ msgstr "Freunde einladen" #: ../../view/theme/diabook/theme.php:544 #: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 -#: ../../mod/admin.php:999 ../../mod/admin.php:1207 ../../mod/settings.php:79 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1212 ../../mod/settings.php:79 #: ../../mod/uexport.php:48 ../../include/nav.php:167 msgid "Settings" msgstr "Einstellungen" @@ -582,8 +582,8 @@ msgstr "Schriftgröße in Eingabefeldern" msgid "Set colour scheme" msgstr "Farbschema wählen" -#: ../../view/theme/clean/config.php:54 ../../include/user.php:243 -#: ../../include/text.php:1649 +#: ../../view/theme/clean/config.php:54 ../../include/user.php:246 +#: ../../include/text.php:1658 msgid "default" msgstr "Standard" @@ -643,7 +643,7 @@ msgstr "Updatefehler bei %s" msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108 +#: ../../boot.php:1128 ../../mod/register.php:278 ../../include/nav.php:108 msgid "Register" msgstr "Registrieren" @@ -796,35 +796,35 @@ msgstr "Veranstaltungserinnerungen" msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: ../../boot.php:1956 ../../include/nav.php:76 +#: ../../boot.php:1960 ../../include/nav.php:76 msgid "Status" msgstr "Status" -#: ../../boot.php:1959 +#: ../../boot.php:1963 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../boot.php:1966 +#: ../../boot.php:1970 msgid "Profile Details" msgstr "Profildetails" -#: ../../boot.php:1973 ../../mod/photos.php:51 +#: ../../boot.php:1977 ../../mod/photos.php:51 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../boot.php:1977 ../../boot.php:1980 +#: ../../boot.php:1981 ../../boot.php:1984 msgid "Videos" msgstr "Videos" -#: ../../boot.php:1990 +#: ../../boot.php:1994 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: ../../boot.php:1994 ../../mod/notes.php:44 +#: ../../boot.php:1998 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: ../../boot.php:1997 +#: ../../boot.php:2001 msgid "Only You Can See This" msgstr "Nur du kannst das sehen" @@ -850,9 +850,9 @@ msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." #: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 -#: ../../mod/admin.php:163 ../../mod/admin.php:947 ../../mod/admin.php:1147 +#: ../../mod/admin.php:163 ../../mod/admin.php:952 ../../mod/admin.php:1152 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 -#: ../../include/items.php:3995 +#: ../../include/items.php:4023 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -868,35 +868,35 @@ msgstr "Eintrag wurde entfernt." msgid "Access denied." msgstr "Zugriff verweigert." -#: ../../mod/friendica.php:55 +#: ../../mod/friendica.php:58 msgid "This is Friendica, version" msgstr "Dies ist Friendica, Version" -#: ../../mod/friendica.php:56 +#: ../../mod/friendica.php:59 msgid "running at web location" msgstr "die unter folgender Webadresse zu finden ist" -#: ../../mod/friendica.php:58 +#: ../../mod/friendica.php:61 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." -#: ../../mod/friendica.php:60 +#: ../../mod/friendica.php:63 msgid "Bug reports and issues: please visit" msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/friendica.php:61 +#: ../../mod/friendica.php:64 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" -#: ../../mod/friendica.php:75 +#: ../../mod/friendica.php:78 msgid "Installed plugins/addons/apps:" msgstr "Installierte Plugins/Erweiterungen/Apps" -#: ../../mod/friendica.php:88 +#: ../../mod/friendica.php:91 msgid "No installed plugins/addons/apps" msgstr "Keine Plugins/Erweiterungen/Apps installiert" @@ -905,7 +905,7 @@ msgstr "Keine Plugins/Erweiterungen/Apps installiert" msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" -#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54 +#: ../../mod/register.php:91 ../../mod/admin.php:734 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" @@ -923,102 +923,102 @@ msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht ges msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/register.php:145 +#: ../../mod/register.php:148 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../mod/register.php:154 +#: ../../mod/register.php:157 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/register.php:192 ../../mod/uimport.php:50 +#: ../../mod/register.php:195 ../../mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../mod/register.php:220 +#: ../../mod/register.php:223 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." -#: ../../mod/register.php:221 +#: ../../mod/register.php:224 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." -#: ../../mod/register.php:222 +#: ../../mod/register.php:225 msgid "Your OpenID (optional): " msgstr "Deine OpenID (optional): " -#: ../../mod/register.php:236 +#: ../../mod/register.php:239 msgid "Include your profile in member directory?" msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" -#: ../../mod/register.php:239 ../../mod/api.php:105 ../../mod/suggest.php:29 -#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:246 -#: ../../mod/settings.php:977 ../../mod/settings.php:983 -#: ../../mod/settings.php:991 ../../mod/settings.php:995 -#: ../../mod/settings.php:1000 ../../mod/settings.php:1006 -#: ../../mod/settings.php:1012 ../../mod/settings.php:1018 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1049 -#: ../../mod/settings.php:1050 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1052 ../../mod/profiles.php:610 -#: ../../mod/message.php:209 ../../include/items.php:4036 +#: ../../mod/register.php:242 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:320 +#: ../../mod/settings.php:981 ../../mod/settings.php:987 +#: ../../mod/settings.php:995 ../../mod/settings.php:999 +#: ../../mod/settings.php:1004 ../../mod/settings.php:1010 +#: ../../mod/settings.php:1016 ../../mod/settings.php:1022 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +#: ../../mod/settings.php:1054 ../../mod/settings.php:1055 +#: ../../mod/settings.php:1056 ../../mod/profiles.php:610 +#: ../../mod/message.php:209 ../../include/items.php:4064 msgid "Yes" msgstr "Ja" -#: ../../mod/register.php:240 ../../mod/api.php:106 -#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:977 -#: ../../mod/settings.php:983 ../../mod/settings.php:991 -#: ../../mod/settings.php:995 ../../mod/settings.php:1000 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1012 -#: ../../mod/settings.php:1018 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1049 ../../mod/settings.php:1050 -#: ../../mod/settings.php:1051 ../../mod/settings.php:1052 +#: ../../mod/register.php:243 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:981 +#: ../../mod/settings.php:987 ../../mod/settings.php:995 +#: ../../mod/settings.php:999 ../../mod/settings.php:1004 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1022 ../../mod/settings.php:1052 +#: ../../mod/settings.php:1053 ../../mod/settings.php:1054 +#: ../../mod/settings.php:1055 ../../mod/settings.php:1056 #: ../../mod/profiles.php:611 msgid "No" msgstr "Nein" -#: ../../mod/register.php:257 +#: ../../mod/register.php:260 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/register.php:258 +#: ../../mod/register.php:261 msgid "Your invitation ID: " msgstr "ID deiner Einladung: " -#: ../../mod/register.php:261 ../../mod/admin.php:570 +#: ../../mod/register.php:264 ../../mod/admin.php:572 msgid "Registration" msgstr "Registrierung" -#: ../../mod/register.php:269 +#: ../../mod/register.php:272 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Vollständiger Name (z.B. Max Mustermann): " -#: ../../mod/register.php:270 +#: ../../mod/register.php:273 msgid "Your Email Address: " msgstr "Deine E-Mail-Adresse: " -#: ../../mod/register.php:271 +#: ../../mod/register.php:274 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." -#: ../../mod/register.php:272 +#: ../../mod/register.php:275 msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: ../../mod/register.php:281 ../../mod/uimport.php:64 +#: ../../mod/register.php:284 ../../mod/uimport.php:64 msgid "Import" msgstr "Import" -#: ../../mod/register.php:282 +#: ../../mod/register.php:285 msgid "Import your profile to this friendica instance" msgstr "Importiere dein Profil auf diese Friendica Instanz" @@ -1028,7 +1028,7 @@ msgstr "Importiere dein Profil auf diese Friendica Instanz" msgid "Profile not found." msgstr "Profil nicht gefunden." -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "Kontakt nicht gefunden." @@ -1471,12 +1471,12 @@ msgid "Do you really want to delete this suggestion?" msgstr "Möchtest du wirklich diese Empfehlung löschen?" #: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249 -#: ../../mod/settings.php:598 ../../mod/settings.php:624 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:323 +#: ../../mod/settings.php:602 ../../mod/settings.php:628 #: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 #: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 -#: ../../include/items.php:4039 +#: ../../include/items.php:4067 msgid "Cancel" msgstr "Abbrechen" @@ -1894,19 +1894,19 @@ msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einric msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: ../../mod/admin.php:101 ../../mod/admin.php:568 +#: ../../mod/admin.php:101 ../../mod/admin.php:570 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908 +#: ../../mod/admin.php:102 ../../mod/admin.php:898 ../../mod/admin.php:913 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039 +#: ../../mod/admin.php:103 ../../mod/admin.php:1002 ../../mod/admin.php:1044 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239 +#: ../../mod/admin.php:104 ../../mod/admin.php:1210 ../../mod/admin.php:1244 msgid "Themes" msgstr "Themen" @@ -1914,7 +1914,7 @@ msgstr "Themen" msgid "DB updates" msgstr "DB Updates" -#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326 +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1331 msgid "Logs" msgstr "Protokolle" @@ -1930,19 +1930,19 @@ msgstr "Plugin Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:187 ../../mod/admin.php:848 +#: ../../mod/admin.php:187 ../../mod/admin.php:852 msgid "Normal Account" msgstr "Normales Konto" -#: ../../mod/admin.php:188 ../../mod/admin.php:849 +#: ../../mod/admin.php:188 ../../mod/admin.php:853 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: ../../mod/admin.php:189 ../../mod/admin.php:850 +#: ../../mod/admin.php:189 ../../mod/admin.php:854 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/admin.php:190 ../../mod/admin.php:851 +#: ../../mod/admin.php:190 ../../mod/admin.php:855 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" @@ -1958,9 +1958,9 @@ msgstr "Privates Forum" msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../mod/admin.php:216 ../../mod/admin.php:567 ../../mod/admin.php:892 -#: ../../mod/admin.php:996 ../../mod/admin.php:1038 ../../mod/admin.php:1204 -#: ../../mod/admin.php:1238 ../../mod/admin.php:1325 +#: ../../mod/admin.php:216 ../../mod/admin.php:569 ../../mod/admin.php:897 +#: ../../mod/admin.php:1001 ../../mod/admin.php:1043 ../../mod/admin.php:1209 +#: ../../mod/admin.php:1243 ../../mod/admin.php:1330 msgid "Administration" msgstr "Administration" @@ -1988,320 +1988,320 @@ msgstr "Aktive Plugins" msgid "Can not parse base url. Must have at least ://" msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" -#: ../../mod/admin.php:481 +#: ../../mod/admin.php:483 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: ../../mod/admin.php:510 ../../mod/settings.php:806 +#: ../../mod/admin.php:512 ../../mod/settings.php:810 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: ../../mod/admin.php:527 ../../mod/contacts.php:330 +#: ../../mod/admin.php:529 ../../mod/contacts.php:402 msgid "Never" msgstr "Niemals" -#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56 +#: ../../mod/admin.php:530 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "immer wieder" -#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57 +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Stündlich" -#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58 +#: ../../mod/admin.php:532 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Zweimal täglich" -#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59 +#: ../../mod/admin.php:533 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Täglich" -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:538 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: ../../mod/admin.php:554 +#: ../../mod/admin.php:556 msgid "Closed" msgstr "Geschlossen" -#: ../../mod/admin.php:555 +#: ../../mod/admin.php:557 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:558 msgid "Open" msgstr "Offen" -#: ../../mod/admin.php:560 +#: ../../mod/admin.php:562 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../mod/admin.php:561 +#: ../../mod/admin.php:563 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: ../../mod/admin.php:562 +#: ../../mod/admin.php:564 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" -#: ../../mod/admin.php:569 ../../mod/admin.php:1040 ../../mod/admin.php:1240 -#: ../../mod/admin.php:1327 ../../mod/settings.php:597 -#: ../../mod/settings.php:707 ../../mod/settings.php:776 -#: ../../mod/settings.php:852 ../../mod/settings.php:1080 +#: ../../mod/admin.php:571 ../../mod/admin.php:1045 ../../mod/admin.php:1245 +#: ../../mod/admin.php:1332 ../../mod/settings.php:601 +#: ../../mod/settings.php:711 ../../mod/settings.php:780 +#: ../../mod/settings.php:856 ../../mod/settings.php:1084 msgid "Save Settings" msgstr "Einstellungen speichern" -#: ../../mod/admin.php:571 +#: ../../mod/admin.php:573 msgid "File upload" msgstr "Datei hochladen" -#: ../../mod/admin.php:572 +#: ../../mod/admin.php:574 msgid "Policies" msgstr "Regeln" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:575 msgid "Advanced" msgstr "Erweitert" -#: ../../mod/admin.php:574 +#: ../../mod/admin.php:576 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:577 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: ../../mod/admin.php:579 +#: ../../mod/admin.php:580 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:581 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: ../../mod/admin.php:581 +#: ../../mod/admin.php:582 msgid "" "For public servers: you can add additional information here that will be " "listed at dir.friendica.com/siteinfo." msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden." -#: ../../mod/admin.php:582 +#: ../../mod/admin.php:583 msgid "System language" msgstr "Systemsprache" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "System theme" msgstr "Systemweites Theme" -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:584 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: ../../mod/admin.php:584 +#: ../../mod/admin.php:585 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: ../../mod/admin.php:585 +#: ../../mod/admin.php:586 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Old style 'Share'" msgstr "Altes \"Teilen\" Element" -#: ../../mod/admin.php:586 +#: ../../mod/admin.php:587 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:588 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: ../../mod/admin.php:588 +#: ../../mod/admin.php:589 msgid "Make this instance multi-user or single-user for the named user" msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:590 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:591 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: ../../mod/admin.php:591 +#: ../../mod/admin.php:592 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: ../../mod/admin.php:593 +#: ../../mod/admin.php:594 msgid "Register policy" msgstr "Registrierungsmethode" -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: ../../mod/admin.php:594 +#: ../../mod/admin.php:595 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:596 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:597 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:597 +#: ../../mod/admin.php:598 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:598 +#: ../../mod/admin.php:599 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:600 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:601 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "Global directory update URL" msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:602 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:603 msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:604 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:605 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:606 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: ../../mod/admin.php:606 +#: ../../mod/admin.php:607 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2310,483 +2310,494 @@ msgid "" msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." #: ../../mod/admin.php:608 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" + +#: ../../mod/admin.php:608 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." + +#: ../../mod/admin.php:609 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: ../../mod/admin.php:608 +#: ../../mod/admin.php:609 msgid "Disallow users to register additional accounts for use as pages." msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:610 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../mod/admin.php:610 +#: ../../mod/admin.php:611 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../mod/admin.php:611 +#: ../../mod/admin.php:612 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "Show Community Page" msgstr "Gemeinschaftsseite anzeigen" -#: ../../mod/admin.php:612 +#: ../../mod/admin.php:613 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server." -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:614 msgid "" "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "OStatus conversation completion interval" msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: ../../mod/admin.php:614 +#: ../../mod/admin.php:615 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "Enable Diaspora support" msgstr "Diaspora-Support aktivieren" -#: ../../mod/admin.php:615 +#: ../../mod/admin.php:616 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: ../../mod/admin.php:616 +#: ../../mod/admin.php:617 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: ../../mod/admin.php:617 +#: ../../mod/admin.php:618 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." -#: ../../mod/admin.php:618 +#: ../../mod/admin.php:619 msgid "Proxy user" msgstr "Proxy Nutzer" -#: ../../mod/admin.php:619 +#: ../../mod/admin.php:620 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: ../../mod/admin.php:620 +#: ../../mod/admin.php:621 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 msgid "Delivery interval" msgstr "Zustellungsintervall" -#: ../../mod/admin.php:621 +#: ../../mod/admin.php:622 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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:622 +#: ../../mod/admin.php:623 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: ../../mod/admin.php:623 +#: ../../mod/admin.php:624 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:626 msgid "Use MySQL full text engine" msgstr "Nutze MySQL full text engine" -#: ../../mod/admin.php:625 +#: ../../mod/admin.php:626 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Suppress Language" msgstr "Sprachinformation unterdrücken" -#: ../../mod/admin.php:626 +#: ../../mod/admin.php:627 msgid "Suppress language information in meta information about a posting." msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." -#: ../../mod/admin.php:627 +#: ../../mod/admin.php:628 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: ../../mod/admin.php:628 +#: ../../mod/admin.php:629 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)." -#: ../../mod/admin.php:629 +#: ../../mod/admin.php:630 msgid "Path for lock file" msgstr "Pfad für die Sperrdatei" -#: ../../mod/admin.php:630 +#: ../../mod/admin.php:631 msgid "Temp path" msgstr "Temp Pfad" -#: ../../mod/admin.php:631 +#: ../../mod/admin.php:632 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: ../../mod/admin.php:633 +#: ../../mod/admin.php:634 msgid "New base url" msgstr "Neue Basis-URL" -#: ../../mod/admin.php:651 +#: ../../mod/admin.php:652 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:662 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen." -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:665 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: ../../mod/admin.php:668 +#: ../../mod/admin.php:669 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: ../../mod/admin.php:671 +#: ../../mod/admin.php:672 #, php-format msgid "Update function %s could not be found." msgstr "Updatefunktion %s konnte nicht gefunden werden." -#: ../../mod/admin.php:686 +#: ../../mod/admin.php:687 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:691 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:692 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:693 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:694 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: ../../mod/admin.php:739 +#: ../../mod/admin.php:740 msgid "Registration successful. Email send to user" msgstr "Registration erfolgreich. Dem Nutzer wurde eine Email gesended." -#: ../../mod/admin.php:749 +#: ../../mod/admin.php:750 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s Benutzer geblockt/freigegeben" msgstr[1] "%s Benutzer geblockt/freigegeben" -#: ../../mod/admin.php:756 +#: ../../mod/admin.php:757 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s Nutzer gelöscht" msgstr[1] "%s Nutzer gelöscht" -#: ../../mod/admin.php:795 +#: ../../mod/admin.php:796 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:804 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: ../../mod/admin.php:803 +#: ../../mod/admin.php:804 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:894 +#: ../../mod/admin.php:899 msgid "Add User" msgstr "Nutzer hinzufügen" -#: ../../mod/admin.php:895 +#: ../../mod/admin.php:900 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:896 +#: ../../mod/admin.php:901 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../mod/admin.php:897 +#: ../../mod/admin.php:902 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: ../../mod/admin.php:898 +#: ../../mod/admin.php:903 msgid "Request date" msgstr "Anfragedatum" -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:924 ../../mod/crepair.php:148 -#: ../../mod/settings.php:599 ../../mod/settings.php:625 +#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:929 ../../mod/crepair.php:150 +#: ../../mod/settings.php:603 ../../mod/settings.php:629 msgid "Name" msgstr "Name" -#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 -#: ../../mod/admin.php:926 ../../include/contact_selectors.php:79 +#: ../../mod/admin.php:903 ../../mod/admin.php:915 ../../mod/admin.php:916 +#: ../../mod/admin.php:931 ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 msgid "Email" msgstr "E-Mail" -#: ../../mod/admin.php:899 +#: ../../mod/admin.php:904 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:900 ../../mod/notifications.php:161 +#: ../../mod/admin.php:905 ../../mod/notifications.php:161 #: ../../mod/notifications.php:208 msgid "Approve" msgstr "Genehmigen" -#: ../../mod/admin.php:901 +#: ../../mod/admin.php:906 msgid "Deny" msgstr "Verwehren" -#: ../../mod/admin.php:903 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 +#: ../../mod/admin.php:908 ../../mod/contacts.php:425 +#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 msgid "Block" msgstr "Sperren" -#: ../../mod/admin.php:904 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 +#: ../../mod/admin.php:909 ../../mod/contacts.php:425 +#: ../../mod/contacts.php:484 ../../mod/contacts.php:692 msgid "Unblock" msgstr "Entsperren" -#: ../../mod/admin.php:905 +#: ../../mod/admin.php:910 msgid "Site admin" msgstr "Seitenadministrator" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:911 msgid "Account expired" msgstr "Account ist abgelaufen" -#: ../../mod/admin.php:909 +#: ../../mod/admin.php:914 msgid "New User" msgstr "Neuer Nutzer" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:915 ../../mod/admin.php:916 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:915 msgid "Deleted since" msgstr "Gelöscht seit" -#: ../../mod/admin.php:911 +#: ../../mod/admin.php:916 msgid "Account" msgstr "Nutzerkonto" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:918 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:919 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" -#: ../../mod/admin.php:924 +#: ../../mod/admin.php:929 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: ../../mod/admin.php:925 +#: ../../mod/admin.php:930 msgid "Nickname" msgstr "Spitzname" -#: ../../mod/admin.php:925 +#: ../../mod/admin.php:930 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: ../../mod/admin.php:926 +#: ../../mod/admin.php:931 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: ../../mod/admin.php:959 +#: ../../mod/admin.php:964 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:963 +#: ../../mod/admin.php:968 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:973 ../../mod/admin.php:1176 +#: ../../mod/admin.php:978 ../../mod/admin.php:1181 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:975 ../../mod/admin.php:1178 +#: ../../mod/admin.php:980 ../../mod/admin.php:1183 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:998 ../../mod/admin.php:1206 +#: ../../mod/admin.php:1003 ../../mod/admin.php:1211 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:1006 ../../mod/admin.php:1216 +#: ../../mod/admin.php:1011 ../../mod/admin.php:1221 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:1007 ../../mod/admin.php:1217 +#: ../../mod/admin.php:1012 ../../mod/admin.php:1222 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:1136 +#: ../../mod/admin.php:1141 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:1198 +#: ../../mod/admin.php:1203 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1244 +#: ../../mod/admin.php:1249 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1245 +#: ../../mod/admin.php:1250 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1272 +#: ../../mod/admin.php:1277 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1328 +#: ../../mod/admin.php:1333 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:1334 +#: ../../mod/admin.php:1339 msgid "Enable Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:1335 +#: ../../mod/admin.php:1340 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1335 +#: ../../mod/admin.php:1340 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." -#: ../../mod/admin.php:1336 +#: ../../mod/admin.php:1341 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:1385 ../../mod/contacts.php:409 +#: ../../mod/admin.php:1390 ../../mod/contacts.php:481 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/admin.php:1386 +#: ../../mod/admin.php:1391 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:1392 +#: ../../mod/admin.php:1397 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:1393 +#: ../../mod/admin.php:1398 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:1394 +#: ../../mod/admin.php:1399 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:1395 +#: ../../mod/admin.php:1400 msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927 -#: ../../include/text.php:928 ../../include/nav.php:118 +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:934 +#: ../../include/text.php:935 ../../include/nav.php:118 msgid "Search" msgstr "Suche" @@ -2914,7 +2925,7 @@ msgstr "Bitte melde dich an." msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: ../../mod/directory.php:59 ../../mod/contacts.php:612 +#: ../../mod/directory.php:59 ../../mod/contacts.php:685 msgid "Finding: " msgstr "Funde: " @@ -2922,7 +2933,7 @@ msgstr "Funde: " msgid "Site Directory" msgstr "Verzeichnis" -#: ../../mod/directory.php:61 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 ../../mod/contacts.php:686 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Finde" @@ -2943,66 +2954,80 @@ msgstr "Über:" msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: ../../mod/crepair.php:102 +#: ../../mod/crepair.php:104 msgid "Contact settings applied." msgstr "Einstellungen zum Kontakt angewandt." -#: ../../mod/crepair.php:104 +#: ../../mod/crepair.php:106 msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../mod/crepair.php:135 +#: ../../mod/crepair.php:137 msgid "Repair Contact Settings" msgstr "Kontakteinstellungen reparieren" -#: ../../mod/crepair.php:137 +#: ../../mod/crepair.php:139 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: ../../mod/crepair.php:138 +#: ../../mod/crepair.php:140 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." -#: ../../mod/crepair.php:144 +#: ../../mod/crepair.php:146 msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: ../../mod/crepair.php:149 +#: ../../mod/crepair.php:151 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: ../../mod/crepair.php:150 +#: ../../mod/crepair.php:152 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: ../../mod/crepair.php:151 +#: ../../mod/crepair.php:153 msgid "Account URL" msgstr "Konto-URL" -#: ../../mod/crepair.php:152 +#: ../../mod/crepair.php:154 msgid "Friend Request URL" msgstr "URL für Freundschaftsanfragen" -#: ../../mod/crepair.php:153 +#: ../../mod/crepair.php:155 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Freundschaftsanfragen" -#: ../../mod/crepair.php:154 +#: ../../mod/crepair.php:156 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: ../../mod/crepair.php:155 +#: ../../mod/crepair.php:157 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: ../../mod/crepair.php:156 +#: ../../mod/crepair.php:158 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden." + #: ../../mod/uimport.php:66 msgid "Move account" msgstr "Account umziehen" @@ -3042,7 +3067,7 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930 +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:937 msgid "Save" msgstr "Speichern" @@ -3139,7 +3164,7 @@ msgstr "Ungültige Profil-URL." msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:174 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." @@ -3175,7 +3200,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s." msgid "Confirm" msgstr "Bestätigen" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3532 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -3227,7 +3252,7 @@ msgstr "Friendica" msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718 +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:722 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" @@ -3257,294 +3282,307 @@ msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +#: ../../mod/contacts.php:104 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet" + +#: ../../mod/contacts.php:135 ../../mod/contacts.php:258 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: ../../mod/contacts.php:99 +#: ../../mod/contacts.php:149 msgid "Could not locate selected profile." msgstr "Konnte das ausgewählte Profil nicht finden." -#: ../../mod/contacts.php:122 +#: ../../mod/contacts.php:172 msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:272 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: ../../mod/contacts.php:187 +#: ../../mod/contacts.php:272 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:282 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: ../../mod/contacts.php:201 +#: ../../mod/contacts.php:282 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:293 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: ../../mod/contacts.php:220 +#: ../../mod/contacts.php:293 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: ../../mod/contacts.php:244 +#: ../../mod/contacts.php:318 ../../mod/contacts.php:689 msgid "Do you really want to delete this contact?" msgstr "Möchtest du wirklich diesen Kontakt löschen?" -#: ../../mod/contacts.php:263 +#: ../../mod/contacts.php:335 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: ../../mod/contacts.php:301 +#: ../../mod/contacts.php:373 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: ../../mod/contacts.php:305 +#: ../../mod/contacts.php:377 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: ../../mod/contacts.php:310 +#: ../../mod/contacts.php:382 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: ../../mod/contacts.php:327 +#: ../../mod/contacts.php:399 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:406 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:406 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: ../../mod/contacts.php:336 +#: ../../mod/contacts.php:408 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: ../../mod/contacts.php:340 +#: ../../mod/contacts.php:412 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199 +#: ../../mod/contacts.php:415 ../../include/contact_widgets.php:199 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: ../../mod/contacts.php:348 +#: ../../mod/contacts.php:420 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:428 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 +#: ../../mod/contacts.php:693 msgid "Unignore" msgstr "Ignorieren aufheben" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 +#: ../../mod/contacts.php:431 ../../mod/contacts.php:485 +#: ../../mod/contacts.php:693 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 msgid "Ignore" msgstr "Ignorieren" -#: ../../mod/contacts.php:362 +#: ../../mod/contacts.php:434 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/contacts.php:366 +#: ../../mod/contacts.php:438 ../../mod/contacts.php:694 msgid "Archive" msgstr "Archivieren" -#: ../../mod/contacts.php:369 +#: ../../mod/contacts.php:441 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: ../../mod/contacts.php:372 +#: ../../mod/contacts.php:444 msgid "Repair" msgstr "Reparieren" -#: ../../mod/contacts.php:375 +#: ../../mod/contacts.php:447 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: ../../mod/contacts.php:381 +#: ../../mod/contacts.php:453 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: ../../mod/contacts.php:384 +#: ../../mod/contacts.php:456 msgid "Contact Editor" msgstr "Kontakt Editor" -#: ../../mod/contacts.php:387 +#: ../../mod/contacts.php:459 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: ../../mod/contacts.php:388 +#: ../../mod/contacts.php:460 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft." -#: ../../mod/contacts.php:389 +#: ../../mod/contacts.php:461 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: ../../mod/contacts.php:390 +#: ../../mod/contacts.php:462 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 +#: ../../mod/contacts.php:467 ../../mod/contacts.php:657 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: ../../mod/contacts.php:396 +#: ../../mod/contacts.php:468 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: ../../mod/contacts.php:397 +#: ../../mod/contacts.php:469 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: ../../mod/contacts.php:398 +#: ../../mod/contacts.php:470 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:471 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: ../../mod/contacts.php:401 +#: ../../mod/contacts.php:473 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: ../../mod/contacts.php:405 +#: ../../mod/contacts.php:477 msgid "Last update:" msgstr "letzte Aktualisierung:" -#: ../../mod/contacts.php:407 +#: ../../mod/contacts.php:479 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/contacts.php:416 +#: ../../mod/contacts.php:488 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: ../../mod/contacts.php:417 +#: ../../mod/contacts.php:489 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: ../../mod/contacts.php:418 +#: ../../mod/contacts.php:490 msgid "Currently archived" msgstr "Momentan archiviert" -#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/contacts.php:491 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 msgid "Hide this contact from others" msgstr "Verberge diesen Kontakt vor anderen" -#: ../../mod/contacts.php:419 +#: ../../mod/contacts.php:491 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: ../../mod/contacts.php:470 +#: ../../mod/contacts.php:542 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:545 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: ../../mod/contacts.php:476 ../../mod/group.php:194 +#: ../../mod/contacts.php:548 ../../mod/group.php:194 msgid "All Contacts" msgstr "Alle Kontakte" -#: ../../mod/contacts.php:479 +#: ../../mod/contacts.php:551 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: ../../mod/contacts.php:482 +#: ../../mod/contacts.php:554 msgid "Unblocked" msgstr "Ungeblockt" -#: ../../mod/contacts.php:485 +#: ../../mod/contacts.php:557 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: ../../mod/contacts.php:489 +#: ../../mod/contacts.php:561 msgid "Blocked" msgstr "Geblockt" -#: ../../mod/contacts.php:492 +#: ../../mod/contacts.php:564 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: ../../mod/contacts.php:496 +#: ../../mod/contacts.php:568 msgid "Ignored" msgstr "Ignoriert" -#: ../../mod/contacts.php:499 +#: ../../mod/contacts.php:571 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: ../../mod/contacts.php:503 +#: ../../mod/contacts.php:575 msgid "Archived" msgstr "Archiviert" -#: ../../mod/contacts.php:506 +#: ../../mod/contacts.php:578 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: ../../mod/contacts.php:510 +#: ../../mod/contacts.php:582 msgid "Hidden" msgstr "Verborgen" -#: ../../mod/contacts.php:513 +#: ../../mod/contacts.php:585 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: ../../mod/contacts.php:561 +#: ../../mod/contacts.php:633 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: ../../mod/contacts.php:565 +#: ../../mod/contacts.php:637 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: ../../mod/contacts.php:569 +#: ../../mod/contacts.php:641 msgid "you are a fan of" msgstr "du bist Fan von" -#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:658 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Kontakt bearbeiten" -#: ../../mod/contacts.php:611 +#: ../../mod/contacts.php:684 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" +#: ../../mod/contacts.php:691 ../../mod/settings.php:126 +#: ../../mod/settings.php:627 +msgid "Update" +msgstr "Aktualisierungen" + #: ../../mod/settings.php:28 ../../mod/photos.php:79 msgid "everybody" msgstr "jeder" @@ -3585,10 +3623,6 @@ msgstr "Konto löschen" msgid "Missing some important data!" msgstr "Wichtige Daten fehlen!" -#: ../../mod/settings.php:126 ../../mod/settings.php:623 -msgid "Update" -msgstr "Aktualisierungen" - #: ../../mod/settings.php:232 msgid "Failed to connect with email account using the settings provided." msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." @@ -3641,516 +3675,516 @@ msgstr "Falsches Passwort" msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: ../../mod/settings.php:435 +#: ../../mod/settings.php:438 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: ../../mod/settings.php:489 +#: ../../mod/settings.php:493 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: ../../mod/settings.php:493 +#: ../../mod/settings.php:497 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." -#: ../../mod/settings.php:523 +#: ../../mod/settings.php:527 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:596 ../../mod/settings.php:622 -#: ../../mod/settings.php:658 +#: ../../mod/settings.php:600 ../../mod/settings.php:626 +#: ../../mod/settings.php:662 msgid "Add application" msgstr "Programm hinzufügen" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 +#: ../../mod/settings.php:604 ../../mod/settings.php:630 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:601 ../../mod/settings.php:627 +#: ../../mod/settings.php:605 ../../mod/settings.php:631 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:602 ../../mod/settings.php:628 +#: ../../mod/settings.php:606 ../../mod/settings.php:632 msgid "Redirect" msgstr "Umleiten" -#: ../../mod/settings.php:603 ../../mod/settings.php:629 +#: ../../mod/settings.php:607 ../../mod/settings.php:633 msgid "Icon url" msgstr "Icon URL" -#: ../../mod/settings.php:614 +#: ../../mod/settings.php:618 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/settings.php:657 +#: ../../mod/settings.php:661 msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:661 +#: ../../mod/settings.php:665 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:666 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:663 +#: ../../mod/settings.php:667 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:679 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/settings.php:683 +#: ../../mod/settings.php:687 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:701 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:701 msgid "On" msgstr "An" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:709 msgid "Additional Features" msgstr "Zusätzliche Features" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 msgid "enabled" msgstr "eingeschaltet" -#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#: ../../mod/settings.php:722 ../../mod/settings.php:723 msgid "disabled" msgstr "ausgeschaltet" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:723 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:751 +#: ../../mod/settings.php:755 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:762 msgid "Connector Settings" msgstr "Verbindungs-Einstellungen" -#: ../../mod/settings.php:763 +#: ../../mod/settings.php:767 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: ../../mod/settings.php:764 +#: ../../mod/settings.php:768 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: ../../mod/settings.php:765 +#: ../../mod/settings.php:769 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: ../../mod/settings.php:767 +#: ../../mod/settings.php:771 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:772 msgid "IMAP port:" msgstr "IMAP-Port:" -#: ../../mod/settings.php:769 +#: ../../mod/settings.php:773 msgid "Security:" msgstr "Sicherheit:" -#: ../../mod/settings.php:769 ../../mod/settings.php:774 +#: ../../mod/settings.php:773 ../../mod/settings.php:778 msgid "None" msgstr "Keine" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:774 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: ../../mod/settings.php:771 +#: ../../mod/settings.php:775 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: ../../mod/settings.php:772 +#: ../../mod/settings.php:776 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:777 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Action after import:" msgstr "Aktion nach Import:" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:778 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: ../../mod/settings.php:775 +#: ../../mod/settings.php:779 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:854 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:856 ../../mod/settings.php:869 +#: ../../mod/settings.php:860 ../../mod/settings.php:873 msgid "Display Theme:" msgstr "Theme:" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:861 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:862 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:862 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:863 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: ../../mod/settings.php:859 ../../mod/settings.php:860 +#: ../../mod/settings.php:863 ../../mod/settings.php:864 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: ../../mod/settings.php:860 +#: ../../mod/settings.php:864 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:865 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: ../../mod/settings.php:862 +#: ../../mod/settings.php:866 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: ../../mod/settings.php:938 +#: ../../mod/settings.php:942 msgid "Normal Account Page" msgstr "Normales Konto" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:943 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:946 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:947 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: ../../mod/settings.php:946 +#: ../../mod/settings.php:950 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:951 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:954 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:955 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: ../../mod/settings.php:954 +#: ../../mod/settings.php:958 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:959 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:971 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:971 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:981 msgid "Publish your default profile in your local site directory?" msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: ../../mod/settings.php:983 +#: ../../mod/settings.php:987 msgid "Publish your default profile in the global social directory?" msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:995 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:999 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: ../../mod/settings.php:1000 +#: ../../mod/settings.php:1004 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: ../../mod/settings.php:1006 +#: ../../mod/settings.php:1010 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1016 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/settings.php:1018 +#: ../../mod/settings.php:1022 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" -#: ../../mod/settings.php:1026 +#: ../../mod/settings.php:1030 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248 +#: ../../mod/settings.php:1033 ../../mod/profile_photo.php:248 msgid "or" msgstr "oder" -#: ../../mod/settings.php:1034 +#: ../../mod/settings.php:1038 msgid "Your Identity Address is" msgstr "Die Adresse deines Profils lautet:" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1049 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: ../../mod/settings.php:1045 +#: ../../mod/settings.php:1049 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1050 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1051 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1052 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: ../../mod/settings.php:1049 +#: ../../mod/settings.php:1053 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1054 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1055 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1056 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1082 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1090 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1091 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1092 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1092 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1093 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1094 msgid "Password:" msgstr "Passwort:" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1098 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:1099 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Kompletter Name:" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1100 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1101 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: ../../mod/settings.php:1098 +#: ../../mod/settings.php:1102 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1103 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1106 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1108 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1134 +#: ../../mod/settings.php:1108 ../../mod/settings.php:1138 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1109 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1110 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1115 ../../mod/photos.php:1140 +#: ../../mod/settings.php:1119 ../../mod/photos.php:1140 #: ../../mod/photos.php:1506 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: ../../mod/settings.php:1116 ../../mod/photos.php:1141 +#: ../../mod/settings.php:1120 ../../mod/photos.php:1141 #: ../../mod/photos.php:1507 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1121 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1122 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1126 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1138 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: ../../mod/settings.php:1137 +#: ../../mod/settings.php:1141 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: ../../mod/settings.php:1138 +#: ../../mod/settings.php:1142 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: ../../mod/settings.php:1139 +#: ../../mod/settings.php:1143 msgid "accepting a friend request" msgstr "– du eine Kontaktanfrage akzeptierst" -#: ../../mod/settings.php:1140 +#: ../../mod/settings.php:1144 msgid "joining a forum/community" msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst" -#: ../../mod/settings.php:1141 +#: ../../mod/settings.php:1145 msgid "making an interesting profile change" msgstr "– du eine interessante Änderung an deinem Profil durchführst" -#: ../../mod/settings.php:1142 +#: ../../mod/settings.php:1146 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: ../../mod/settings.php:1143 +#: ../../mod/settings.php:1147 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: ../../mod/settings.php:1144 +#: ../../mod/settings.php:1148 msgid "Your introductions are confirmed" msgstr "– eine deiner Kontaktanfragen akzeptiert wurde" -#: ../../mod/settings.php:1145 +#: ../../mod/settings.php:1149 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf deine Pinnwand schreibt" -#: ../../mod/settings.php:1146 +#: ../../mod/settings.php:1150 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1151 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1152 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: ../../mod/settings.php:1149 +#: ../../mod/settings.php:1153 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: ../../mod/settings.php:1150 +#: ../../mod/settings.php:1154 msgid "You are poked/prodded/etc. in a post" msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" -#: ../../mod/settings.php:1153 +#: ../../mod/settings.php:1157 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: ../../mod/settings.php:1154 +#: ../../mod/settings.php:1158 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: ../../mod/settings.php:1157 +#: ../../mod/settings.php:1161 msgid "Relocate" msgstr "Umziehen" -#: ../../mod/settings.php:1158 +#: ../../mod/settings.php:1162 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: ../../mod/settings.php:1159 +#: ../../mod/settings.php:1163 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -4697,7 +4731,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" msgid "No contacts." msgstr "Keine Kontakte." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:850 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:857 msgid "View Contacts" msgstr "Kontakte anzeigen" @@ -4911,7 +4945,7 @@ msgstr "Hochladen der Datei fehlgeschlagen." msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: ../../mod/videos.php:301 ../../include/text.php:1376 +#: ../../mod/videos.php:301 ../../include/text.php:1383 msgid "View Video" msgstr "Video ansehen" @@ -4983,7 +5017,7 @@ msgid "Image exceeds size limit of %d" msgstr "Bildgröße überschreitet das Limit von %d" #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:446 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:453 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -5100,7 +5134,7 @@ msgstr "l, F j" msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:335 ../../include/text.php:1606 +#: ../../mod/events.php:335 ../../include/text.php:1615 msgid "link to source" msgstr "Link zum Originalbeitrag" @@ -5235,33 +5269,33 @@ msgstr "Schlage %s einen Kontakt vor" msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: ../../mod/item.php:310 +#: ../../mod/item.php:317 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: ../../mod/item.php:872 +#: ../../mod/item.php:884 msgid "System error. Post not saved." msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: ../../mod/item.php:897 +#: ../../mod/item.php:909 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: ../../mod/item.php:899 +#: ../../mod/item.php:911 #, php-format msgid "You may visit them online at %s" msgstr "Du kannst sie online unter %s besuchen" -#: ../../mod/item.php:900 +#: ../../mod/item.php:912 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." -#: ../../mod/item.php:904 +#: ../../mod/item.php:916 #, php-format msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." @@ -5663,6 +5697,15 @@ msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." +#: ../../include/api.php:255 ../../include/api.php:266 +#: ../../include/api.php:356 +msgid "User not found." +msgstr "Nutzer nicht gefunden." + +#: ../../include/api.php:1024 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." + #: ../../include/network.php:883 msgid "view full size" msgstr "Volle Größe anzeigen" @@ -5730,39 +5773,39 @@ msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." msgid "Not a valid email address." msgstr "Keine gültige E-Mail-Adresse." -#: ../../include/user.php:122 +#: ../../include/user.php:125 msgid "Cannot use that email." msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: ../../include/user.php:128 +#: ../../include/user.php:131 msgid "" "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "must also begin with a letter." msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." -#: ../../include/user.php:134 ../../include/user.php:232 +#: ../../include/user.php:137 ../../include/user.php:235 msgid "Nickname is already registered. Please choose another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: ../../include/user.php:144 +#: ../../include/user.php:147 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: ../../include/user.php:160 +#: ../../include/user.php:163 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: ../../include/user.php:218 +#: ../../include/user.php:221 msgid "An error occurred during registration. Please try again." msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: ../../include/user.php:253 +#: ../../include/user.php:256 msgid "An error occurred creating your default profile. Please try again." msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: ../../include/user.php:285 ../../include/user.php:289 +#: ../../include/user.php:288 ../../include/user.php:292 #: ../../include/profile_selectors.php:42 msgid "Friends" msgstr "Freunde" @@ -5772,7 +5815,7 @@ msgstr "Freunde" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: ../../include/conversation.php:211 ../../include/text.php:979 +#: ../../include/conversation.php:211 ../../include/text.php:986 msgid "poked" msgstr "stupste" @@ -5797,34 +5840,34 @@ msgstr "Lösche die markierten Beiträge" msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: ../../include/conversation.php:871 ../../include/Contact.php:228 +#: ../../include/conversation.php:871 ../../include/Contact.php:229 msgid "View Status" msgstr "Pinnwand anschauen" -#: ../../include/conversation.php:872 ../../include/Contact.php:229 +#: ../../include/conversation.php:872 ../../include/Contact.php:230 msgid "View Profile" msgstr "Profil anschauen" -#: ../../include/conversation.php:873 ../../include/Contact.php:230 +#: ../../include/conversation.php:873 ../../include/Contact.php:231 msgid "View Photos" msgstr "Bilder anschauen" -#: ../../include/conversation.php:874 ../../include/Contact.php:231 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:874 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: ../../include/conversation.php:875 ../../include/Contact.php:232 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:875 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 msgid "Edit Contact" msgstr "Kontakt bearbeiten" -#: ../../include/conversation.php:876 ../../include/Contact.php:234 -#: ../../include/Contact.php:254 +#: ../../include/conversation.php:876 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 msgid "Send PM" msgstr "Private Nachricht senden" -#: ../../include/conversation.php:877 ../../include/Contact.php:227 +#: ../../include/conversation.php:877 ../../include/Contact.php:228 msgid "Poke" msgstr "Anstupsen" @@ -5951,262 +5994,262 @@ msgstr[1] "%d Kontakte nicht importiert" msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: ../../include/text.php:293 +#: ../../include/text.php:300 msgid "newer" msgstr "neuer" -#: ../../include/text.php:295 +#: ../../include/text.php:302 msgid "older" msgstr "älter" -#: ../../include/text.php:300 +#: ../../include/text.php:307 msgid "prev" msgstr "vorige" -#: ../../include/text.php:302 +#: ../../include/text.php:309 msgid "first" msgstr "erste" -#: ../../include/text.php:334 +#: ../../include/text.php:341 msgid "last" msgstr "letzte" -#: ../../include/text.php:337 +#: ../../include/text.php:344 msgid "next" msgstr "nächste" -#: ../../include/text.php:829 +#: ../../include/text.php:836 msgid "No contacts" msgstr "Keine Kontakte" -#: ../../include/text.php:838 +#: ../../include/text.php:845 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: ../../include/text.php:979 +#: ../../include/text.php:986 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:980 +#: ../../include/text.php:987 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:980 +#: ../../include/text.php:987 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:981 +#: ../../include/text.php:988 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:981 +#: ../../include/text.php:988 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:982 +#: ../../include/text.php:989 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:982 +#: ../../include/text.php:989 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:983 +#: ../../include/text.php:990 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:983 +#: ../../include/text.php:990 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:984 +#: ../../include/text.php:991 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:984 +#: ../../include/text.php:991 msgid "rebuffed" msgstr "abfuhrerteilte" -#: ../../include/text.php:998 +#: ../../include/text.php:1005 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:999 +#: ../../include/text.php:1006 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1000 +#: ../../include/text.php:1007 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1001 +#: ../../include/text.php:1008 msgid "tired" msgstr "müde" -#: ../../include/text.php:1002 +#: ../../include/text.php:1009 msgid "perky" msgstr "frech" -#: ../../include/text.php:1003 +#: ../../include/text.php:1010 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1004 +#: ../../include/text.php:1011 msgid "stupified" msgstr "verblüfft" -#: ../../include/text.php:1005 +#: ../../include/text.php:1012 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1006 +#: ../../include/text.php:1013 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1007 +#: ../../include/text.php:1014 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1008 +#: ../../include/text.php:1015 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1009 +#: ../../include/text.php:1016 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1010 +#: ../../include/text.php:1017 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1011 +#: ../../include/text.php:1018 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1012 +#: ../../include/text.php:1019 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1013 +#: ../../include/text.php:1020 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1014 +#: ../../include/text.php:1021 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1015 +#: ../../include/text.php:1022 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1016 +#: ../../include/text.php:1023 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1017 +#: ../../include/text.php:1024 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1185 +#: ../../include/text.php:1192 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "January" msgstr "Januar" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "February" msgstr "Februar" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "March" msgstr "März" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "April" msgstr "April" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "May" msgstr "Mai" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "June" msgstr "Juni" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "July" msgstr "Juli" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "August" msgstr "August" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "September" msgstr "September" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "November" msgstr "November" -#: ../../include/text.php:1189 +#: ../../include/text.php:1196 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1408 +#: ../../include/text.php:1415 msgid "bytes" msgstr "Byte" -#: ../../include/text.php:1432 ../../include/text.php:1444 +#: ../../include/text.php:1439 ../../include/text.php:1451 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1661 +#: ../../include/text.php:1670 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: ../../include/text.php:1917 +#: ../../include/text.php:1926 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1920 +#: ../../include/text.php:1929 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:2075 +#: ../../include/text.php:2084 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -6667,23 +6710,23 @@ msgstr "Arbeit/Beschäftigung:" msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/bbcode.php:215 ../../include/bbcode.php:614 -#: ../../include/bbcode.php:615 +#: ../../include/bbcode.php:215 ../../include/bbcode.php:620 +#: ../../include/bbcode.php:621 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:279 +#: ../../include/bbcode.php:285 #, php-format msgid "" "%s wrote the following post" msgstr "%s schrieb den folgenden Beitrag" -#: ../../include/bbcode.php:578 ../../include/bbcode.php:598 +#: ../../include/bbcode.php:584 ../../include/bbcode.php:604 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: ../../include/bbcode.php:625 ../../include/bbcode.php:626 +#: ../../include/bbcode.php:631 ../../include/bbcode.php:632 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" @@ -6990,7 +7033,7 @@ msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../include/diaspora.php:2264 +#: ../../include/diaspora.php:2269 msgid "Attachments:" msgstr "Anhänge:" @@ -6998,27 +7041,27 @@ msgstr "Anhänge:" msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../include/items.php:3511 +#: ../../include/items.php:3539 msgid "A new person is sharing with you at " msgstr "Eine neue Person teilt mit dir auf " -#: ../../include/items.php:3511 +#: ../../include/items.php:3539 msgid "You have a new follower at " msgstr "Du hast einen neuen Kontakt auf " -#: ../../include/items.php:4034 +#: ../../include/items.php:4062 msgid "Do you really want to delete this item?" msgstr "Möchtest du wirklich dieses Item löschen?" -#: ../../include/items.php:4257 +#: ../../include/items.php:4285 msgid "Archives" msgstr "Archiv" -#: ../../include/oembed.php:138 +#: ../../include/oembed.php:140 msgid "Embedded content" msgstr "Eingebetteter Inhalt" -#: ../../include/oembed.php:147 +#: ../../include/oembed.php:149 msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" @@ -7272,7 +7315,7 @@ msgstr "Frag mich" msgid "stopped following" msgstr "wird nicht mehr gefolgt" -#: ../../include/Contact.php:233 +#: ../../include/Contact.php:234 msgid "Drop Contact" msgstr "Kontakt löschen" diff --git a/view/de/strings.php b/view/de/strings.php index 2fc9ca32b7..285ff015fe 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -485,6 +485,8 @@ $a->strings["Disallow public access to addons listed in the apps menu."] = "Öff $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."; $a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten."; $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."; +$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."; $a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."; $a->strings["OpenID support"] = "OpenID Unterstützung"; @@ -649,6 +651,9 @@ $a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsan $a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; $a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; $a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."; $a->strings["Move account"] = "Account umziehen"; $a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."; @@ -708,6 +713,10 @@ $a->strings["Your Identity Address:"] = "Adresse deines Profils:"; $a->strings["Submit Request"] = "Anfrage abschicken"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; $a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", +); $a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; $a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; $a->strings["Contact updated."] = "Kontakt aktualisiert."; @@ -779,6 +788,7 @@ $a->strings["is a fan of yours"] = "ist ein Fan von dir"; $a->strings["you are a fan of"] = "du bist Fan von"; $a->strings["Edit contact"] = "Kontakt bearbeiten"; $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Update"] = "Aktualisierungen"; $a->strings["everybody"] = "jeder"; $a->strings["Account settings"] = "Kontoeinstellungen"; $a->strings["Additional features"] = "Zusätzliche Features"; @@ -789,7 +799,6 @@ $a->strings["Connected apps"] = "Verbundene Programme"; $a->strings["Export personal data"] = "Persönliche Daten exportieren"; $a->strings["Remove account"] = "Konto löschen"; $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; -$a->strings["Update"] = "Aktualisierungen"; $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; $a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; $a->strings["Features updated"] = "Features aktualisiert"; @@ -1289,6 +1298,8 @@ $a->strings["Categories"] = "Kategorien"; $a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements."; $a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar."; +$a->strings["User not found."] = "Nutzer nicht gefunden."; +$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; $a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["Starts:"] = "Beginnt:"; $a->strings["Finishes:"] = "Endet:"; diff --git a/view/pl/messages.po b/view/pl/messages.po index ebe9a336ac..5b60a7cd8c 100644 --- a/view/pl/messages.po +++ b/view/pl/messages.po @@ -19,22 +19,25 @@ # karolina.walkowiak , 2013 # szymon.filip , 2013 # szymon.filip , 2012 +# maianhania , 2013 # Piszu , 2013 # Lea1995polish , 2012 +# MagdaPortu , 2013 # mhnxo , 2012 # Molka , 2012 # marcin.klessa , 2012 # Pitruss , 2012-2013 # Oninix , 2013 # emilia.krawczyk , 2012 +# sam01, 2013 # rcmaniac , 2012-2013 msgid "" msgstr "" "Project-Id-Version: friendica\n" -"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2013-06-26 00:01-0700\n" -"PO-Revision-Date: 2013-07-20 22:43+0000\n" -"Last-Translator: Oninix \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-11-17 15:44+0100\n" +"PO-Revision-Date: 2013-12-16 09:16+0000\n" +"Last-Translator: MagdaPortu \n" "Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,2639 +45,829 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 -#: ../../boot.php:1951 -msgid "Profile" -msgstr "Profil" +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "Ten wpis został zedytowany" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079 -msgid "Full Name:" -msgstr "Imię i nazwisko:" +#: ../../object/Item.php:113 ../../mod/content.php:619 +#: ../../mod/photos.php:1351 +msgid "Private Message" +msgstr "Wiadomość prywatna" -#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 -#: ../../boot.php:1491 -msgid "Gender:" -msgstr "Płeć:" +#: ../../object/Item.php:117 ../../mod/editpost.php:109 +#: ../../mod/content.php:727 ../../mod/settings.php:659 +msgid "Edit" +msgstr "Edytuj" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "d M, R" +#: ../../object/Item.php:126 ../../mod/content.php:437 +#: ../../mod/content.php:739 ../../include/conversation.php:611 +msgid "Select" +msgstr "Wybierz" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "d M" +#: ../../object/Item.php:127 ../../mod/admin.php:902 ../../mod/content.php:438 +#: ../../mod/content.php:740 ../../mod/settings.php:660 +#: ../../mod/group.php:171 ../../mod/photos.php:1637 +#: ../../include/conversation.php:612 +msgid "Delete" +msgstr "Usuń" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Urodziny:" +#: ../../object/Item.php:130 ../../mod/content.php:762 +msgid "save to folder" +msgstr "zapisz w folderze" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Wiek:" +#: ../../object/Item.php:192 ../../mod/content.php:752 +msgid "add star" +msgstr "dodaj gwiazdkę" -#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 -#: ../../boot.php:1494 -msgid "Status:" -msgstr "Status" +#: ../../object/Item.php:193 ../../mod/content.php:753 +msgid "remove star" +msgstr "anuluj gwiazdkę" -#: ../../include/profile_advanced.php:43 +#: ../../object/Item.php:194 ../../mod/content.php:754 +msgid "toggle star status" +msgstr "włącz status gwiazdy" + +#: ../../object/Item.php:197 ../../mod/content.php:757 +msgid "starred" +msgstr "gwiazdką" + +#: ../../object/Item.php:202 ../../mod/content.php:758 +msgid "add tag" +msgstr "dodaj tag" + +#: ../../object/Item.php:213 ../../mod/content.php:683 +#: ../../mod/photos.php:1529 +msgid "I like this (toggle)" +msgstr "Lubię to (zmień)" + +#: ../../object/Item.php:213 ../../mod/content.php:683 +msgid "like" +msgstr "polub" + +#: ../../object/Item.php:214 ../../mod/content.php:684 +#: ../../mod/photos.php:1530 +msgid "I don't like this (toggle)" +msgstr "Nie lubię (zmień)" + +#: ../../object/Item.php:214 ../../mod/content.php:684 +msgid "dislike" +msgstr "Nie lubię" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "Share this" +msgstr "Udostępnij to" + +#: ../../object/Item.php:216 ../../mod/content.php:686 +msgid "share" +msgstr "udostępnij" + +#: ../../object/Item.php:278 ../../include/conversation.php:663 +msgid "Categories:" +msgstr "Kategorie:" + +#: ../../object/Item.php:279 ../../include/conversation.php:664 +msgid "Filed under:" +msgstr "Zapisano pod:" + +#: ../../object/Item.php:287 ../../object/Item.php:288 +#: ../../mod/content.php:471 ../../mod/content.php:851 +#: ../../mod/content.php:852 ../../include/conversation.php:651 #, php-format -msgid "for %1$d %2$s" -msgstr "od %1$d %2$s" +msgid "View %s's profile @ %s" +msgstr "Pokaż %s's profil @ %s" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 -msgid "Sexual Preference:" -msgstr "Interesują mnie:" +#: ../../object/Item.php:289 ../../mod/content.php:853 +msgid "to" +msgstr "do" -#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 -#: ../../boot.php:1496 -msgid "Homepage:" -msgstr "Strona główna:" +#: ../../object/Item.php:290 +msgid "via" +msgstr "przez" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 -msgid "Hometown:" -msgstr "Miasto rodzinne:" +#: ../../object/Item.php:291 ../../mod/content.php:854 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tagi:" +#: ../../object/Item.php:292 ../../mod/content.php:855 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 -msgid "Political Views:" -msgstr "Poglądy polityczne:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religia:" - -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 -msgid "About:" -msgstr "O:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Zainteresowania:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 -msgid "Likes:" -msgstr "Lubi:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 -msgid "Dislikes:" -msgstr "" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informacje kontaktowe i sieci społeczne" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Zainteresowania muzyczne:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Książki, literatura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Telewizja:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/taniec/kultura/rozrywka" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Miłość/Romans:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Praca/zatrudnienie:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Szkoła/edukacja:" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Mężczyzna" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Kobieta" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Aktualnie Mężczyzna" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Aktualnie Kobieta" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Bardziej Mężczyzna" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Bardziej Kobieta" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transpłciowy" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Międzypłciowy" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksualista" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodyta" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Bezpłciowy" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niespecyficzne" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Inne" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Niezdecydowany" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Mężczyźni" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Kobiety" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gej" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbijka" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Brak preferencji" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Biseksualny" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Niezidentyfikowany" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstynent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Dziewica" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Zboczeniec" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetysz" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Nadmiar" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nieseksualny" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Singiel" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Samotny" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Dostępny" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Niedostępny" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "zakochany" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Randki" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Niewierny" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Uzależniony od seksu" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:279 -#: ../../include/user.php:283 -msgid "Friends" -msgstr "Przyjaciele" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Przyjaciele/Korzyści" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Przypadkowy" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Zaręczeni" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Małżeństwo" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partnerzy" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Konkubinat" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Szczęśliwy" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Zdradzony" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "W separacji" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Niestabilny" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Rozwiedzeni" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Wdowiec" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Nieokreślony" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "To skomplikowane" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nie obchodzi mnie to" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Zapytaj mnie " - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "przestań obserwować" - -#: ../../include/Contact.php:225 ../../include/conversation.php:878 -msgid "Poke" -msgstr "Zaczepka" - -#: ../../include/Contact.php:226 ../../include/conversation.php:872 -msgid "View Status" -msgstr "Zobacz status" - -#: ../../include/Contact.php:227 ../../include/conversation.php:873 -msgid "View Profile" -msgstr "Zobacz profil" - -#: ../../include/Contact.php:228 ../../include/conversation.php:874 -msgid "View Photos" -msgstr "Zobacz zdjęcia" - -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:875 -msgid "Network Posts" -msgstr "" - -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:876 -msgid "Edit Contact" -msgstr "Edytuj kontakt" - -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:877 -msgid "Send PM" -msgstr "Wyślij prywatną wiadomość" - -#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 -#: ../../include/bbcode.php:551 -msgid "Image/photo" -msgstr "Obrazek/zdjęcie" - -#: ../../include/bbcode.php:272 +#: ../../object/Item.php:301 ../../mod/content.php:481 +#: ../../mod/content.php:863 ../../include/conversation.php:671 #, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 -msgid "$1 wrote:" -msgstr "$1 napisał:" - -#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 -msgid "Encrypted content" -msgstr "" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Widoczny dla wszystkich" - -#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "show" -msgstr "pokaż" - -#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "don't show" -msgstr "nie pokazuj" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Wyloguj" - -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Niepowodzenie logowania" - -#: ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Komunikat o błędzie:" - -#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Wykończenia:" - -#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 -#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1489 -msgid "Location:" -msgstr "Lokalizacja" - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 -msgid "Disallowed profile URL." -msgstr "Nie dozwolony adres URL profilu." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Brak adresu URL połączenia." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Autor lub nazwa nie zostało znalezione." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nie można otrzymać informacji kontaktowych" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "następujący" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Wymagane zaproszenie." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Zaproszenie niezweryfikowane." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Nieprawidłowy adres url OpenID" - -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Wprowadź wymagane informacje" - -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Użyj dłuższej nazwy." - -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Nazwa jest za krótka." - -#: ../../include/user.php:98 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)." - -#: ../../include/user.php:103 -msgid "Your email domain is not among those allowed on this site." -msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." - -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "Niepoprawny adres e mail.." - -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Nie możesz użyć tego e-maila. " - -#: ../../include/user.php:122 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę." - -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "Ten login jest zajęty. Wybierz inny." - -#: ../../include/user.php:138 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie." - -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." - -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." - -#: ../../include/user.php:237 ../../include/text.php:1618 -msgid "default" -msgstr "standardowe" - -#: ../../include/user.php:247 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." - -#: ../../include/user.php:325 ../../include/user.php:332 -#: ../../include/user.php:339 ../../mod/photos.php:154 -#: ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 -msgid "Profile Photos" -msgstr "Zdjęcia profilowe" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Nieznany | Bez kategori" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Zablokować natychmiast " - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znam, ale nie mam zdania" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Ok, bez problemów" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Zaufane, ma moje poparcie" - -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452 -msgid "Frequently" -msgstr "Jak najczęściej" - -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453 -msgid "Hourly" -msgstr "Godzinowo" - -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454 -msgid "Twice daily" -msgstr "Dwa razy dziennie" - -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455 -msgid "Daily" -msgstr "Dziennie" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Tygodniowo" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Miesięcznie" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 -#: ../../mod/admin.php:777 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Dodaj nowy kontakt" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Wpisz adres lub lokalizację sieciową" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" - -#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 -#: ../../mod/match.php:58 ../../boot.php:1421 -msgid "Connect" -msgstr "Połącz" - -#: ../../include/contact_widgets.php:23 +msgid "%s from %s" +msgstr "%s od %s" + +#: ../../object/Item.php:319 ../../object/Item.php:633 ../../boot.php:685 +#: ../../mod/content.php:708 ../../mod/photos.php:1551 +#: ../../mod/photos.php:1595 ../../mod/photos.php:1678 +msgid "Comment" +msgstr "Komentarz" + +#: ../../object/Item.php:322 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/content.php:498 +#: ../../mod/content.php:882 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/photos.php:1532 +#: ../../include/conversation.php:688 ../../include/conversation.php:1099 +msgid "Please wait" +msgstr "Proszę czekać" + +#: ../../object/Item.php:343 ../../mod/content.php:602 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d zaproszenie dostępne" -msgstr[1] "%d zaproszeń dostępnych" -msgstr[2] "%d zaproszenia dostępne" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Znajdź ludzi" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Wpisz nazwę lub zainteresowanie" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Połącz/Obserwuj" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Przykładowo: Jan Kowalski, Wędkarstwo" - -#: ../../include/contact_widgets.php:33 ../../mod/directory.php:61 -#: ../../mod/contacts.php:613 -msgid "Find" -msgstr "Znajdź" - -#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 -#: ../../view/theme/diabook/theme.php:520 -msgid "Friend Suggestions" -msgstr "Osoby, które możesz znać" - -#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 -msgid "Similar Interests" -msgstr "Podobne zainteresowania" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Domyślny profil" - -#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 -msgid "Invite Friends" -msgstr "Zaproś znajomych" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Sieci" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Wszystkie Sieci" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 -msgid "Saved Folders" -msgstr "Zapisane foldery" - -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Wszystko" - -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Kategorie" - -#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 -#: ../../object/Item.php:365 ../../boot.php:675 -msgid "show more" -msgstr "Pokaż więcej" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "na Last.fm" - -#: ../../include/network.php:877 -msgid "view full size" -msgstr "Zobacz pełen rozmiar" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Różny" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "rok" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "miesiąc" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "dzień" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nigdy" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "mniej niż sekundę temu" - -#: ../../include/datetime.php:285 -msgid "years" -msgstr "lata" - -#: ../../include/datetime.php:286 -msgid "months" -msgstr "miesiące" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "tydzień" - -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "tygodnie" - -#: ../../include/datetime.php:288 -msgid "days" -msgstr "dni" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "godzina" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "godziny" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuta" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuty" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "sekunda" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "sekundy" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:472 ../../include/items.php:1813 -#, php-format -msgid "%s's birthday" -msgstr "Urodziny %s" - -#: ../../include/datetime.php:473 ../../include/items.php:1814 -#, php-format -msgid "Happy Birthday %s" -msgstr "Urodziny %s" - -#: ../../include/plugin.php:439 ../../include/plugin.php:441 -msgid "Click here to upgrade." -msgstr "Kliknij tu, aby zaktualizować." - -#: ../../include/plugin.php:447 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:452 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(bez tematu)" - -#: ../../include/delivery.php:468 ../../include/enotify.php:28 -#: ../../include/notifier.php:785 -msgid "noreply" -msgstr "brak odpowiedzi" - -#: ../../include/diaspora.php:621 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:477 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s jest teraz znajomym z %2$s" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Wspólne powiadomienie z sieci Diaspora" - -#: ../../include/diaspora.php:1874 ../../include/text.php:1884 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 -#: ../../view/theme/diabook/theme.php:464 -msgid "photo" -msgstr "zdjęcie" - -#: ../../include/diaspora.php:1874 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322 -#: ../../view/theme/diabook/theme.php:459 -#: ../../view/theme/diabook/theme.php:468 -msgid "status" -msgstr "status" - -#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 -#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s lubi %2$s's %3$s" - -#: ../../include/diaspora.php:2262 -msgid "Attachments:" -msgstr "Załączniki:" - -#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 -msgid "[Name Withheld]" -msgstr "[Nazwa wstrzymana]" - -#: ../../include/items.php:3495 -msgid "A new person is sharing with you at " -msgstr "" - -#: ../../include/items.php:3495 -msgid "You have a new follower at " -msgstr "" - -#: ../../include/items.php:3979 ../../mod/display.php:51 -#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809 -#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15 -msgid "Item not found." -msgstr "Element nie znaleziony." - -#: ../../include/items.php:4018 -msgid "Do you really want to delete this item?" -msgstr "" - -#: ../../include/items.php:4020 ../../mod/profiles.php:610 -#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/settings.php:961 -#: ../../mod/settings.php:967 ../../mod/settings.php:975 -#: ../../mod/settings.php:979 ../../mod/settings.php:984 -#: ../../mod/settings.php:990 ../../mod/settings.php:996 -#: ../../mod/settings.php:1002 ../../mod/settings.php:1032 -#: ../../mod/settings.php:1033 ../../mod/settings.php:1034 -#: ../../mod/settings.php:1035 ../../mod/settings.php:1036 -#: ../../mod/dfrn_request.php:836 ../../mod/suggest.php:29 -#: ../../mod/message.php:209 ../../mod/contacts.php:246 -msgid "Yes" -msgstr "Tak" - -#: ../../include/items.php:4023 ../../include/conversation.php:1120 -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148 -#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116 -#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 -#: ../../mod/contacts.php:249 -msgid "Cancel" -msgstr "Anuluj" - -#: ../../include/items.php:4143 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 -#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 -#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 -#: ../../mod/uimport.php:23 ../../mod/settings.php:91 -#: ../../mod/settings.php:566 ../../mod/settings.php:571 -#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135 -#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56 -#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/follow.php:9 -#: ../../mod/fsuggest.php:78 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55 -#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15 -#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96 -#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114 -#: ../../mod/network.php:6 ../../mod/notifications.php:66 -#: ../../mod/photos.php:133 ../../mod/photos.php:1044 -#: ../../mod/install.php:151 ../../mod/contacts.php:147 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../index.php:346 -msgid "Permission denied." -msgstr "Brak uprawnień." - -#: ../../include/items.php:4213 -msgid "Archives" -msgstr "Archiwum" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Podgląd posta" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Szukanie wg daty" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Filtrowanie grupowe" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:41 ../../mod/search.php:30 -#: ../../mod/network.php:233 -msgid "Saved Searches" -msgstr "Zapisane wyszukiwania" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Dodaj kategorie do twoich postów" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/dba.php:44 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" - -#: ../../include/text.php:293 -msgid "newer" -msgstr "nowsze" - -#: ../../include/text.php:295 -msgid "older" -msgstr "starsze" - -#: ../../include/text.php:300 -msgid "prev" -msgstr "poprzedni" - -#: ../../include/text.php:302 -msgid "first" -msgstr "pierwszy" - -#: ../../include/text.php:334 -msgid "last" -msgstr "ostatni" - -#: ../../include/text.php:337 -msgid "next" -msgstr "następny" - -#: ../../include/text.php:829 -msgid "No contacts" -msgstr "Brak kontaktów" - -#: ../../include/text.php:838 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktów" -msgstr[2] "%d kontakty" - -#: ../../include/text.php:850 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "widok kontaktów" - -#: ../../include/text.php:927 ../../include/text.php:928 -#: ../../include/nav.php:118 ../../mod/search.php:99 -msgid "Search" -msgstr "Szukaj" - -#: ../../include/text.php:930 ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Zapisz" - -#: ../../include/text.php:979 -msgid "poke" -msgstr "zaczep" - -#: ../../include/text.php:979 ../../include/conversation.php:211 -msgid "poked" -msgstr "zaczepiony" - -#: ../../include/text.php:980 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:980 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:981 -msgid "prod" -msgstr "" - -#: ../../include/text.php:981 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:982 -msgid "slap" -msgstr "spoliczkuj" - -#: ../../include/text.php:982 -msgid "slapped" -msgstr "spoliczkowany" - -#: ../../include/text.php:983 -msgid "finger" -msgstr "dotknąć" - -#: ../../include/text.php:983 -msgid "fingered" -msgstr "dotknięty" - -#: ../../include/text.php:984 -msgid "rebuff" -msgstr "odprawiać" - -#: ../../include/text.php:984 -msgid "rebuffed" -msgstr "odprawiony" - -#: ../../include/text.php:998 -msgid "happy" -msgstr "szczęśliwy" - -#: ../../include/text.php:999 -msgid "sad" -msgstr "smutny" - -#: ../../include/text.php:1000 -msgid "mellow" -msgstr "spokojny" - -#: ../../include/text.php:1001 -msgid "tired" -msgstr "zmęczony" - -#: ../../include/text.php:1002 -msgid "perky" -msgstr "pewny siebie" - -#: ../../include/text.php:1003 -msgid "angry" -msgstr "wściekły" - -#: ../../include/text.php:1004 -msgid "stupified" -msgstr "odurzony" - -#: ../../include/text.php:1005 -msgid "puzzled" -msgstr "zdziwiony" - -#: ../../include/text.php:1006 -msgid "interested" -msgstr "interesujący" - -#: ../../include/text.php:1007 -msgid "bitter" -msgstr "zajadły" - -#: ../../include/text.php:1008 -msgid "cheerful" -msgstr "wesoły" - -#: ../../include/text.php:1009 -msgid "alive" -msgstr "żywy" - -#: ../../include/text.php:1010 -msgid "annoyed" -msgstr "irytujący" - -#: ../../include/text.php:1011 -msgid "anxious" -msgstr "zazdrosny" - -#: ../../include/text.php:1012 -msgid "cranky" -msgstr "zepsuty" - -#: ../../include/text.php:1013 -msgid "disturbed" -msgstr "przeszkadzający" - -#: ../../include/text.php:1014 -msgid "frustrated" -msgstr "rozbity" - -#: ../../include/text.php:1015 -msgid "motivated" -msgstr "zmotywowany" - -#: ../../include/text.php:1016 -msgid "relaxed" -msgstr "zrelaksowany" - -#: ../../include/text.php:1017 -msgid "surprised" -msgstr "zaskoczony" - -#: ../../include/text.php:1185 -msgid "Monday" -msgstr "Poniedziałek" - -#: ../../include/text.php:1185 -msgid "Tuesday" -msgstr "Wtorek" - -#: ../../include/text.php:1185 -msgid "Wednesday" -msgstr "Środa" - -#: ../../include/text.php:1185 -msgid "Thursday" -msgstr "Czwartek" - -#: ../../include/text.php:1185 -msgid "Friday" -msgstr "Piątek" - -#: ../../include/text.php:1185 -msgid "Saturday" -msgstr "Sobota" - -#: ../../include/text.php:1185 -msgid "Sunday" -msgstr "Niedziela" - -#: ../../include/text.php:1189 -msgid "January" -msgstr "Styczeń" - -#: ../../include/text.php:1189 -msgid "February" -msgstr "Luty" - -#: ../../include/text.php:1189 -msgid "March" -msgstr "Marzec" - -#: ../../include/text.php:1189 -msgid "April" -msgstr "Kwiecień" - -#: ../../include/text.php:1189 -msgid "May" -msgstr "Maj" - -#: ../../include/text.php:1189 -msgid "June" -msgstr "Czerwiec" - -#: ../../include/text.php:1189 -msgid "July" -msgstr "Lipiec" - -#: ../../include/text.php:1189 -msgid "August" -msgstr "Sierpień" - -#: ../../include/text.php:1189 -msgid "September" -msgstr "Wrzesień" - -#: ../../include/text.php:1189 -msgid "October" -msgstr "Październik" - -#: ../../include/text.php:1189 -msgid "November" -msgstr "Listopad" - -#: ../../include/text.php:1189 -msgid "December" -msgstr "Grudzień" - -#: ../../include/text.php:1345 ../../mod/videos.php:301 -msgid "View Video" -msgstr "" - -#: ../../include/text.php:1377 -msgid "bytes" -msgstr "bajty" - -#: ../../include/text.php:1401 ../../include/text.php:1413 -msgid "Click to open/close" -msgstr "Kliknij aby otworzyć/zamknąć" - -#: ../../include/text.php:1575 ../../mod/events.php:335 -msgid "link to source" -msgstr "link do źródła" - -#: ../../include/text.php:1630 -msgid "Select an alternate language" -msgstr "Wybierz alternatywny język" - -#: ../../include/text.php:1882 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 -msgid "event" -msgstr "wydarzenie" - -#: ../../include/text.php:1886 -msgid "activity" -msgstr "aktywność" - -#: ../../include/text.php:1888 ../../mod/content.php:628 -#: ../../object/Item.php:364 ../../object/Item.php:377 +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] " %d komentarz" +msgstr[1] " %d komentarzy" +msgstr[2] " %d komentarzy" + +#: ../../object/Item.php:345 ../../object/Item.php:358 +#: ../../mod/content.php:604 ../../include/text.php:1919 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" msgstr[2] "komentarz" -#: ../../include/text.php:1889 -msgid "post" -msgstr "post" +#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "Pokaż więcej" -#: ../../include/text.php:2044 -msgid "Item filed" +#: ../../object/Item.php:631 ../../mod/content.php:706 +#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 +#: ../../mod/photos.php:1676 +msgid "This is you" +msgstr "To jesteś ty" + +#: ../../object/Item.php:634 ../../view/theme/perihel/config.php:95 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/clean/config.php:71 +#: ../../view/theme/cleanzero/config.php:80 ../../mod/mood.php:137 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/crepair.php:166 ../../mod/content.php:709 +#: ../../mod/contacts.php:386 ../../mod/profiles.php:630 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1078 +#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 +#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 +#: ../../mod/photos.php:1679 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 +#: ../../mod/manage.php:110 +msgid "Submit" +msgstr "Potwierdź" + +#: ../../object/Item.php:635 ../../mod/content.php:710 +msgid "Bold" +msgstr "Pogrubienie" + +#: ../../object/Item.php:636 ../../mod/content.php:711 +msgid "Italic" +msgstr "Kursywa" + +#: ../../object/Item.php:637 ../../mod/content.php:712 +msgid "Underline" +msgstr "Podkreślenie" + +#: ../../object/Item.php:638 ../../mod/content.php:713 +msgid "Quote" +msgstr "Cytat" + +#: ../../object/Item.php:639 ../../mod/content.php:714 +msgid "Code" +msgstr "Kod" + +#: ../../object/Item.php:640 ../../mod/content.php:715 +msgid "Image" +msgstr "Obraz" + +#: ../../object/Item.php:641 ../../mod/content.php:716 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:642 ../../mod/content.php:717 +msgid "Video" +msgstr "Video" + +#: ../../object/Item.php:643 ../../mod/editpost.php:145 +#: ../../mod/content.php:718 ../../mod/photos.php:1553 +#: ../../mod/photos.php:1597 ../../mod/photos.php:1680 +#: ../../include/conversation.php:1116 +msgid "Preview" +msgstr "Podgląd" + +#: ../../index.php:199 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Musisz się zalogować, aby móc używać dodatkowych wtyczek." + +#: ../../index.php:243 ../../mod/help.php:90 +msgid "Not Found" +msgstr "Nie znaleziono" + +#: ../../index.php:246 ../../mod/help.php:93 +msgid "Page not found." +msgstr "Strona nie znaleziona." + +#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19 +msgid "Permission denied" +msgstr "Odmowa dostępu" + +#: ../../index.php:356 ../../mod/mood.php:114 ../../mod/display.php:242 +#: ../../mod/register.php:40 ../../mod/dfrn_confirm.php:53 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 +#: ../../mod/network.php:6 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:115 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:147 +#: ../../mod/settings.php:96 ../../mod/settings.php:579 +#: ../../mod/settings.php:584 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:571 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:133 +#: ../../mod/photos.php:1044 ../../mod/wall_attach.php:55 +#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/notifications.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../include/items.php:4187 +msgid "Permission denied." +msgstr "Brak uprawnień." + +#: ../../index.php:415 +msgid "toggle mobile" +msgstr "przełącz na mobilny" + +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 +#: ../../include/nav.php:104 ../../include/nav.php:143 +msgid "Home" +msgstr "Dom" + +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:143 +msgid "Your posts and conversations" +msgstr "Twoje posty i rozmowy" + +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:1963 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 +msgid "Profile" +msgstr "Profil" + +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Twoja strona profilowa" + +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:1970 +#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 +msgid "Photos" +msgstr "Zdjęcia" + +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Twoje zdjęcia" + +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:1987 +#: ../../mod/events.php:370 ../../include/nav.php:79 +msgid "Events" +msgstr "Wydarzenia" + +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79 +msgid "Your events" +msgstr "Twoje wydarzenia" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Osobiste notatki" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Twoje osobiste zdjęcia" + +#: ../../view/theme/perihel/theme.php:38 +#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Społeczność" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "don't show" +msgstr "nie pokazuj" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:326 +msgid "show" +msgstr "pokaż" + +#: ../../view/theme/perihel/config.php:97 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/clean/config.php:73 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Ustawienia motywu" + +#: ../../view/theme/perihel/config.php:98 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Ustaw rozmiar fontów dla postów i komentarzy" + +#: ../../view/theme/perihel/config.php:99 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" msgstr "" -#: ../../include/group.php:25 +#: ../../view/theme/perihel/config.php:100 +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607 +#: ../../include/nav.php:171 +msgid "Contacts" +msgstr "Kontakty" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Twoje kontakty" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Strony społecznościowe" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ostatni użytkownicy" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ostatnie polubienia" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../include/text.php:1913 +msgid "event" +msgstr "wydarzenie" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 +#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +#: ../../include/diaspora.php:1874 +msgid "status" +msgstr "status" + +#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 +#: ../../mod/like.php:151 ../../mod/subthread.php:87 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1915 ../../include/diaspora.php:1874 +msgid "photo" +msgstr "zdjęcie" + +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:168 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1890 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s lubi %2$s's %3$s" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ostatnie zdjęcia" + +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:59 +#: ../../mod/photos.php:154 ../../mod/photos.php:1058 +#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 +#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +msgid "Contact Photos" +msgstr "Zdjęcia kontaktu" + +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:154 +#: ../../mod/photos.php:725 ../../mod/photos.php:1183 +#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../include/user.php:331 +#: ../../include/user.php:338 ../../include/user.php:345 +msgid "Profile Photos" +msgstr "Zdjęcia profilowe" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Znajdź znajomych" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 +msgid "Global Directory" +msgstr "Globalne Położenie" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Podobne zainteresowania" + +#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Osoby, które możesz znać" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Zaproś znajomych" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 +#: ../../mod/admin.php:999 ../../mod/admin.php:1207 ../../mod/settings.php:79 +#: ../../mod/uexport.php:48 ../../include/nav.php:167 +msgid "Settings" +msgstr "Ustawienia" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Połączone serwisy" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Zestaw kolorów" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Wyrównanie" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Lewo" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Środek" + +#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:76 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Zestaw kolorów" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Zestaw kolorów" + +#: ../../view/theme/clean/config.php:54 ../../include/user.php:243 +#: ../../include/text.php:1649 +msgid "default" +msgstr "standardowe" + +#: ../../view/theme/clean/config.php:74 +msgid "Background Image" +msgstr "" + +#: ../../view/theme/clean/config.php:74 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." +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." msgstr "" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Wszyscy" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "edytuj" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Grupy" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: ../../include/group.php:275 ../../mod/network.php:234 -msgid "add" -msgstr "dodaj" - -#: ../../include/conversation.php:140 ../../mod/like.php:170 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nie lubi %2$s's %3$s" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" +#: ../../view/theme/clean/config.php:75 +msgid "Background Color" msgstr "" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#: ../../view/theme/clean/config.php:75 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: ../../view/theme/clean/config.php:77 +msgid "font size" +msgstr "" + +#: ../../view/theme/clean/config.php:77 +msgid "base font size for your interface" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Ustaw szerokość motywu" + +#: ../../boot.php:684 +msgid "Delete this item?" +msgstr "Usunąć ten element?" + +#: ../../boot.php:687 +msgid "show fewer" +msgstr "Pokaż mniej" + +#: ../../boot.php:1015 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1017 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1127 +msgid "Create a New Account" +msgstr "Załóż nowe konto" + +#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108 +msgid "Register" +msgstr "Zarejestruj" + +#: ../../boot.php:1152 ../../include/nav.php:73 +msgid "Logout" +msgstr "Wyloguj się" + +#: ../../boot.php:1153 ../../include/nav.php:91 +msgid "Login" +msgstr "Login" + +#: ../../boot.php:1155 +msgid "Nickname or Email address: " +msgstr "Nick lub adres email:" + +#: ../../boot.php:1156 +msgid "Password: " +msgstr "Hasło:" + +#: ../../boot.php:1157 +msgid "Remember me" +msgstr "Zapamiętaj mnie" + +#: ../../boot.php:1160 +msgid "Or login using OpenID: " +msgstr "Lub zaloguj się korzystając z OpenID:" + +#: ../../boot.php:1166 +msgid "Forgot your password?" +msgstr "Zapomniałeś swojego hasła?" + +#: ../../boot.php:1167 ../../mod/lostpass.php:84 +msgid "Password Reset" +msgstr "Zresetuj hasło" + +#: ../../boot.php:1169 +msgid "Website Terms of Service" +msgstr "" + +#: ../../boot.php:1170 +msgid "terms of service" +msgstr "" + +#: ../../boot.php:1172 +msgid "Website Privacy Policy" +msgstr "" + +#: ../../boot.php:1173 +msgid "privacy policy" +msgstr "polityka prywatności" + +#: ../../boot.php:1302 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1341 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "Żądany profil jest niedostępny" + +#: ../../boot.php:1381 ../../boot.php:1485 +msgid "Edit profile" +msgstr "Edytuj profil" + +#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Połącz" + +#: ../../boot.php:1447 +msgid "Message" +msgstr "Wiadomość" + +#: ../../boot.php:1455 ../../include/nav.php:169 +msgid "Profiles" +msgstr "Profile" + +#: ../../boot.php:1455 +msgid "Manage/edit profiles" +msgstr "Zarządzaj profilami" + +#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726 +msgid "Change profile photo" +msgstr "Zmień zdjęcie profilowe" + +#: ../../boot.php:1462 ../../mod/profiles.php:727 +msgid "Create New Profile" +msgstr "Stwórz nowy profil" + +#: ../../boot.php:1472 ../../mod/profiles.php:738 +msgid "Profile Image" +msgstr "Obraz profilowy" + +#: ../../boot.php:1475 ../../mod/profiles.php:740 +msgid "visible to everybody" +msgstr "widoczne dla wszystkich" + +#: ../../boot.php:1476 ../../mod/profiles.php:741 +msgid "Edit visibility" +msgstr "Edytuj widoczność" + +#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +msgid "Location:" +msgstr "Lokalizacja" + +#: ../../boot.php:1503 ../../mod/directory.php:136 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Płeć:" + +#: ../../boot.php:1506 ../../mod/directory.php:138 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status" + +#: ../../boot.php:1508 ../../mod/directory.php:140 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Strona główna:" + +#: ../../boot.php:1584 ../../boot.php:1670 +msgid "g A l F d" +msgstr "g A I F d" + +#: ../../boot.php:1585 ../../boot.php:1671 +msgid "F d" +msgstr "" + +#: ../../boot.php:1630 ../../boot.php:1711 +msgid "[today]" +msgstr "[dziś]" + +#: ../../boot.php:1642 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" + +#: ../../boot.php:1643 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" + +#: ../../boot.php:1704 +msgid "[No description]" +msgstr "[Brak opisu]" + +#: ../../boot.php:1722 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" + +#: ../../boot.php:1723 +msgid "Events this week:" +msgstr "Wydarzenia w tym tygodniu:" + +#: ../../boot.php:1956 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: ../../boot.php:1959 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: ../../boot.php:1966 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: ../../boot.php:1973 ../../mod/photos.php:51 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: ../../boot.php:1977 ../../boot.php:1980 +msgid "Videos" +msgstr "Filmy" + +#: ../../boot.php:1990 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: ../../boot.php:1994 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "Osobiste notatki" + +#: ../../boot.php:1997 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" + +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format msgid "%1$s is currently %2$s" msgstr "" -#: ../../include/conversation.php:266 ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: ../../include/conversation.php:612 ../../mod/content.php:461 -#: ../../mod/content.php:763 ../../object/Item.php:126 -msgid "Select" -msgstr "Wybierz" - -#: ../../include/conversation.php:613 ../../mod/admin.php:770 -#: ../../mod/settings.php:647 ../../mod/group.php:171 -#: ../../mod/photos.php:1637 ../../mod/content.php:462 -#: ../../mod/content.php:764 ../../object/Item.php:127 -msgid "Delete" -msgstr "Usuń" - -#: ../../include/conversation.php:652 ../../mod/content.php:495 -#: ../../mod/content.php:875 ../../mod/content.php:876 -#: ../../object/Item.php:306 ../../object/Item.php:307 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Pokaż %s's profil @ %s" - -#: ../../include/conversation.php:664 ../../object/Item.php:297 -msgid "Categories:" -msgstr "Kategorie:" - -#: ../../include/conversation.php:665 ../../object/Item.php:298 -msgid "Filed under:" -msgstr "Zapisano pod:" - -#: ../../include/conversation.php:672 ../../mod/content.php:505 -#: ../../mod/content.php:887 ../../object/Item.php:320 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" - -#: ../../include/conversation.php:687 ../../mod/content.php:520 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: ../../include/conversation.php:689 ../../include/conversation.php:1100 -#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/photos.php:1532 ../../mod/content.php:522 -#: ../../mod/content.php:906 ../../object/Item.php:341 -msgid "Please wait" -msgstr "Proszę czekać" - -#: ../../include/conversation.php:768 -msgid "remove" -msgstr "usuń" - -#: ../../include/conversation.php:772 -msgid "Delete Selected Items" -msgstr "Usuń zaznaczone elementy" - -#: ../../include/conversation.php:871 -msgid "Follow Thread" -msgstr "Śledź wątek" - -#: ../../include/conversation.php:940 -#, php-format -msgid "%s likes this." -msgstr "%s lubi to." - -#: ../../include/conversation.php:940 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." - -#: ../../include/conversation.php:945 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:948 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:962 -msgid "and" -msgstr "i" - -#: ../../include/conversation.php:968 -#, php-format -msgid ", and %d other people" -msgstr ", i %d innych ludzi" - -#: ../../include/conversation.php:970 -#, php-format -msgid "%s like this." -msgstr "%s lubi to." - -#: ../../include/conversation.php:970 -#, php-format -msgid "%s don't like this." -msgstr "%s nie lubi tego." - -#: ../../include/conversation.php:997 ../../include/conversation.php:1015 -msgid "Visible to everybody" -msgstr "Widoczne dla wszystkich" - -#: ../../include/conversation.php:998 ../../include/conversation.php:1016 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -msgid "Please enter a link URL:" -msgstr "Proszę wpisać adres URL:" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Please enter a video link/URL:" -msgstr "Podaj link do filmu" - -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter an audio link/URL:" -msgstr "Podaj link do muzyki" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Zapisz w folderze:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Where are you right now?" -msgstr "Gdzie teraz jesteś?" - -#: ../../include/conversation.php:1004 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1046 -msgid "Post to Email" -msgstr "Wyślij poprzez email" - -#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 -msgid "Share" -msgstr "Podziel się" - -#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 -#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Wyślij zdjęcie" - -#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "dodaj zdjęcie" - -#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Przyłącz plik" - -#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "załącz plik" - -#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 -#: ../../mod/wallmessage.php:155 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Wstaw link" - -#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 -msgid "web link" -msgstr "Adres www" - -#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Wstaw link wideo" - -#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 -msgid "video link" -msgstr "link do filmu" - -#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Wstaw link audio" - -#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "Link audio" - -#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Ustaw swoje położenie" - -#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 -msgid "set location" -msgstr "wybierz lokalizację" - -#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Wyczyść położenie przeglądarki" - -#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Ustaw tytuł" - -#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: ../../include/conversation.php:1102 -msgid "permissions" -msgstr "zezwolenia" - -#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: adresy e-mail" - -#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Publiczny post" - -#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Przykład: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 -#: ../../mod/photos.php:1680 ../../mod/content.php:742 -#: ../../object/Item.php:662 -msgid "Preview" -msgstr "Podgląd" - -#: ../../include/conversation.php:1126 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1127 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1128 -msgid "Private post" -msgstr "Prywatne posty" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Powiadomienia Friendica" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Dziękuję," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "%s administrator" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s wysyła ci %2$s" - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "prywatna wiadomość" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości" - -#: ../../include/enotify.php:90 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" - -#: ../../include/enotify.php:97 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" - -#: ../../include/enotify.php:105 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: ../../include/enotify.php:115 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:116 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s skomentował rozmowę którą śledzisz" - -#: ../../include/enotify.php:119 ../../include/enotify.php:134 -#: ../../include/enotify.php:147 ../../include/enotify.php:165 -#: ../../include/enotify.php:178 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę" - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s napisał na twoim profilu" - -#: ../../include/enotify.php:128 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s oznaczył cię" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../include/enotify.php:174 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:187 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:190 ../../include/enotify.php:208 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Możesz obejrzeć ich profile na %s" - -#: ../../include/enotify.php:192 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:201 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:206 -msgid "Name:" -msgstr "Imię:" - -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Zdjęcie:" - -#: ../../include/enotify.php:210 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[bez tematu]" - -#: ../../include/message.php:144 ../../mod/item.php:446 -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 -msgid "Wall Photos" -msgstr "Tablica zdjęć" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Brak nowych zdarzeń" - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Wyczyść powiadomienia" - -#: ../../include/nav.php:73 ../../boot.php:1140 -msgid "Logout" -msgstr "Wyloguj się" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Zakończ sesję" - -#: ../../include/nav.php:76 ../../boot.php:1944 -msgid "Status" -msgstr "Status" - -#: ../../include/nav.php:76 ../../include/nav.php:143 -#: ../../view/theme/diabook/theme.php:87 -msgid "Your posts and conversations" -msgstr "Twoje posty i rozmowy" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 -msgid "Your profile page" -msgstr "Twoja strona profilowa" - -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1958 -msgid "Photos" -msgstr "Zdjęcia" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 -msgid "Your photos" -msgstr "Twoje zdjęcia" - -#: ../../include/nav.php:79 ../../mod/events.php:370 -#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1975 -msgid "Events" -msgstr "Wydarzenia" - -#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 -msgid "Your events" -msgstr "Twoje wydarzenia" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Personal notes" -msgstr "Osobiste notatki" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Your personal photos" -msgstr "Twoje osobiste zdjęcia" - -#: ../../include/nav.php:91 ../../boot.php:1141 -msgid "Login" -msgstr "Login" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Zaloguj się" - -#: ../../include/nav.php:104 ../../include/nav.php:143 -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -msgid "Home" -msgstr "Dom" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Strona startowa" - -#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1116 -msgid "Register" -msgstr "Zarejestruj" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Załóż konto" - -#: ../../include/nav.php:113 ../../mod/help.php:84 -msgid "Help" -msgstr "Pomoc" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Pomoc i dokumentacja" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Aplikacje" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Wtyczki, aplikacje, narzędzia, gry" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Przeszukaj zawartość strony" - -#: ../../include/nav.php:128 ../../mod/community.php:32 -#: ../../view/theme/diabook/theme.php:93 -msgid "Community" -msgstr "Społeczność" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Rozmowy na tej stronie" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "" - -#: ../../include/nav.php:140 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Sieć" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Rozmowy Twoich przyjaciół" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:149 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Wstępy" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Podania o przyjęcie do grona znajomych" - -#: ../../include/nav.php:150 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Powiadomienia" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Zobacz wszystkie powiadomienia" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:156 ../../mod/message.php:182 -#: ../../mod/notifications.php:103 -msgid "Messages" -msgstr "Wiadomości" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Prywatne maile" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "Odebrane" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Wysłane" - -#: ../../include/nav.php:159 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nowa wiadomość" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Zarządzaj" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Zarządzaj innymi stronami" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "" - -#: ../../include/nav.php:165 ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "" - -#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069 -#: ../../mod/settings.php:74 ../../mod/uexport.php:48 -#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:658 -msgid "Settings" -msgstr "Ustawienia" - -#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 -msgid "Account settings" -msgstr "Ustawienia konta" - -#: ../../include/nav.php:169 ../../boot.php:1443 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:171 ../../mod/contacts.php:607 -#: ../../view/theme/diabook/theme.php:89 -msgid "Contacts" -msgstr "Kontakty" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Zarządzaj listą przyjaciół i kontaktami" - -#: ../../include/nav.php:178 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administator" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Konfiguracja i ustawienia instancji" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Mapa strony" - -#: ../../include/oembed.php:138 -msgid "Embedded content" -msgstr "Osadzona zawartość" - -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:139 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:157 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:206 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../include/uimport.php:276 -msgid "Done. You can now login with your username and password" -msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła." - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Witaj " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Proszę dodać zdjęcie profilowe." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Witaj ponownie " - -#: ../../include/security.php:366 -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 "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:160 ../../mod/profiles.php:583 -#: ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Nie znaleziono profilu." - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Konto usunięte." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Utworzono nowy profil." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Nie można powileić profilu " - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Nazwa Profilu jest wymagana" - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Polubień" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Nie lubień" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Praca/Zatrudnienie" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religia" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Poglądy polityczne" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Płeć" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Orientacja seksualna" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "Strona Główna" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Zainteresowania" - -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Adres" - -#: ../../mod/profiles.php:367 -msgid "Location" -msgstr "Położenie" - -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "Konto zaktualizowane." - -#: ../../mod/profiles.php:521 -msgid " and " -msgstr " i " - -#: ../../mod/profiles.php:529 -msgid "public profile" -msgstr "profil publiczny" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../mod/profiles.php:533 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Odwiedźa %1$s's %2$s" - -#: ../../mod/profiles.php:536 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../mod/profiles.php:609 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" - -#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240 -#: ../../mod/settings.php:961 ../../mod/settings.php:967 -#: ../../mod/settings.php:975 ../../mod/settings.php:979 -#: ../../mod/settings.php:984 ../../mod/settings.php:990 -#: ../../mod/settings.php:996 ../../mod/settings.php:1002 -#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 -#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 -#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837 -msgid "No" -msgstr "Nie" - -#: ../../mod/profiles.php:629 -msgid "Edit Profile Details" -msgstr "Edytuj profil." - -#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763 -#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189 -#: ../../mod/settings.php:584 ../../mod/settings.php:694 -#: ../../mod/settings.php:763 ../../mod/settings.php:837 -#: ../../mod/settings.php:1064 ../../mod/crepair.php:166 -#: ../../mod/poke.php:199 ../../mod/events.php:478 ../../mod/fsuggest.php:107 -#: ../../mod/group.php:87 ../../mod/invite.php:140 ../../mod/localtime.php:45 -#: ../../mod/manage.php:110 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078 -#: ../../mod/photos.php:1199 ../../mod/photos.php:1501 -#: ../../mod/photos.php:1552 ../../mod/photos.php:1596 -#: ../../mod/photos.php:1679 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/contacts.php:386 -#: ../../mod/content.php:733 ../../object/Item.php:653 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70 -#: ../../view/theme/quattro/config.php:64 -msgid "Submit" -msgstr "Potwierdź" - -#: ../../mod/profiles.php:631 -msgid "Change Profile Photo" -msgstr "Zmień profilowe zdjęcie" - -#: ../../mod/profiles.php:632 -msgid "View this profile" -msgstr "Zobacz ten profil" - -#: ../../mod/profiles.php:633 -msgid "Create a new profile using these settings" -msgstr "Stwórz nowy profil wykorzystując te ustawienia" - -#: ../../mod/profiles.php:634 -msgid "Clone this profile" -msgstr "Sklonuj ten profil" - -#: ../../mod/profiles.php:635 -msgid "Delete this profile" -msgstr "Usuń ten profil" - -#: ../../mod/profiles.php:636 -msgid "Profile Name:" -msgstr "Nazwa profilu :" - -#: ../../mod/profiles.php:637 -msgid "Your Full Name:" -msgstr "Twoje imię i nazwisko:" - -#: ../../mod/profiles.php:638 -msgid "Title/Description:" -msgstr "Tytuł/Opis :" - -#: ../../mod/profiles.php:639 -msgid "Your Gender:" -msgstr "Twoja płeć:" - -#: ../../mod/profiles.php:640 -#, php-format -msgid "Birthday (%s):" -msgstr "Urodziny (%s):" - -#: ../../mod/profiles.php:641 -msgid "Street Address:" -msgstr "Ulica:" - -#: ../../mod/profiles.php:642 -msgid "Locality/City:" -msgstr "Miejscowość/Miasto :" - -#: ../../mod/profiles.php:643 -msgid "Postal/Zip Code:" -msgstr "Kod Pocztowy :" - -#: ../../mod/profiles.php:644 -msgid "Country:" -msgstr "Kraj:" - -#: ../../mod/profiles.php:645 -msgid "Region/State:" -msgstr "Region / Stan :" - -#: ../../mod/profiles.php:646 -msgid " Marital Status:" -msgstr " Stan :" - -#: ../../mod/profiles.php:647 -msgid "Who: (if applicable)" -msgstr "Kto: (jeśli dotyczy)" - -#: ../../mod/profiles.php:648 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:649 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: ../../mod/profiles.php:651 -msgid "Homepage URL:" -msgstr "Strona główna URL:" - -#: ../../mod/profiles.php:654 -msgid "Religious Views:" -msgstr "Poglądy religijne:" - -#: ../../mod/profiles.php:655 -msgid "Public Keywords:" -msgstr "Publiczne słowa kluczowe :" - -#: ../../mod/profiles.php:656 -msgid "Private Keywords:" -msgstr "Prywatne słowa kluczowe :" - -#: ../../mod/profiles.php:659 -msgid "Example: fishing photography software" -msgstr "Przykład: kończenie oprogramowania fotografii" - -#: ../../mod/profiles.php:660 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" - -#: ../../mod/profiles.php:661 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" - -#: ../../mod/profiles.php:662 -msgid "Tell us about yourself..." -msgstr "Napisz o sobie..." - -#: ../../mod/profiles.php:663 -msgid "Hobbies/Interests" -msgstr "Zainteresowania" - -#: ../../mod/profiles.php:664 -msgid "Contact information and Social Networks" -msgstr "Informacje kontaktowe i Sieci Społeczne" - -#: ../../mod/profiles.php:665 -msgid "Musical interests" -msgstr "Muzyka" - -#: ../../mod/profiles.php:666 -msgid "Books, literature" -msgstr "Literatura" - -#: ../../mod/profiles.php:667 -msgid "Television" -msgstr "Telewizja" - -#: ../../mod/profiles.php:668 -msgid "Film/dance/culture/entertainment" -msgstr "Film/taniec/kultura/rozrywka" - -#: ../../mod/profiles.php:669 -msgid "Love/romance" -msgstr "Miłość/romans" - -#: ../../mod/profiles.php:670 -msgid "Work/employment" -msgstr "Praca/zatrudnienie" - -#: ../../mod/profiles.php:671 -msgid "School/education" -msgstr "Szkoła/edukacja" - -#: ../../mod/profiles.php:676 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." - -#: ../../mod/profiles.php:686 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Wiek: " - -#: ../../mod/profiles.php:725 -msgid "Edit/Manage Profiles" -msgstr "Edytuj/Zarządzaj Profilami" - -#: ../../mod/profiles.php:726 ../../boot.php:1449 ../../boot.php:1475 -msgid "Change profile photo" -msgstr "Zmień zdjęcie profilowe" - -#: ../../mod/profiles.php:727 ../../boot.php:1450 -msgid "Create New Profile" -msgstr "Stwórz nowy profil" - -#: ../../mod/profiles.php:738 ../../boot.php:1460 -msgid "Profile Image" -msgstr "Obraz profilowy" - -#: ../../mod/profiles.php:740 ../../boot.php:1463 -msgid "visible to everybody" -msgstr "widoczne dla wszystkich" - -#: ../../mod/profiles.php:741 ../../boot.php:1464 -msgid "Edit visibility" -msgstr "Edytuj widoczność" - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345 -msgid "Permission denied" -msgstr "Odmowa dostępu" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Nieprawidłowa nazwa użytkownika." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Ustawienia widoczności profilu" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Kliknij na kontakt w celu dodania lub usunięcia." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Widoczne dla" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" - -#: ../../mod/notes.php:44 ../../boot.php:1982 -msgid "Personal Notes" -msgstr "Osobiste notatki" - -#: ../../mod/display.php:19 ../../mod/search.php:89 -#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 -#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 -#: ../../mod/photos.php:914 ../../mod/community.php:18 +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Nastrój" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" + +#: ../../mod/display.php:19 ../../mod/_search.php:89 +#: ../../mod/directory.php:31 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 +#: ../../mod/videos.php:115 msgid "Public access denied." msgstr "Publiczny dostęp zabroniony" +#: ../../mod/display.php:51 ../../mod/display.php:246 ../../mod/decrypt.php:15 +#: ../../mod/admin.php:163 ../../mod/admin.php:947 ../../mod/admin.php:1147 +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 +#: ../../include/items.php:3995 +msgid "Item not found." +msgstr "Element nie znaleziony." + #: ../../mod/display.php:99 ../../mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "Ograniczony dostęp do tego konta" @@ -2683,937 +876,48 @@ msgstr "Ograniczony dostęp do tego konta" msgid "Item has been removed." msgstr "Przedmiot został usunięty" -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 -#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 +#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Brak dostępu" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "To jest Friendica, wersja" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "otwierane na serwerze" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Reportowanie błędów i problemów: proszę odwiedź" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Zainstalowane pluginy/dodatki/aplikacje:" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Obejrzyj %s's profil [%s]" +msgid "%1$s welcomes %2$s" +msgstr "%1$s witamy %2$s" -#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 -msgid "Edit contact" -msgstr "Edytuj kontakt" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty spoza członków grupy" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} chce być Twoim znajomym" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} wysyła Ci wiadomość" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} żądana rejestracja" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} skomentował %s wpis" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} polubił wpis %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} przestał lubić post %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} jest teraz znajomym %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} utworzony" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} zaznaczony %s'go post z #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} wspomniał Cię w swoim wpisie" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Ustawienia szablonu zmienione." - -#: ../../mod/admin.php:96 ../../mod/admin.php:490 -msgid "Site" -msgstr "Strona" - -#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776 -msgid "Users" -msgstr "Użytkownicy" - -#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901 -msgid "Plugins" -msgstr "Wtyczki" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101 -msgid "Themes" -msgstr "Temat" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "Aktualizacje DB" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188 -msgid "Logs" -msgstr "Logi" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Polecane wtyczki" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Rejestracje użytkownika czekają na potwierdzenie." - -#: ../../mod/admin.php:182 ../../mod/admin.php:733 -msgid "Normal Account" -msgstr "Konto normalne" - -#: ../../mod/admin.php:183 ../../mod/admin.php:734 -msgid "Soapbox Account" -msgstr "Konto Soapbox" - -#: ../../mod/admin.php:184 ../../mod/admin.php:735 -msgid "Community/Celebrity Account" -msgstr "Konto społeczności/gwiazdy" - -#: ../../mod/admin.php:185 ../../mod/admin.php:736 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: ../../mod/admin.php:186 -msgid "Blog Account" -msgstr "Konto Bloga" - -#: ../../mod/admin.php:187 -msgid "Private Forum" -msgstr "Forum Prywatne" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Wiadomości" - -#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761 -#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066 -#: ../../mod/admin.php:1100 ../../mod/admin.php:1187 -msgid "Administration" -msgstr "Administracja" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Skrót" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: ../../mod/admin.php:216 -msgid "Pending registrations" -msgstr "Rejestracje w toku." - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Wersja" - -#: ../../mod/admin.php:219 -msgid "Active plugins" -msgstr "Aktywne pluginy" - -#: ../../mod/admin.php:405 -msgid "Site settings updated." -msgstr "Ustawienia strony zaktualizowane" - -#: ../../mod/admin.php:434 ../../mod/settings.php:793 -msgid "No special theme for mobile devices" -msgstr "Brak specialnego motywu dla urządzeń mobilnych" - -#: ../../mod/admin.php:451 ../../mod/contacts.php:330 -msgid "Never" -msgstr "Nigdy" - -#: ../../mod/admin.php:460 -msgid "Multi user instance" -msgstr "Tryb MultiUsera" - -#: ../../mod/admin.php:476 -msgid "Closed" -msgstr "Zamknięty" - -#: ../../mod/admin.php:477 -msgid "Requires approval" -msgstr "Wymagane zatwierdzenie." - -#: ../../mod/admin.php:478 -msgid "Open" -msgstr "Otwórz" - -#: ../../mod/admin.php:482 -msgid "No SSL policy, links will track page SSL state" -msgstr "Brak SSL , linki będą śledzić stan SSL ." - -#: ../../mod/admin.php:483 -msgid "Force all links to use SSL" -msgstr "Wymuś by linki używały SSL." - -#: ../../mod/admin.php:484 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . " - -#: ../../mod/admin.php:492 ../../mod/register.php:261 -msgid "Registration" -msgstr "Rejestracja" - -#: ../../mod/admin.php:493 -msgid "File upload" -msgstr "Plik załadowano" - -#: ../../mod/admin.php:494 -msgid "Policies" -msgstr "zasady" - -#: ../../mod/admin.php:495 -msgid "Advanced" -msgstr "Zaawansowany" - -#: ../../mod/admin.php:496 -msgid "Performance" -msgstr "Ustawienia" - -#: ../../mod/admin.php:500 -msgid "Site name" -msgstr "Nazwa strony" - -#: ../../mod/admin.php:501 -msgid "Banner/Logo" -msgstr "Logo" - -#: ../../mod/admin.php:502 -msgid "System language" -msgstr "Język systemu" - -#: ../../mod/admin.php:503 -msgid "System theme" -msgstr "Motyw systemowy" - -#: ../../mod/admin.php:503 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów" - -#: ../../mod/admin.php:504 -msgid "Mobile system theme" -msgstr "Mobilny motyw systemowy" - -#: ../../mod/admin.php:504 -msgid "Theme for mobile devices" -msgstr "Szablon dla mobilnych urządzeń" - -#: ../../mod/admin.php:505 -msgid "SSL link policy" -msgstr "polityka SSL" - -#: ../../mod/admin.php:505 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl." - -#: ../../mod/admin.php:506 -msgid "'Share' element" -msgstr "'Udostępnij' element" - -#: ../../mod/admin.php:506 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "Aktywuje element BBcode 'dziel ' dla powtarzając się części." - -#: ../../mod/admin.php:507 -msgid "Hide help entry from navigation menu" -msgstr "Wyłącz pomoc w menu nawigacyjnym " - -#: ../../mod/admin.php:507 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." - -#: ../../mod/admin.php:508 -msgid "Single user instance" -msgstr "Tryb SingleUsera" - -#: ../../mod/admin.php:508 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Ustawia tryb multi lub single dla wybranych użytkowników." - -#: ../../mod/admin.php:509 -msgid "Maximum image size" -msgstr "Maksymalny rozmiar zdjęcia" - -#: ../../mod/admin.php:509 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." - -#: ../../mod/admin.php:510 -msgid "Maximum image length" -msgstr "Maksymalna długość obrazu" - -#: ../../mod/admin.php:510 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." - -#: ../../mod/admin.php:511 -msgid "JPEG image quality" -msgstr "jakość obrazu JPEG" - -#: ../../mod/admin.php:511 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " - -#: ../../mod/admin.php:513 -msgid "Register policy" -msgstr "Zarejestruj polisę" - -#: ../../mod/admin.php:514 -msgid "Maximum Daily Registrations" -msgstr "Maksymalnie dziennych rejestracji" - -#: ../../mod/admin.php:514 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "" - -#: ../../mod/admin.php:515 -msgid "Register text" -msgstr "Zarejestruj tekst" - -#: ../../mod/admin.php:515 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Accounts abandoned after x days" -msgstr "Konto porzucone od x dni." - -#: ../../mod/admin.php:516 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." - -#: ../../mod/admin.php:517 -msgid "Allowed friend domains" -msgstr "Dozwolone domeny przyjaciół" - -#: ../../mod/admin.php:517 -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 domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " - -#: ../../mod/admin.php:518 -msgid "Allowed email domains" -msgstr "Dozwolone domeny e-mailowe" - -#: ../../mod/admin.php:518 -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 "" - -#: ../../mod/admin.php:519 -msgid "Block public" -msgstr "Blokuj publicznie" - -#: ../../mod/admin.php:519 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:520 -msgid "Force publish" -msgstr "Wymuś publikację" - -#: ../../mod/admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:521 -msgid "Global directory update URL" -msgstr "" - -#: ../../mod/admin.php:521 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "" - -#: ../../mod/admin.php:522 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:522 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:523 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:523 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:524 -msgid "Don't include post content in email notifications" -msgstr "" - -#: ../../mod/admin.php:524 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "" - -#: ../../mod/admin.php:525 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:525 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:526 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:526 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "" - -#: ../../mod/admin.php:528 -msgid "Block multiple registrations" -msgstr "" - -#: ../../mod/admin.php:528 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:529 -msgid "OpenID support" -msgstr "Wsparcie OpenID" - -#: ../../mod/admin.php:529 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:530 -msgid "Fullname check" -msgstr "Sprawdzanie pełnej nazwy" - -#: ../../mod/admin.php:530 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:531 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: ../../mod/admin.php:531 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:532 -msgid "Show Community Page" -msgstr "Pokaż stronę społeczności" - -#: ../../mod/admin.php:532 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:533 -msgid "Enable OStatus support" -msgstr "Włącz wsparcie OStatus" - -#: ../../mod/admin.php:533 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: ../../mod/admin.php:534 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:534 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: ../../mod/admin.php:535 -msgid "Enable Diaspora support" -msgstr "Włączyć obsługę Diaspory" - -#: ../../mod/admin.php:535 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:536 -msgid "Only allow Friendica contacts" -msgstr "Dopuść tylko kontakty Friendrica" - -#: ../../mod/admin.php:536 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:537 -msgid "Verify SSL" -msgstr "Weryfikacja SSL" - -#: ../../mod/admin.php:537 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: ../../mod/admin.php:538 -msgid "Proxy user" -msgstr "Użytkownik proxy" - -#: ../../mod/admin.php:539 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: ../../mod/admin.php:540 -msgid "Network timeout" -msgstr "Network timeout" - -#: ../../mod/admin.php:540 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:541 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:541 -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 "" - -#: ../../mod/admin.php:542 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:542 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:543 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:543 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:545 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:545 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:546 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:547 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:547 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "" - -#: ../../mod/admin.php:548 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:549 -msgid "Temp path" -msgstr "Ścieżka do Temp" - -#: ../../mod/admin.php:550 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:567 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:577 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:580 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:584 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:587 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "Brak błędów aktualizacji." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Błąd aktualizacji" - -#: ../../mod/admin.php:607 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:634 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../mod/admin.php:641 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] " %s użytkownik usunięty" -msgstr[1] " %s użytkownicy usunięci" -msgstr[2] " %s usuniętych użytkowników " - -#: ../../mod/admin.php:680 -#, php-format -msgid "User '%s' deleted" -msgstr "Użytkownik '%s' usunięty" - -#: ../../mod/admin.php:688 -#, php-format -msgid "User '%s' unblocked" -msgstr "Użytkownik '%s' odblokowany" - -#: ../../mod/admin.php:688 -#, php-format -msgid "User '%s' blocked" -msgstr "Użytkownik '%s' zablokowany" - -#: ../../mod/admin.php:764 -msgid "select all" -msgstr "Zaznacz wszystko" - -#: ../../mod/admin.php:765 -msgid "User registrations waiting for confirm" -msgstr "zarejestrowany użytkownik czeka na potwierdzenie" - -#: ../../mod/admin.php:766 -msgid "Request date" -msgstr "Data prośby" - -#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586 -#: ../../mod/settings.php:612 ../../mod/crepair.php:148 -msgid "Name" -msgstr "Imię" - -#: ../../mod/admin.php:767 -msgid "No registrations." -msgstr "brak rejestracji" - -#: ../../mod/admin.php:768 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Zatwierdź" - -#: ../../mod/admin.php:769 -msgid "Deny" -msgstr "Odmów" - -#: ../../mod/admin.php:771 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "Zablokuj" - -#: ../../mod/admin.php:772 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "Odblokuj" - -#: ../../mod/admin.php:773 -msgid "Site admin" -msgstr "Administracja stroną" - -#: ../../mod/admin.php:774 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:777 -msgid "Register date" -msgstr "Data rejestracji" - -#: ../../mod/admin.php:777 -msgid "Last login" -msgstr "Ostatnie logowanie" - -#: ../../mod/admin.php:777 -msgid "Last item" -msgstr "Ostatni element" - -#: ../../mod/admin.php:777 -msgid "Account" -msgstr "Konto" - -#: ../../mod/admin.php:779 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" - -#: ../../mod/admin.php:780 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Plugin %s disabled." -msgstr "Wtyczka %s wyłączona." - -#: ../../mod/admin.php:825 -#, php-format -msgid "Plugin %s enabled." -msgstr "Wtyczka %s właczona." - -#: ../../mod/admin.php:835 ../../mod/admin.php:1038 -msgid "Disable" -msgstr "Wyłącz" - -#: ../../mod/admin.php:837 ../../mod/admin.php:1040 -msgid "Enable" -msgstr "Zezwól" - -#: ../../mod/admin.php:860 ../../mod/admin.php:1068 -msgid "Toggle" -msgstr "Włącz" - -#: ../../mod/admin.php:868 ../../mod/admin.php:1078 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:869 ../../mod/admin.php:1079 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:998 -msgid "No themes found." -msgstr "Nie znaleziono tematu." - -#: ../../mod/admin.php:1060 -msgid "Screenshot" -msgstr "Zrzut ekranu" - -#: ../../mod/admin.php:1106 -msgid "[Experimental]" -msgstr "[Eksperymentalne]" - -#: ../../mod/admin.php:1107 -msgid "[Unsupported]" -msgstr "[Niewspieralne]" - -#: ../../mod/admin.php:1134 -msgid "Log settings updated." -msgstr "Zaktualizowano ustawienia logów." - -#: ../../mod/admin.php:1190 -msgid "Clear" -msgstr "Wyczyść" - -#: ../../mod/admin.php:1196 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1197 -msgid "Log file" -msgstr "Plik logów" - -#: ../../mod/admin.php:1197 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1198 -msgid "Log level" -msgstr "Poziom logów" - -#: ../../mod/admin.php:1247 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "Aktualizuj teraz" - -#: ../../mod/admin.php:1248 -msgid "Close" -msgstr "Zamknij" - -#: ../../mod/admin.php:1254 -msgid "FTP Host" -msgstr "Założyciel FTP" - -#: ../../mod/admin.php:1255 -msgid "FTP Path" -msgstr "Ścieżka FTP" - -#: ../../mod/admin.php:1256 -msgid "FTP User" -msgstr "Użytkownik FTP" - -#: ../../mod/admin.php:1257 -msgid "FTP Password" -msgstr "FTP Hasło" - -#: ../../mod/item.php:108 -msgid "Unable to locate original post." -msgstr "Nie można zlokalizować oryginalnej wiadomości." - -#: ../../mod/item.php:310 -msgid "Empty post discarded." -msgstr "Pusty wpis wyrzucony." - -#: ../../mod/item.php:872 -msgid "System error. Post not saved." -msgstr "Błąd. Post niezapisany." - -#: ../../mod/item.php:897 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" - -#: ../../mod/item.php:899 -#, php-format -msgid "You may visit them online at %s" -msgstr "Możesz ich odwiedzić online u %s" - -#: ../../mod/item.php:900 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." - -#: ../../mod/item.php:904 -#, php-format -msgid "%s posted an update." -msgstr "%s zaktualizował wpis." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Znajomy %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Brak znajomych do wyświetlenia" - -#: ../../mod/search.php:21 ../../mod/network.php:224 -msgid "Remove term" -msgstr "Usuń wpis" - -#: ../../mod/search.php:180 ../../mod/search.php:206 -#: ../../mod/community.php:61 ../../mod/community.php:89 -msgid "No results." -msgstr "Brak wyników." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoryzacja połączenia aplikacji" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zaloguj się aby kontynuować." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?" - -#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#: ../../mod/register.php:91 ../../mod/admin.php:733 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" @@ -3666,6 +970,31 @@ msgstr "Twój OpenID (opcjonalnie):" msgid "Include your profile in member directory?" msgstr "Czy dołączyć twój profil do katalogu członków?" +#: ../../mod/register.php:239 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:246 +#: ../../mod/settings.php:977 ../../mod/settings.php:983 +#: ../../mod/settings.php:991 ../../mod/settings.php:995 +#: ../../mod/settings.php:1000 ../../mod/settings.php:1006 +#: ../../mod/settings.php:1012 ../../mod/settings.php:1018 +#: ../../mod/settings.php:1048 ../../mod/settings.php:1049 +#: ../../mod/settings.php:1050 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/profiles.php:610 +#: ../../mod/message.php:209 ../../include/items.php:4036 +msgid "Yes" +msgstr "Tak" + +#: ../../mod/register.php:240 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:977 +#: ../../mod/settings.php:983 ../../mod/settings.php:991 +#: ../../mod/settings.php:995 ../../mod/settings.php:1000 +#: ../../mod/settings.php:1006 ../../mod/settings.php:1012 +#: ../../mod/settings.php:1018 ../../mod/settings.php:1048 +#: ../../mod/settings.php:1049 ../../mod/settings.php:1050 +#: ../../mod/settings.php:1051 ../../mod/settings.php:1052 +#: ../../mod/profiles.php:611 +msgid "No" +msgstr "Nie" + #: ../../mod/register.php:257 msgid "Membership on this site is by invitation only." msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." @@ -3674,6 +1003,10 @@ msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." msgid "Your invitation ID: " msgstr "Twoje zaproszenia ID:" +#: ../../mod/register.php:261 ../../mod/admin.php:570 +msgid "Registration" +msgstr "Rejestracja" + #: ../../mod/register.php:269 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Imię i nazwisko (np. Jan Kowalski):" @@ -3693,852 +1026,25 @@ msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu msgid "Choose a nickname: " msgstr "Wybierz pseudonim:" -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "Rejestracja dla %s odwołana" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Proszę się zalogować." - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Element nie dostępny." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element nie znaleziony." - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Usuń konto" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji." - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Źródło - tekst (BBcode) :" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Źródło wejścia:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Źródło wejścia(format Diaspory):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Wspólni znajomi" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "" - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplikacje" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Brak zainstalowanych aplikacji." - -#: ../../mod/uimport.php:64 +#: ../../mod/register.php:281 ../../mod/uimport.php:64 msgid "Import" msgstr "Import" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Przenieś konto" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." +#: ../../mod/register.php:282 +msgid "Import your profile to this friendica instance" msgstr "" -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:583 +msgid "Profile not found." +msgstr "Nie znaleziono profilu." -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/settings.php:23 ../../mod/photos.php:79 -msgid "everybody" -msgstr "wszyscy" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:40 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Wyświetl ustawienia" - -#: ../../mod/settings.php:46 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Ustawienia konektora" - -#: ../../mod/settings.php:51 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Ustawienia wtyczek" - -#: ../../mod/settings.php:56 ../../mod/uexport.php:30 -msgid "Connected apps" -msgstr "Powiązane aplikacje" - -#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 -msgid "Export personal data" -msgstr "Eksportuje dane personalne" - -#: ../../mod/settings.php:66 ../../mod/uexport.php:40 -msgid "Remove account" -msgstr "Usuń konto" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Brakuje ważnych danych!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:610 -msgid "Update" -msgstr "Zaktualizuj" - -#: ../../mod/settings.php:227 -msgid "Failed to connect with email account using the settings provided." -msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." - -#: ../../mod/settings.php:232 -msgid "Email settings updated." -msgstr "Zaktualizowano ustawienia email." - -#: ../../mod/settings.php:247 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:312 -msgid "Passwords do not match. Password unchanged." -msgstr "Hasło nie pasuje. Hasło nie zmienione." - -#: ../../mod/settings.php:317 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Brak hasła niedozwolony. Hasło nie zmienione." - -#: ../../mod/settings.php:325 -msgid "Wrong password." -msgstr "" - -#: ../../mod/settings.php:336 -msgid "Password changed." -msgstr "Hasło zostało zmianione." - -#: ../../mod/settings.php:338 -msgid "Password update failed. Please try again." -msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." - -#: ../../mod/settings.php:403 -msgid " Please use a shorter name." -msgstr "Proszę użyć krótszej nazwy." - -#: ../../mod/settings.php:405 -msgid " Name too short." -msgstr "Za krótka nazwa." - -#: ../../mod/settings.php:414 -msgid "Wrong Password" -msgstr "" - -#: ../../mod/settings.php:419 -msgid " Not valid email." -msgstr "Zły email." - -#: ../../mod/settings.php:422 -msgid " Cannot change to that email." -msgstr "Nie mogę zmienić na ten email." - -#: ../../mod/settings.php:476 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: ../../mod/settings.php:480 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: ../../mod/settings.php:510 -msgid "Settings updated." -msgstr "Zaktualizowano ustawienia." - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -#: ../../mod/settings.php:645 -msgid "Add application" -msgstr "Dodaj aplikacje" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Key" -msgstr "Klucz konsumenta" - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Consumer Secret" -msgstr "Sekret konsumenta" - -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Redirect" -msgstr "Przekierowanie" - -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -msgid "Icon url" -msgstr "Adres ikony" - -#: ../../mod/settings.php:601 -msgid "You can't edit this application." -msgstr "Nie możesz edytować tej aplikacji." - -#: ../../mod/settings.php:644 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: ../../mod/settings.php:646 ../../mod/editpost.php:109 -#: ../../mod/content.php:751 ../../object/Item.php:117 -msgid "Edit" -msgstr "Edytuj" - -#: ../../mod/settings.php:648 -msgid "Client key starts with" -msgstr "Klucz klienta zaczyna się od" - -#: ../../mod/settings.php:649 -msgid "No name" -msgstr "Bez nazwy" - -#: ../../mod/settings.php:650 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: ../../mod/settings.php:662 -msgid "No Plugin settings configured" -msgstr "Ustawienia wtyczki nieskonfigurowane" - -#: ../../mod/settings.php:670 -msgid "Plugin Settings" -msgstr "Ustawienia wtyczki" - -#: ../../mod/settings.php:684 -msgid "Off" -msgstr "Wyłącz" - -#: ../../mod/settings.php:684 -msgid "On" -msgstr "Włącz" - -#: ../../mod/settings.php:692 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -msgid "enabled" -msgstr "włączony" - -#: ../../mod/settings.php:705 ../../mod/settings.php:706 -msgid "disabled" -msgstr "wyłączony" - -#: ../../mod/settings.php:706 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:738 -msgid "Email access is disabled on this site." -msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" - -#: ../../mod/settings.php:745 -msgid "Connector Settings" -msgstr "Ustawienia konektora" - -#: ../../mod/settings.php:750 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: ../../mod/settings.php:751 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email." - -#: ../../mod/settings.php:752 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: ../../mod/settings.php:754 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: ../../mod/settings.php:755 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:756 -msgid "Security:" -msgstr "Ochrona:" - -#: ../../mod/settings.php:756 ../../mod/settings.php:761 -msgid "None" -msgstr "Brak" - -#: ../../mod/settings.php:757 -msgid "Email login name:" -msgstr "Login emaila:" - -#: ../../mod/settings.php:758 -msgid "Email password:" -msgstr "Hasło emaila:" - -#: ../../mod/settings.php:759 -msgid "Reply-to address:" -msgstr "Odpowiedz na adres:" - -#: ../../mod/settings.php:760 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" - -#: ../../mod/settings.php:761 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: ../../mod/settings.php:761 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: ../../mod/settings.php:761 -msgid "Move to folder" -msgstr "Przenieś do folderu" - -#: ../../mod/settings.php:762 -msgid "Move to folder:" -msgstr "Przenieś do folderu:" - -#: ../../mod/settings.php:835 -msgid "Display Settings" -msgstr "Wyświetl ustawienia" - -#: ../../mod/settings.php:841 ../../mod/settings.php:853 -msgid "Display Theme:" -msgstr "Wyświetl motyw:" - -#: ../../mod/settings.php:842 -msgid "Mobile Theme:" -msgstr "Mobilny motyw:" - -#: ../../mod/settings.php:843 -msgid "Update browser every xx seconds" -msgstr "Odświeżaj stronę co xx sekund" - -#: ../../mod/settings.php:843 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Dolny limit 10 sekund, brak górnego limitu" - -#: ../../mod/settings.php:844 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:844 ../../mod/settings.php:845 -msgid "Maximum of 100 items" -msgstr "Maksymalnie 100 elementów" - -#: ../../mod/settings.php:845 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: ../../mod/settings.php:846 -msgid "Don't show emoticons" -msgstr "Nie pokazuj emotikonek" - -#: ../../mod/settings.php:922 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:923 -msgid "This account is a normal personal profile" -msgstr "To konto jest normalnym osobistym profilem" - -#: ../../mod/settings.php:926 -msgid "Soapbox Page" -msgstr "" - -#: ../../mod/settings.php:927 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'" - -#: ../../mod/settings.php:930 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: ../../mod/settings.php:931 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu." - -#: ../../mod/settings.php:934 -msgid "Automatic Friend Page" -msgstr "" - -#: ../../mod/settings.php:935 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół" - -#: ../../mod/settings.php:938 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:939 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:951 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:951 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "Przeznacz to OpenID do logowania się na to konto." - -#: ../../mod/settings.php:961 -msgid "Publish your default profile in your local site directory?" -msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?" - -#: ../../mod/settings.php:967 -msgid "Publish your default profile in the global social directory?" -msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?" - -#: ../../mod/settings.php:975 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" - -#: ../../mod/settings.php:979 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" - -#: ../../mod/settings.php:984 -msgid "Allow friends to post to your profile page?" -msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych" - -#: ../../mod/settings.php:990 -msgid "Allow friends to tag your posts?" -msgstr "Zezwól na oznaczanie twoich postów przez znajomych" - -#: ../../mod/settings.php:996 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:1002 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: ../../mod/settings.php:1010 -msgid "Profile is not published." -msgstr "Profil nie jest opublikowany" - -#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "lub" - -#: ../../mod/settings.php:1018 -msgid "Your Identity Address is" -msgstr "Twój adres identyfikacyjny to" - -#: ../../mod/settings.php:1029 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: ../../mod/settings.php:1029 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." - -#: ../../mod/settings.php:1030 -msgid "Advanced expiration settings" -msgstr "" - -#: ../../mod/settings.php:1031 -msgid "Advanced Expiration" -msgstr "" - -#: ../../mod/settings.php:1032 -msgid "Expire posts:" -msgstr "Wygasające posty:" - -#: ../../mod/settings.php:1033 -msgid "Expire personal notes:" -msgstr "Wygasające notatki osobiste:" - -#: ../../mod/settings.php:1034 -msgid "Expire starred posts:" -msgstr "" - -#: ../../mod/settings.php:1035 -msgid "Expire photos:" -msgstr "Wygasające zdjęcia:" - -#: ../../mod/settings.php:1036 -msgid "Only expire posts by others:" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "Account Settings" -msgstr "Ustawienia konta" - -#: ../../mod/settings.php:1070 -msgid "Password Settings" -msgstr "Ustawienia hasła" - -#: ../../mod/settings.php:1071 -msgid "New Password:" -msgstr "Nowe hasło:" - -#: ../../mod/settings.php:1072 -msgid "Confirm:" -msgstr "Potwierdź:" - -#: ../../mod/settings.php:1072 -msgid "Leave password fields blank unless changing" -msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." - -#: ../../mod/settings.php:1073 -msgid "Current Password:" -msgstr "" - -#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 -msgid "Your current password to confirm the changes" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "Password:" -msgstr "" - -#: ../../mod/settings.php:1078 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: ../../mod/settings.php:1080 -msgid "Email Address:" -msgstr "Adres email:" - -#: ../../mod/settings.php:1081 -msgid "Your Timezone:" -msgstr "Twoja strefa czasowa:" - -#: ../../mod/settings.php:1082 -msgid "Default Post Location:" -msgstr "Standardowa lokalizacja wiadomości:" - -#: ../../mod/settings.php:1083 -msgid "Use Browser Location:" -msgstr "Użyj położenia przeglądarki:" - -#: ../../mod/settings.php:1086 -msgid "Security and Privacy Settings" -msgstr "Ustawienia bezpieczeństwa i prywatności" - -#: ../../mod/settings.php:1088 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" - -#: ../../mod/settings.php:1088 ../../mod/settings.php:1118 -msgid "(to prevent spam abuse)" -msgstr "(aby zapobiec spamowaniu)" - -#: ../../mod/settings.php:1089 -msgid "Default Post Permissions" -msgstr "Domyślne prawa dostępu wiadomości" - -#: ../../mod/settings.php:1090 -msgid "(click to open/close)" -msgstr "(kliknij by otworzyć/zamknąć)" - -#: ../../mod/settings.php:1099 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 -msgid "Show to Groups" -msgstr "Pokaż Grupy" - -#: ../../mod/settings.php:1100 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 -msgid "Show to Contacts" -msgstr "Pokaż kontakty" - -#: ../../mod/settings.php:1101 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1102 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1106 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1118 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1121 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: ../../mod/settings.php:1122 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1124 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1125 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1126 -msgid "Send a notification email when:" -msgstr "Wyślij powiadmonienia na email, kiedy:" - -#: ../../mod/settings.php:1127 -msgid "You receive an introduction" -msgstr "Otrzymałeś zaproszenie" - -#: ../../mod/settings.php:1128 -msgid "Your introductions are confirmed" -msgstr "Dane zatwierdzone" - -#: ../../mod/settings.php:1129 -msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na twojej ścianie profilowej" - -#: ../../mod/settings.php:1130 -msgid "Someone writes a followup comment" -msgstr "Ktoś pisze komentarz nawiązujący." - -#: ../../mod/settings.php:1131 -msgid "You receive a private message" -msgstr "Otrzymałeś prywatną wiadomość" - -#: ../../mod/settings.php:1132 -msgid "You receive a friend suggestion" -msgstr "Otrzymane propozycje znajomych" - -#: ../../mod/settings.php:1133 -msgid "You are tagged in a post" -msgstr "Jesteś oznaczony w poście" - -#: ../../mod/settings.php:1134 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1137 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1138 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "Link" - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Ustawienia kontaktu zaktualizowane." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Nie udało się zaktualizować kontaktu." - -#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "Kontakt nie znaleziony" -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Napraw ustawienia kontaktów" - -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać." - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Wróć do edytora kontaktów" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Nazwa konta" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL konta" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL żądajacy znajomości" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL potwierdzający znajomość" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "Zgłoszenie Punktu Końcowego URL" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "Adres Ankiety / RSS" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nowe zdjęcie z tej ścieżki" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Usuń" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Dodaj" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Brak wpisów." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Zrób ten post prywatnym" - #: ../../mod/dfrn_confirm.php:119 msgid "" "This may occasionally happen if contact was requested by both persons and it" @@ -4574,6 +1080,12 @@ msgstr "Nieudane lub unieważnione wprowadzenie." msgid "Unable to set contact photo." msgstr "Nie można ustawić zdjęcia kontaktu." +#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 +#: ../../include/diaspora.php:621 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s jest teraz znajomym z %2$s" + #: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " @@ -4620,709 +1132,23 @@ msgstr "Połączenie zaakceptowane %s" msgid "%1$s has joined %2$s" msgstr "%1$s dołączył/a do %2$s" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s witamy %2$s" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoryzacja połączenia aplikacji" -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "To wprowadzenie zostało już zaakceptowane." +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:" -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji." +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zaloguj się aby kontynuować." -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" -msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" -msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "wprowadzanie zakończone." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Nieodwracalny błąd protokołu." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Ochrona przed spamem została wywołana." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Przyjaciele namawiają do spróbowania za 24h." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Niewłaściwy lokalizator " - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Nieprawidłowy adres email." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Już się tu przedstawiłeś." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Widocznie jesteście już znajomymi z %s" - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Zły adres URL profilu." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Aktualizacja nagrania kontaktu nie powiodła się." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Twoje dane zostały wysłane." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Proszę zalogować się do potwierdzenia wstępu." - -#: ../../mod/dfrn_request.php:659 +#: ../../mod/api.php:104 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Ukryj kontakt" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Potwierdź" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ." - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Połącz jako użytkownika e mail (tylko) (Niebawem)" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Przyjaciel/Prośba o połączenie" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na poniższe:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Czy %s Cię zna?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Sieć społeczna" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Twój zidentyfikowany adres:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Globalne Położenie" - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Znajdź na tej stronie" - -#: ../../mod/directory.php:59 ../../mod/contacts.php:612 -msgid "Finding: " -msgstr "Znalezione:" - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Katalog Strony" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Płeć: " - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Czy na pewno chcesz usunąć te sugestie ?" - -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignoruj/Ukryj" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Szukaj osób" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "brak dopasowań" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1025 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." - -#: ../../mod/videos.php:308 ../../mod/photos.php:1784 -msgid "View Album" -msgstr "Zobacz album" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag usunięty" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Usuń pozycję Tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wybierz tag do usunięcia" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Artykuł nie znaleziony" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Edytuj post" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "d, M d " - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Edytuj wydarzenie" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Poprzedni" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Następny" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "godzina:minuta" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Wymagany" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Dopasuj dla strefy czasowej widza" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Opis:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Tytuł:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Pliki" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Eksportuj konto" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Eksportuj wszystko" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- wybierz -" - -#: ../../mod/update_community.php:18 ../../mod/update_display.php:22 -#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt dodany" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "To jest Friendica, wersja" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "otwierane na serwerze" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Reportowanie błędów i problemów: proszę odwiedź" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Zainstalowane pluginy/dodatki/aplikacje:" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Propozycja znajomych wysłana." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Zaproponuj znajomych" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Zaproponuj znajomych dla %s" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grupa utworzona." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Nie mogę stworzyć grupy" - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Nie znaleziono grupy" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Nazwa grupy zmieniona" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Stwórz grupę znajomych." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nazwa grupy: " - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grupa usunięta." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nie można usunąć grupy." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Edytor grupy" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Członkowie" - -#: ../../mod/group.php:194 ../../mod/contacts.php:476 -msgid "All Contacts" -msgstr "Wszystkie kontakty" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Brak profilu" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Pomoc:" - -#: ../../mod/help.php:90 ../../index.php:231 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: ../../mod/help.php:93 ../../index.php:234 -msgid "Page not found." -msgstr "Strona nie znaleziona." - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "brak kontaktów" - -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Witamy w %s" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Brak dostępu" - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Plik przekracza dozwolony rozmiar %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Rozmiar obrazka przekracza limit %d" - -#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Przetwarzanie obrazu nie powiodło się." - -#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Przesyłanie obrazu nie powiodło się" - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Niepoprawny adres email." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Dołącz do nas na Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Dostarczenie wiadomości nieudane." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d wiadomość wysłana." -msgstr[1] "%d wiadomości wysłane." -msgstr[2] "%d wysłano ." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nie masz więcej zaproszeń" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "" - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Wyślij zaproszenia" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Wprowadź adresy email, jeden na linijkę:" - -#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Twoja wiadomość:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nie wybrano odbiorcy." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Wiadomość nie może zostać wysłana" - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Wysłano." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Wyślij prywatną wiadomość" - -#: ../../mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Do:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Temat:" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zmiana czasu" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Czas UTC %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Obecna strefa czasowa: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zmień strefę czasową: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Wybierz swoją strefę czasową:" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Dane prywatne nie są dostępne zdalnie " - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Widoczne dla:" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?" #: ../../mod/lostpass.php:17 msgid "No valid account found." @@ -5343,10 +1169,6 @@ msgid "" "Password reset failed." msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." -#: ../../mod/lostpass.php:84 ../../boot.php:1155 -msgid "Password Reset" -msgstr "Zresetuj hasło" - #: ../../mod/lostpass.php:85 msgid "Your password has been reset as requested." msgstr "Twoje hasło zostało zresetowane na twoje życzenie." @@ -5392,560 +1214,79 @@ msgstr "Pseudonim lub Email:" msgid "Reset" msgstr "Zresetuj" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nie wybrano odbiorcy." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nie można sprawdzić twojej lokalizacji." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Wiadomość nie może zostać wysłana" + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." msgstr "" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Zarządzaj Tożsamościami i/lub Stronami." +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Wysłano." -#: ../../mod/manage.php:107 +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Brak odbiorcy." + +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +msgid "Please enter a link URL:" +msgstr "Proszę wpisać adres URL:" + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Wyślij prywatną wiadomość" + +#: ../../mod/wallmessage.php:143 +#, php-format msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." msgstr "" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wybierz tożsamość do zarządzania:" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profil zgodny " - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "interesuje się:" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Niezdolny do uzyskania informacji kontaktowych." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Wiadomość usunięta." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Rozmowa usunięta." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Brak wiadomości." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Nieznany wysyłający - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Ty i %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s i ty" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Usuń rozmowę" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M R - g:m AM/PM" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] " %d wiadomość" -msgstr[1] " %d wiadomości" -msgstr[2] " %d wiadomości" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Wiadomość nie jest dostępna." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Usuń wiadomość" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Odpowiedz" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Nastrój" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "Szukaj wyników dla:" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Porządek wg komentarzy" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "Sortuj po dacie komentarza" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Porządek wg wpisów" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "Sortuj po dacie posta" - -#: ../../mod/network.php:444 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Osobiste" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Nowy" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "Współdzielone linki" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "Interesujące linki" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "Ulubione posty" - -#: ../../mod/network.php:546 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci." -msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." -msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia" - -#: ../../mod/network.php:596 ../../mod/content.php:119 -msgid "No such group" -msgstr "Nie ma takiej grupy" - -#: ../../mod/network.php:607 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Grupa jest pusta" - -#: ../../mod/network.php:611 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grupa:" - -#: ../../mod/network.php:621 -msgid "Contact: " -msgstr "Kontakt: " - -#: ../../mod/network.php:623 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " - -#: ../../mod/network.php:628 -msgid "Invalid contact." -msgstr "Zły kontakt" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Niewłaściwy identyfikator wymagania." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Odrzuć" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 -#: ../../mod/contacts.php:413 -msgid "Ignore" -msgstr "Ignoruj" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Pokaż ignorowane żądania" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ukryj ignorowane żądania" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Typ zawiadomień:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Propozycja znajomych" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "zaproponowane przez %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:419 -msgid "Hide this contact from others" -msgstr "Ukryj ten kontakt przed innymi" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Pisz o nowej działalności przyjaciela" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "jeśli odpowiednie" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Twierdzi, że go znasz:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "tak" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nie" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Zatwierdź jako:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Znajomy" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Prośba o dodanie do przyjaciół/powiązanych" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nowy obserwator" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Brak wstępu." - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s polubił wpis %s" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s przestał lubić post %s" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s jest teraz znajomym %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s dodał nowy wpis" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s skomentował wpis %s" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Nie ma więcej powiadomień sieciowych" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Powiadomienia z sieci" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Nie ma więcej powiadomień systemowych." - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Powiadomienia systemowe" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Nie ma więcej powiadomień osobistych" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Prywatne powiadomienia" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Nie ma więcej powiadomień domu" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Powiadomienia z instancji" - -#: ../../mod/photos.php:51 ../../boot.php:1961 -msgid "Photo Albums" -msgstr "Albumy zdjęć" - -#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 -#: ../../view/theme/diabook/theme.php:492 -msgid "Contact Photos" -msgstr "Zdjęcia kontaktu" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Wyślij nowe zdjęcie" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Informacje o kontakcie nie dostępne." - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album nie znaleziony" - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Usuń album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Usuń zdjęcie" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" - -#: ../../mod/photos.php:656 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "zdjęcie" - -#: ../../mod/photos.php:761 -msgid "Image exceeds size limit of " -msgstr "obrazek przekracza limit rozmiaru" - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Nie zaznaczono zdjęć" - -#: ../../mod/photos.php:1088 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" -msgstr "Prześlij zdjęcia" - -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Nazwa nowego albumu:" - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "lub istniejąca nazwa albumu:" - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Nie pokazuj postów statusu dla tego wysłania" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Uprawnienia" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Zdjęcie prywatne" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Zdjęcie publiczne" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Edytuj album" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Najpierw pokaż najnowsze" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Najpierw pokaż najstarsze" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Zobacz zdjęcie" - -#: ../../mod/photos.php:1286 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "Zdjęcie niedostępne" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Zobacz zdjęcie" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Ustaw jako zdjęcie profilowe" - -#: ../../mod/photos.php:1351 ../../mod/content.php:643 -#: ../../object/Item.php:113 -msgid "Private Message" -msgstr "Wiadomość prywatna" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Zobacz w pełnym rozmiarze" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Tagi:" - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Usunąć znacznik]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Obróć CW (w prawo)" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Obróć CCW (w lewo)" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Nazwa nowego albumu" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Zawartość" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Dodaj tag" - -#: ../../mod/photos.php:1499 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Prywatne zdjęcie." - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Zdjęcie publiczne" - -#: ../../mod/photos.php:1529 ../../mod/content.php:707 -#: ../../object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Lubię to (zmień)" - -#: ../../mod/photos.php:1530 ../../mod/content.php:708 -#: ../../object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Nie lubię (zmień)" - -#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 -#: ../../mod/photos.php:1676 ../../mod/content.php:730 -#: ../../object/Item.php:650 -msgid "This is you" -msgstr "To jesteś ty" - -#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 -#: ../../mod/photos.php:1678 ../../mod/content.php:732 -#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:674 -msgid "Comment" -msgstr "Komentarz" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "Do:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Temat:" + +#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 +#: ../../mod/message.php:558 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Twoja wiadomość:" + +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../include/conversation.php:1081 +msgid "Upload photo" +msgstr "Wyślij zdjęcie" + +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../include/conversation.php:1085 +msgid "Insert web link" +msgstr "Wstaw link" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" @@ -6034,6 +1375,11 @@ msgstr "" msgid "Connecting" msgstr "Łączę się..." +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + #: ../../mod/newmember.php:49 msgid "" "Authorise the Facebook Connector if you currently have a Facebook account " @@ -6092,6 +1438,10 @@ msgid "" "hours." msgstr "" +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Grupy" + #: ../../mod/newmember.php:70 msgid "Group Your Contacts" msgstr "Grupuj Swoje kontakty" @@ -6128,13 +1478,131 @@ msgid "" " features and resources." msgstr "" -#: ../../mod/profile.php:21 ../../boot.php:1329 -msgid "Requested profile is not available." -msgstr "Żądany profil jest niedostępny" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Czy na pewno chcesz usunąć te sugestie ?" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Wskazówki dla nowych użytkowników" +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249 +#: ../../mod/settings.php:598 ../../mod/settings.php:624 +#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1119 +#: ../../include/items.php:4039 +msgid "Cancel" +msgstr "Anuluj" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignoruj/Ukryj" + +#: ../../mod/network.php:179 +msgid "Search Results For:" +msgstr "Szukaj wyników dla:" + +#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Usuń wpis" + +#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30 +#: ../../include/features.php:41 +msgid "Saved Searches" +msgstr "Zapisane wyszukiwania" + +#: ../../mod/network.php:232 ../../include/group.php:275 +msgid "add" +msgstr "dodaj" + +#: ../../mod/network.php:394 +msgid "Commented Order" +msgstr "Porządek wg komentarzy" + +#: ../../mod/network.php:397 +msgid "Sort by Comment Date" +msgstr "Sortuj po dacie komentarza" + +#: ../../mod/network.php:400 +msgid "Posted Order" +msgstr "Porządek wg wpisów" + +#: ../../mod/network.php:403 +msgid "Sort by Post Date" +msgstr "Sortuj po dacie posta" + +#: ../../mod/network.php:441 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Osobiste" + +#: ../../mod/network.php:444 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:450 +msgid "New" +msgstr "Nowy" + +#: ../../mod/network.php:453 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:459 +msgid "Shared Links" +msgstr "Współdzielone linki" + +#: ../../mod/network.php:462 +msgid "Interesting Links" +msgstr "Interesujące linki" + +#: ../../mod/network.php:468 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:471 +msgid "Favourite Posts" +msgstr "Ulubione posty" + +#: ../../mod/network.php:539 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci." +msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." +msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci." + +#: ../../mod/network.php:542 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia" + +#: ../../mod/network.php:588 ../../mod/content.php:119 +msgid "No such group" +msgstr "Nie ma takiej grupy" + +#: ../../mod/network.php:599 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Grupa jest pusta" + +#: ../../mod/network.php:605 ../../mod/content.php:134 +msgid "Group: " +msgstr "Grupa:" + +#: ../../mod/network.php:617 +msgid "Contact: " +msgstr "Kontakt: " + +#: ../../mod/network.php:619 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione " + +#: ../../mod/network.php:624 +msgid "Invalid contact." +msgstr "Zły kontakt" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" @@ -6167,6 +1635,10 @@ msgstr "Proszę przejrzeć plik \"INSTALL.txt\"." msgid "System check" msgstr "Sprawdzanie systemu" +#: ../../mod/install.php:207 ../../mod/events.php:373 +msgid "Next" +msgstr "Następny" + #: ../../mod/install.php:208 msgid "Check again" msgstr "Sprawdź ponownie" @@ -6431,6 +1903,1376 @@ msgid "" "poller." msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller." +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Ustawienia szablonu zmienione." + +#: ../../mod/admin.php:101 ../../mod/admin.php:568 +msgid "Site" +msgstr "Strona" + +#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908 +msgid "Users" +msgstr "Użytkownicy" + +#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039 +msgid "Plugins" +msgstr "Wtyczki" + +#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239 +msgid "Themes" +msgstr "Temat" + +#: ../../mod/admin.php:105 +msgid "DB updates" +msgstr "Aktualizacje DB" + +#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326 +msgid "Logs" +msgstr "Logi" + +#: ../../mod/admin.php:125 ../../include/nav.php:178 +msgid "Admin" +msgstr "Administator" + +#: ../../mod/admin.php:126 +msgid "Plugin Features" +msgstr "Polecane wtyczki" + +#: ../../mod/admin.php:128 +msgid "User registrations waiting for confirmation" +msgstr "Rejestracje użytkownika czekają na potwierdzenie." + +#: ../../mod/admin.php:187 ../../mod/admin.php:848 +msgid "Normal Account" +msgstr "Konto normalne" + +#: ../../mod/admin.php:188 ../../mod/admin.php:849 +msgid "Soapbox Account" +msgstr "Konto Soapbox" + +#: ../../mod/admin.php:189 ../../mod/admin.php:850 +msgid "Community/Celebrity Account" +msgstr "Konto społeczności/gwiazdy" + +#: ../../mod/admin.php:190 ../../mod/admin.php:851 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: ../../mod/admin.php:191 +msgid "Blog Account" +msgstr "Konto Bloga" + +#: ../../mod/admin.php:192 +msgid "Private Forum" +msgstr "Forum Prywatne" + +#: ../../mod/admin.php:211 +msgid "Message queues" +msgstr "Wiadomości" + +#: ../../mod/admin.php:216 ../../mod/admin.php:567 ../../mod/admin.php:892 +#: ../../mod/admin.php:996 ../../mod/admin.php:1038 ../../mod/admin.php:1204 +#: ../../mod/admin.php:1238 ../../mod/admin.php:1325 +msgid "Administration" +msgstr "Administracja" + +#: ../../mod/admin.php:217 +msgid "Summary" +msgstr "Skrót" + +#: ../../mod/admin.php:219 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: ../../mod/admin.php:221 +msgid "Pending registrations" +msgstr "Rejestracje w toku." + +#: ../../mod/admin.php:222 +msgid "Version" +msgstr "Wersja" + +#: ../../mod/admin.php:224 +msgid "Active plugins" +msgstr "Aktywne pluginy" + +#: ../../mod/admin.php:247 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: ../../mod/admin.php:481 +msgid "Site settings updated." +msgstr "Ustawienia strony zaktualizowane" + +#: ../../mod/admin.php:510 ../../mod/settings.php:806 +msgid "No special theme for mobile devices" +msgstr "Brak specialnego motywu dla urządzeń mobilnych" + +#: ../../mod/admin.php:527 ../../mod/contacts.php:330 +msgid "Never" +msgstr "Nigdy" + +#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Jak najczęściej" + +#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Godzinowo" + +#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dwa razy dziennie" + +#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dziennie" + +#: ../../mod/admin.php:536 +msgid "Multi user instance" +msgstr "Tryb MultiUsera" + +#: ../../mod/admin.php:554 +msgid "Closed" +msgstr "Zamknięty" + +#: ../../mod/admin.php:555 +msgid "Requires approval" +msgstr "Wymagane zatwierdzenie." + +#: ../../mod/admin.php:556 +msgid "Open" +msgstr "Otwórz" + +#: ../../mod/admin.php:560 +msgid "No SSL policy, links will track page SSL state" +msgstr "Brak SSL , linki będą śledzić stan SSL ." + +#: ../../mod/admin.php:561 +msgid "Force all links to use SSL" +msgstr "Wymuś by linki używały SSL." + +#: ../../mod/admin.php:562 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . " + +#: ../../mod/admin.php:569 ../../mod/admin.php:1040 ../../mod/admin.php:1240 +#: ../../mod/admin.php:1327 ../../mod/settings.php:597 +#: ../../mod/settings.php:707 ../../mod/settings.php:776 +#: ../../mod/settings.php:852 ../../mod/settings.php:1080 +msgid "Save Settings" +msgstr "" + +#: ../../mod/admin.php:571 +msgid "File upload" +msgstr "Plik załadowano" + +#: ../../mod/admin.php:572 +msgid "Policies" +msgstr "zasady" + +#: ../../mod/admin.php:573 +msgid "Advanced" +msgstr "Zaawansowany" + +#: ../../mod/admin.php:574 +msgid "Performance" +msgstr "Ustawienia" + +#: ../../mod/admin.php:575 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: ../../mod/admin.php:579 +msgid "Site name" +msgstr "Nazwa strony" + +#: ../../mod/admin.php:580 +msgid "Banner/Logo" +msgstr "Logo" + +#: ../../mod/admin.php:581 +msgid "Additional Info" +msgstr "Dodatkowe informacje" + +#: ../../mod/admin.php:581 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "" + +#: ../../mod/admin.php:582 +msgid "System language" +msgstr "Język systemu" + +#: ../../mod/admin.php:583 +msgid "System theme" +msgstr "Motyw systemowy" + +#: ../../mod/admin.php:583 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów" + +#: ../../mod/admin.php:584 +msgid "Mobile system theme" +msgstr "Mobilny motyw systemowy" + +#: ../../mod/admin.php:584 +msgid "Theme for mobile devices" +msgstr "Szablon dla mobilnych urządzeń" + +#: ../../mod/admin.php:585 +msgid "SSL link policy" +msgstr "polityka SSL" + +#: ../../mod/admin.php:585 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Określa kiedy generowane linki powinny używać wymuszonego SSl." + +#: ../../mod/admin.php:586 +msgid "Old style 'Share'" +msgstr "" + +#: ../../mod/admin.php:586 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:587 +msgid "Hide help entry from navigation menu" +msgstr "Wyłącz pomoc w menu nawigacyjnym " + +#: ../../mod/admin.php:587 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help." + +#: ../../mod/admin.php:588 +msgid "Single user instance" +msgstr "Tryb SingleUsera" + +#: ../../mod/admin.php:588 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Ustawia tryb multi lub single dla wybranych użytkowników." + +#: ../../mod/admin.php:589 +msgid "Maximum image size" +msgstr "Maksymalny rozmiar zdjęcia" + +#: ../../mod/admin.php:589 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ." + +#: ../../mod/admin.php:590 +msgid "Maximum image length" +msgstr "Maksymalna długość obrazu" + +#: ../../mod/admin.php:590 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu." + +#: ../../mod/admin.php:591 +msgid "JPEG image quality" +msgstr "jakość obrazu JPEG" + +#: ../../mod/admin.php:591 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . " + +#: ../../mod/admin.php:593 +msgid "Register policy" +msgstr "Zarejestruj polisę" + +#: ../../mod/admin.php:594 +msgid "Maximum Daily Registrations" +msgstr "Maksymalnie dziennych rejestracji" + +#: ../../mod/admin.php:594 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: ../../mod/admin.php:595 +msgid "Register text" +msgstr "Zarejestruj tekst" + +#: ../../mod/admin.php:595 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:596 +msgid "Accounts abandoned after x days" +msgstr "Konto porzucone od x dni." + +#: ../../mod/admin.php:596 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." + +#: ../../mod/admin.php:597 +msgid "Allowed friend domains" +msgstr "Dozwolone domeny przyjaciół" + +#: ../../mod/admin.php:597 +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 domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. " + +#: ../../mod/admin.php:598 +msgid "Allowed email domains" +msgstr "Dozwolone domeny e-mailowe" + +#: ../../mod/admin.php:598 +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 "" + +#: ../../mod/admin.php:599 +msgid "Block public" +msgstr "Blokuj publicznie" + +#: ../../mod/admin.php:599 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:600 +msgid "Force publish" +msgstr "Wymuś publikację" + +#: ../../mod/admin.php:600 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:601 +msgid "Global directory update URL" +msgstr "" + +#: ../../mod/admin.php:601 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "" + +#: ../../mod/admin.php:602 +msgid "Allow threaded items" +msgstr "Zezwalaj na wątkowanie tematów" + +#: ../../mod/admin.php:602 +msgid "Allow infinite level threading for items on this site." +msgstr "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie." + +#: ../../mod/admin.php:603 +msgid "Private posts by default for new users" +msgstr "Prywatne posty domyślnie dla nowych użytkowników" + +#: ../../mod/admin.php:603 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:604 +msgid "Don't include post content in email notifications" +msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" + +#: ../../mod/admin.php:604 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." + +#: ../../mod/admin.php:605 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." + +#: ../../mod/admin.php:605 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:606 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:606 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: ../../mod/admin.php:608 +msgid "Block multiple registrations" +msgstr "Zablokuj wielokrotną rejestrację" + +#: ../../mod/admin.php:608 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. " + +#: ../../mod/admin.php:609 +msgid "OpenID support" +msgstr "Wsparcie OpenID" + +#: ../../mod/admin.php:609 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:610 +msgid "Fullname check" +msgstr "Sprawdzanie pełnej nazwy" + +#: ../../mod/admin.php:610 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem." + +#: ../../mod/admin.php:611 +msgid "UTF-8 Regular expressions" +msgstr "Wyrażenia regularne UTF-8" + +#: ../../mod/admin.php:611 +msgid "Use PHP UTF8 regular expressions" +msgstr "Użyj regularnych wyrażeń PHP UTF8" + +#: ../../mod/admin.php:612 +msgid "Show Community Page" +msgstr "Pokaż stronę społeczności" + +#: ../../mod/admin.php:612 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:613 +msgid "Enable OStatus support" +msgstr "Włącz wsparcie OStatus" + +#: ../../mod/admin.php:613 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:614 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:614 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:615 +msgid "Enable Diaspora support" +msgstr "Włączyć obsługę Diaspory" + +#: ../../mod/admin.php:615 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:616 +msgid "Only allow Friendica contacts" +msgstr "Dopuść tylko kontakty Friendrica" + +#: ../../mod/admin.php:616 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:617 +msgid "Verify SSL" +msgstr "Weryfikacja SSL" + +#: ../../mod/admin.php:617 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: ../../mod/admin.php:618 +msgid "Proxy user" +msgstr "Użytkownik proxy" + +#: ../../mod/admin.php:619 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: ../../mod/admin.php:620 +msgid "Network timeout" +msgstr "Network timeout" + +#: ../../mod/admin.php:620 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:621 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:621 +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 "" + +#: ../../mod/admin.php:622 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:622 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:623 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:623 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:625 +msgid "Use MySQL full text engine" +msgstr "" + +#: ../../mod/admin.php:625 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: ../../mod/admin.php:626 +msgid "Suppress Language" +msgstr "" + +#: ../../mod/admin.php:626 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: ../../mod/admin.php:627 +msgid "Path to item cache" +msgstr "" + +#: ../../mod/admin.php:628 +msgid "Cache duration in seconds" +msgstr "" + +#: ../../mod/admin.php:628 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "" + +#: ../../mod/admin.php:629 +msgid "Path for lock file" +msgstr "" + +#: ../../mod/admin.php:630 +msgid "Temp path" +msgstr "Ścieżka do Temp" + +#: ../../mod/admin.php:631 +msgid "Base path to installation" +msgstr "" + +#: ../../mod/admin.php:633 +msgid "New base url" +msgstr "" + +#: ../../mod/admin.php:651 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:661 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:664 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:668 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:671 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:686 +msgid "No failed updates." +msgstr "Brak błędów aktualizacji." + +#: ../../mod/admin.php:690 +msgid "Failed Updates" +msgstr "Błąd aktualizacji" + +#: ../../mod/admin.php:691 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:692 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:693 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:739 +msgid "Registration successful. Email send to user" +msgstr "" + +#: ../../mod/admin.php:749 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../../mod/admin.php:756 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] " %s użytkownik usunięty" +msgstr[1] " %s użytkownicy usunięci" +msgstr[2] " %s usuniętych użytkowników " + +#: ../../mod/admin.php:795 +#, php-format +msgid "User '%s' deleted" +msgstr "Użytkownik '%s' usunięty" + +#: ../../mod/admin.php:803 +#, php-format +msgid "User '%s' unblocked" +msgstr "Użytkownik '%s' odblokowany" + +#: ../../mod/admin.php:803 +#, php-format +msgid "User '%s' blocked" +msgstr "Użytkownik '%s' zablokowany" + +#: ../../mod/admin.php:894 +msgid "Add User" +msgstr "" + +#: ../../mod/admin.php:895 +msgid "select all" +msgstr "Zaznacz wszystko" + +#: ../../mod/admin.php:896 +msgid "User registrations waiting for confirm" +msgstr "zarejestrowany użytkownik czeka na potwierdzenie" + +#: ../../mod/admin.php:897 +msgid "User waiting for permanent deletion" +msgstr "Użytkownik czekający na trwałe usunięcie" + +#: ../../mod/admin.php:898 +msgid "Request date" +msgstr "Data prośby" + +#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:924 ../../mod/crepair.php:148 +#: ../../mod/settings.php:599 ../../mod/settings.php:625 +msgid "Name" +msgstr "Imię" + +#: ../../mod/admin.php:898 ../../mod/admin.php:910 ../../mod/admin.php:911 +#: ../../mod/admin.php:926 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: ../../mod/admin.php:899 +msgid "No registrations." +msgstr "brak rejestracji" + +#: ../../mod/admin.php:900 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Zatwierdź" + +#: ../../mod/admin.php:901 +msgid "Deny" +msgstr "Odmów" + +#: ../../mod/admin.php:903 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Zablokuj" + +#: ../../mod/admin.php:904 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "Odblokuj" + +#: ../../mod/admin.php:905 +msgid "Site admin" +msgstr "Administracja stroną" + +#: ../../mod/admin.php:906 +msgid "Account expired" +msgstr "Konto wygasło." + +#: ../../mod/admin.php:909 +msgid "New User" +msgstr "" + +#: ../../mod/admin.php:910 ../../mod/admin.php:911 +msgid "Register date" +msgstr "Data rejestracji" + +#: ../../mod/admin.php:910 ../../mod/admin.php:911 +msgid "Last login" +msgstr "Ostatnie logowanie" + +#: ../../mod/admin.php:910 ../../mod/admin.php:911 +msgid "Last item" +msgstr "Ostatni element" + +#: ../../mod/admin.php:910 +msgid "Deleted since" +msgstr "Skasowany od" + +#: ../../mod/admin.php:911 +msgid "Account" +msgstr "Konto" + +#: ../../mod/admin.php:913 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" + +#: ../../mod/admin.php:914 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?" + +#: ../../mod/admin.php:924 +msgid "Name of the new user." +msgstr "Nazwa nowego użytkownika." + +#: ../../mod/admin.php:925 +msgid "Nickname" +msgstr "" + +#: ../../mod/admin.php:925 +msgid "Nickname of the new user." +msgstr "" + +#: ../../mod/admin.php:926 +msgid "Email address of the new user." +msgstr "Adres email nowego użytkownika." + +#: ../../mod/admin.php:959 +#, php-format +msgid "Plugin %s disabled." +msgstr "Wtyczka %s wyłączona." + +#: ../../mod/admin.php:963 +#, php-format +msgid "Plugin %s enabled." +msgstr "Wtyczka %s właczona." + +#: ../../mod/admin.php:973 ../../mod/admin.php:1176 +msgid "Disable" +msgstr "Wyłącz" + +#: ../../mod/admin.php:975 ../../mod/admin.php:1178 +msgid "Enable" +msgstr "Zezwól" + +#: ../../mod/admin.php:998 ../../mod/admin.php:1206 +msgid "Toggle" +msgstr "Włącz" + +#: ../../mod/admin.php:1006 ../../mod/admin.php:1216 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:1007 ../../mod/admin.php:1217 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1136 +msgid "No themes found." +msgstr "Nie znaleziono tematu." + +#: ../../mod/admin.php:1198 +msgid "Screenshot" +msgstr "Zrzut ekranu" + +#: ../../mod/admin.php:1244 +msgid "[Experimental]" +msgstr "[Eksperymentalne]" + +#: ../../mod/admin.php:1245 +msgid "[Unsupported]" +msgstr "[Niewspieralne]" + +#: ../../mod/admin.php:1272 +msgid "Log settings updated." +msgstr "Zaktualizowano ustawienia logów." + +#: ../../mod/admin.php:1328 +msgid "Clear" +msgstr "Wyczyść" + +#: ../../mod/admin.php:1334 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1335 +msgid "Log file" +msgstr "Plik logów" + +#: ../../mod/admin.php:1335 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1336 +msgid "Log level" +msgstr "Poziom logów" + +#: ../../mod/admin.php:1385 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Aktualizuj teraz" + +#: ../../mod/admin.php:1386 +msgid "Close" +msgstr "Zamknij" + +#: ../../mod/admin.php:1392 +msgid "FTP Host" +msgstr "Założyciel FTP" + +#: ../../mod/admin.php:1393 +msgid "FTP Path" +msgstr "Ścieżka FTP" + +#: ../../mod/admin.php:1394 +msgid "FTP User" +msgstr "Użytkownik FTP" + +#: ../../mod/admin.php:1395 +msgid "FTP Password" +msgstr "FTP Hasło" + +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:927 +#: ../../include/text.php:928 ../../include/nav.php:118 +msgid "Search" +msgstr "Szukaj" + +#: ../../mod/_search.php:180 ../../mod/_search.php:206 +#: ../../mod/search.php:179 ../../mod/search.php:205 +#: ../../mod/community.php:61 ../../mod/community.php:91 +msgid "No results." +msgstr "Brak wyników." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Wskazówki dla nowych użytkowników" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "Link" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Artykuł nie znaleziony" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Edytuj post" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1082 +msgid "upload photo" +msgstr "dodaj zdjęcie" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1083 +msgid "Attach file" +msgstr "Przyłącz plik" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1084 +msgid "attach file" +msgstr "załącz plik" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1086 +msgid "web link" +msgstr "Adres www" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1087 +msgid "Insert video link" +msgstr "Wstaw link wideo" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1088 +msgid "video link" +msgstr "link do filmu" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1089 +msgid "Insert audio link" +msgstr "Wstaw link audio" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1090 +msgid "audio link" +msgstr "Link audio" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1091 +msgid "Set your location" +msgstr "Ustaw swoje położenie" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1092 +msgid "set location" +msgstr "wybierz lokalizację" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1093 +msgid "Clear browser location" +msgstr "Wyczyść położenie przeglądarki" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1094 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1100 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1109 +msgid "CC: email addresses" +msgstr "CC: adresy e-mail" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1110 +msgid "Public post" +msgstr "Publiczny post" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1096 +msgid "Set title" +msgstr "Ustaw tytuł" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1098 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (lista słów oddzielonych przecinkiem)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1112 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Przykład: bob@example.com, mary@example.com" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Element nie dostępny." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element nie znaleziony." + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Rejestracja dla %s odwołana" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Proszę się zalogować." + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Znajdź na tej stronie" + +#: ../../mod/directory.php:59 ../../mod/contacts.php:612 +msgid "Finding: " +msgstr "Znalezione:" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Katalog Strony" + +#: ../../mod/directory.php:61 ../../mod/contacts.php:613 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Znajdź" + +#: ../../mod/directory.php:111 ../../mod/profiles.php:686 +msgid "Age: " +msgstr "Wiek: " + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Płeć: " + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "O:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Ustawienia kontaktu zaktualizowane." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Nie udało się zaktualizować kontaktu." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Napraw ustawienia kontaktów" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Wróć do edytora kontaktów" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Nazwa konta" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL konta" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "URL żądajacy znajomości" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "URL potwierdzający znajomość" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Zgłoszenie Punktu Końcowego URL" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Adres Ankiety / RSS" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nowe zdjęcie z tej ścieżki" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Przenieś konto" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Dane prywatne nie są dostępne zdalnie " + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Widoczne dla:" + +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930 +msgid "Save" +msgstr "Zapisz" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Pomoc:" + +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Pomoc" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Brak profilu" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "To wprowadzenie zostało już zaakceptowane." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d wymagany parametr nie został znaleziony w podanej lokacji" +msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji" +msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "wprowadzanie zakończone." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Nieodwracalny błąd protokołu." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil niedostępny." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s otrzymał dziś zbyt wiele żądań połączeń." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Ochrona przed spamem została wywołana." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Przyjaciele namawiają do spróbowania za 24h." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Niewłaściwy lokalizator " + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Nieprawidłowy adres email." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Już się tu przedstawiłeś." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Widocznie jesteście już znajomymi z %s" + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Zły adres URL profilu." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nie dozwolony adres URL profilu." + +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 +msgid "Failed to update contact record." +msgstr "Aktualizacja nagrania kontaktu nie powiodła się." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Twoje dane zostały wysłane." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Proszę zalogować się do potwierdzenia wstępu." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Ukryj kontakt" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Potwierdź" + +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504 +msgid "[Name Withheld]" +msgstr "[Nazwa wstrzymana]" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ." + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Połącz jako użytkownika e mail (tylko) (Niebawem)" + +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Przyjaciel/Prośba o połączenie" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na poniższe:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Czy %s Cię zna?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Sieć społeczna" + +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Twój zidentyfikowany adres:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: ../../mod/update_profile.php:41 ../../mod/update_network.php:22 +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Dodatkowa zawartość - odśwież stronę by zobaczyć]" + +#: ../../mod/content.php:496 ../../include/conversation.php:686 +msgid "View in context" +msgstr "Zobacz w kontekście" + #: ../../mod/contacts.php:85 ../../mod/contacts.php:165 msgid "Could not access contact record." msgstr "Nie można uzyskać dostępu do rejestru kontaktów." @@ -6469,7 +3311,7 @@ msgstr "" #: ../../mod/contacts.php:244 msgid "Do you really want to delete this contact?" -msgstr "" +msgstr "Czy na pewno chcesz usunąć ten kontakt?" #: ../../mod/contacts.php:263 msgid "Contact has been removed." @@ -6511,6 +3353,14 @@ msgstr "Osoby, które możesz znać" msgid "Network type: %s" msgstr "Typ sieci: %s" +#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: ../../mod/contacts.php:348 msgid "View all contacts" msgstr "Zobacz wszystkie kontakty" @@ -6523,6 +3373,12 @@ msgstr "" msgid "Unignore" msgstr "Odblokuj" +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignoruj" + #: ../../mod/contacts.php:362 msgid "Toggle Ignored status" msgstr "" @@ -6574,6 +3430,12 @@ msgstr "Informacja o kontakcie / Notka" msgid "Edit contact notes" msgstr "Edytuj notatki kontaktu" +#: ../../mod/contacts.php:395 ../../mod/contacts.php:585 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Obejrzyj %s's profil [%s]" + #: ../../mod/contacts.php:396 msgid "Block/Unblock contact" msgstr "Zablokuj/odblokuj kontakt" @@ -6614,6 +3476,11 @@ msgstr "Obecnie zignorowany" msgid "Currently archived" msgstr "Obecnie zarchiwizowany" +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Ukryj ten kontakt przed innymi" + #: ../../mod/contacts.php:419 msgid "" "Replies/likes to your public posts may still be visible" @@ -6627,6 +3494,10 @@ msgstr "Sugestie" msgid "Suggest potential friends" msgstr "Sugerowani znajomi" +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Wszystkie kontakty" + #: ../../mod/contacts.php:479 msgid "Show all contacts" msgstr "Pokaż wszystkie kontakty" @@ -6683,22 +3554,1457 @@ msgstr "jest twoim fanem" msgid "you are a fan of" msgstr "jesteś fanem" +#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Edytuj kontakt" + #: ../../mod/contacts.php:611 msgid "Search your contacts" msgstr "Wyszukaj w kontaktach" +#: ../../mod/settings.php:28 ../../mod/photos.php:79 +msgid "everybody" +msgstr "wszyscy" + +#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167 +msgid "Account settings" +msgstr "Ustawienia konta" + +#: ../../mod/settings.php:40 +msgid "Additional features" +msgstr "" + +#: ../../mod/settings.php:45 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "Wyświetl ustawienia" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "Ustawienia konektora" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "Ustawienia wtyczek" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "Powiązane aplikacje" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "Eksportuje dane personalne" + +#: ../../mod/settings.php:71 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "Usuń konto" + +#: ../../mod/settings.php:123 +msgid "Missing some important data!" +msgstr "Brakuje ważnych danych!" + +#: ../../mod/settings.php:126 ../../mod/settings.php:623 +msgid "Update" +msgstr "Zaktualizuj" + +#: ../../mod/settings.php:232 +msgid "Failed to connect with email account using the settings provided." +msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." + +#: ../../mod/settings.php:237 +msgid "Email settings updated." +msgstr "Zaktualizowano ustawienia email." + +#: ../../mod/settings.php:252 +msgid "Features updated" +msgstr "" + +#: ../../mod/settings.php:311 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: ../../mod/settings.php:325 +msgid "Passwords do not match. Password unchanged." +msgstr "Hasło nie pasuje. Hasło nie zmienione." + +#: ../../mod/settings.php:330 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Brak hasła niedozwolony. Hasło nie zmienione." + +#: ../../mod/settings.php:338 +msgid "Wrong password." +msgstr "Złe hasło." + +#: ../../mod/settings.php:349 +msgid "Password changed." +msgstr "Hasło zostało zmianione." + +#: ../../mod/settings.php:351 +msgid "Password update failed. Please try again." +msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." + +#: ../../mod/settings.php:416 +msgid " Please use a shorter name." +msgstr "Proszę użyć krótszej nazwy." + +#: ../../mod/settings.php:418 +msgid " Name too short." +msgstr "Za krótka nazwa." + +#: ../../mod/settings.php:427 +msgid "Wrong Password" +msgstr "Złe hasło" + +#: ../../mod/settings.php:432 +msgid " Not valid email." +msgstr "Zły email." + +#: ../../mod/settings.php:435 +msgid " Cannot change to that email." +msgstr "Nie mogę zmienić na ten email." + +#: ../../mod/settings.php:489 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: ../../mod/settings.php:493 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:523 +msgid "Settings updated." +msgstr "Zaktualizowano ustawienia." + +#: ../../mod/settings.php:596 ../../mod/settings.php:622 +#: ../../mod/settings.php:658 +msgid "Add application" +msgstr "Dodaj aplikacje" + +#: ../../mod/settings.php:600 ../../mod/settings.php:626 +msgid "Consumer Key" +msgstr "Klucz konsumenta" + +#: ../../mod/settings.php:601 ../../mod/settings.php:627 +msgid "Consumer Secret" +msgstr "Sekret konsumenta" + +#: ../../mod/settings.php:602 ../../mod/settings.php:628 +msgid "Redirect" +msgstr "Przekierowanie" + +#: ../../mod/settings.php:603 ../../mod/settings.php:629 +msgid "Icon url" +msgstr "Adres ikony" + +#: ../../mod/settings.php:614 +msgid "You can't edit this application." +msgstr "Nie możesz edytować tej aplikacji." + +#: ../../mod/settings.php:657 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: ../../mod/settings.php:661 +msgid "Client key starts with" +msgstr "Klucz klienta zaczyna się od" + +#: ../../mod/settings.php:662 +msgid "No name" +msgstr "Bez nazwy" + +#: ../../mod/settings.php:663 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: ../../mod/settings.php:675 +msgid "No Plugin settings configured" +msgstr "Ustawienia wtyczki nieskonfigurowane" + +#: ../../mod/settings.php:683 +msgid "Plugin Settings" +msgstr "Ustawienia wtyczki" + +#: ../../mod/settings.php:697 +msgid "Off" +msgstr "Wyłącz" + +#: ../../mod/settings.php:697 +msgid "On" +msgstr "Włącz" + +#: ../../mod/settings.php:705 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:718 ../../mod/settings.php:719 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: ../../mod/settings.php:718 ../../mod/settings.php:719 +msgid "enabled" +msgstr "włączony" + +#: ../../mod/settings.php:718 ../../mod/settings.php:719 +msgid "disabled" +msgstr "wyłączony" + +#: ../../mod/settings.php:719 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:751 +msgid "Email access is disabled on this site." +msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie" + +#: ../../mod/settings.php:758 +msgid "Connector Settings" +msgstr "Ustawienia konektora" + +#: ../../mod/settings.php:763 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: ../../mod/settings.php:764 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email." + +#: ../../mod/settings.php:765 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: ../../mod/settings.php:767 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: ../../mod/settings.php:768 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: ../../mod/settings.php:769 +msgid "Security:" +msgstr "Ochrona:" + +#: ../../mod/settings.php:769 ../../mod/settings.php:774 +msgid "None" +msgstr "Brak" + +#: ../../mod/settings.php:770 +msgid "Email login name:" +msgstr "Login emaila:" + +#: ../../mod/settings.php:771 +msgid "Email password:" +msgstr "Hasło emaila:" + +#: ../../mod/settings.php:772 +msgid "Reply-to address:" +msgstr "Odpowiedz na adres:" + +#: ../../mod/settings.php:773 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" + +#: ../../mod/settings.php:774 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: ../../mod/settings.php:774 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: ../../mod/settings.php:774 +msgid "Move to folder" +msgstr "Przenieś do folderu" + +#: ../../mod/settings.php:775 +msgid "Move to folder:" +msgstr "Przenieś do folderu:" + +#: ../../mod/settings.php:850 +msgid "Display Settings" +msgstr "Wyświetl ustawienia" + +#: ../../mod/settings.php:856 ../../mod/settings.php:869 +msgid "Display Theme:" +msgstr "Wyświetl motyw:" + +#: ../../mod/settings.php:857 +msgid "Mobile Theme:" +msgstr "Mobilny motyw:" + +#: ../../mod/settings.php:858 +msgid "Update browser every xx seconds" +msgstr "Odświeżaj stronę co xx sekund" + +#: ../../mod/settings.php:858 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Dolny limit 10 sekund, brak górnego limitu" + +#: ../../mod/settings.php:859 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:859 ../../mod/settings.php:860 +msgid "Maximum of 100 items" +msgstr "Maksymalnie 100 elementów" + +#: ../../mod/settings.php:860 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: ../../mod/settings.php:861 +msgid "Don't show emoticons" +msgstr "Nie pokazuj emotikonek" + +#: ../../mod/settings.php:862 +msgid "Infinite scroll" +msgstr "" + +#: ../../mod/settings.php:938 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:939 +msgid "This account is a normal personal profile" +msgstr "To konto jest normalnym osobistym profilem" + +#: ../../mod/settings.php:942 +msgid "Soapbox Page" +msgstr "" + +#: ../../mod/settings.php:943 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'" + +#: ../../mod/settings.php:946 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: ../../mod/settings.php:947 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu." + +#: ../../mod/settings.php:950 +msgid "Automatic Friend Page" +msgstr "" + +#: ../../mod/settings.php:951 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół" + +#: ../../mod/settings.php:954 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:955 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:967 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:967 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "Przeznacz to OpenID do logowania się na to konto." + +#: ../../mod/settings.php:977 +msgid "Publish your default profile in your local site directory?" +msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?" + +#: ../../mod/settings.php:983 +msgid "Publish your default profile in the global social directory?" +msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?" + +#: ../../mod/settings.php:991 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?" + +#: ../../mod/settings.php:995 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" + +#: ../../mod/settings.php:1000 +msgid "Allow friends to post to your profile page?" +msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych" + +#: ../../mod/settings.php:1006 +msgid "Allow friends to tag your posts?" +msgstr "Zezwól na oznaczanie twoich postów przez znajomych" + +#: ../../mod/settings.php:1012 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:1018 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:1026 +msgid "Profile is not published." +msgstr "Profil nie jest opublikowany" + +#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "lub" + +#: ../../mod/settings.php:1034 +msgid "Your Identity Address is" +msgstr "Twój adres identyfikacyjny to" + +#: ../../mod/settings.php:1045 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: ../../mod/settings.php:1045 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." + +#: ../../mod/settings.php:1046 +msgid "Advanced expiration settings" +msgstr "" + +#: ../../mod/settings.php:1047 +msgid "Advanced Expiration" +msgstr "" + +#: ../../mod/settings.php:1048 +msgid "Expire posts:" +msgstr "Wygasające posty:" + +#: ../../mod/settings.php:1049 +msgid "Expire personal notes:" +msgstr "Wygasające notatki osobiste:" + +#: ../../mod/settings.php:1050 +msgid "Expire starred posts:" +msgstr "" + +#: ../../mod/settings.php:1051 +msgid "Expire photos:" +msgstr "Wygasające zdjęcia:" + +#: ../../mod/settings.php:1052 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:1078 +msgid "Account Settings" +msgstr "Ustawienia konta" + +#: ../../mod/settings.php:1086 +msgid "Password Settings" +msgstr "Ustawienia hasła" + +#: ../../mod/settings.php:1087 +msgid "New Password:" +msgstr "Nowe hasło:" + +#: ../../mod/settings.php:1088 +msgid "Confirm:" +msgstr "Potwierdź:" + +#: ../../mod/settings.php:1088 +msgid "Leave password fields blank unless changing" +msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić." + +#: ../../mod/settings.php:1089 +msgid "Current Password:" +msgstr "Obecne hasło:" + +#: ../../mod/settings.php:1089 ../../mod/settings.php:1090 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1090 +msgid "Password:" +msgstr "Hasło:" + +#: ../../mod/settings.php:1094 +msgid "Basic Settings" +msgstr "Ustawienia podstawowe" + +#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Imię i nazwisko:" + +#: ../../mod/settings.php:1096 +msgid "Email Address:" +msgstr "Adres email:" + +#: ../../mod/settings.php:1097 +msgid "Your Timezone:" +msgstr "Twoja strefa czasowa:" + +#: ../../mod/settings.php:1098 +msgid "Default Post Location:" +msgstr "Standardowa lokalizacja wiadomości:" + +#: ../../mod/settings.php:1099 +msgid "Use Browser Location:" +msgstr "Użyj położenia przeglądarki:" + +#: ../../mod/settings.php:1102 +msgid "Security and Privacy Settings" +msgstr "Ustawienia bezpieczeństwa i prywatności" + +#: ../../mod/settings.php:1104 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" + +#: ../../mod/settings.php:1104 ../../mod/settings.php:1134 +msgid "(to prevent spam abuse)" +msgstr "(aby zapobiec spamowaniu)" + +#: ../../mod/settings.php:1105 +msgid "Default Post Permissions" +msgstr "Domyślne prawa dostępu wiadomości" + +#: ../../mod/settings.php:1106 +msgid "(click to open/close)" +msgstr "(kliknij by otworzyć/zamknąć)" + +#: ../../mod/settings.php:1115 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "Pokaż Grupy" + +#: ../../mod/settings.php:1116 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "Pokaż kontakty" + +#: ../../mod/settings.php:1117 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1118 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1122 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1134 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1137 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: ../../mod/settings.php:1138 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1139 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1140 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1141 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1142 +msgid "Send a notification email when:" +msgstr "Wyślij powiadmonienia na email, kiedy:" + +#: ../../mod/settings.php:1143 +msgid "You receive an introduction" +msgstr "Otrzymałeś zaproszenie" + +#: ../../mod/settings.php:1144 +msgid "Your introductions are confirmed" +msgstr "Dane zatwierdzone" + +#: ../../mod/settings.php:1145 +msgid "Someone writes on your profile wall" +msgstr "Ktoś pisze na twojej ścianie profilowej" + +#: ../../mod/settings.php:1146 +msgid "Someone writes a followup comment" +msgstr "Ktoś pisze komentarz nawiązujący." + +#: ../../mod/settings.php:1147 +msgid "You receive a private message" +msgstr "Otrzymałeś prywatną wiadomość" + +#: ../../mod/settings.php:1148 +msgid "You receive a friend suggestion" +msgstr "Otrzymane propozycje znajomych" + +#: ../../mod/settings.php:1149 +msgid "You are tagged in a post" +msgstr "Jesteś oznaczony w poście" + +#: ../../mod/settings.php:1150 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1153 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1154 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1157 +msgid "Relocate" +msgstr "" + +#: ../../mod/settings.php:1158 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: ../../mod/settings.php:1159 +msgid "Resend relocate message to contacts" +msgstr "" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Konto usunięte." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Utworzono nowy profil." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Nie można powileić profilu " + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Nazwa Profilu jest wymagana" + +#: ../../mod/profiles.php:317 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "Polubień" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "Nie lubień" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "Praca/Zatrudnienie" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "Religia" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "Poglądy polityczne" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "Płeć" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "Orientacja seksualna" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "Strona Główna" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "Zainteresowania" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "Adres" + +#: ../../mod/profiles.php:367 +msgid "Location" +msgstr "Położenie" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Konto zaktualizowane." + +#: ../../mod/profiles.php:521 +msgid " and " +msgstr " i " + +#: ../../mod/profiles.php:529 +msgid "public profile" +msgstr "profil publiczny" + +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../mod/profiles.php:533 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Odwiedźa %1$s's %2$s" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?" + +#: ../../mod/profiles.php:629 +msgid "Edit Profile Details" +msgstr "Edytuj profil." + +#: ../../mod/profiles.php:631 +msgid "Change Profile Photo" +msgstr "Zmień profilowe zdjęcie" + +#: ../../mod/profiles.php:632 +msgid "View this profile" +msgstr "Zobacz ten profil" + +#: ../../mod/profiles.php:633 +msgid "Create a new profile using these settings" +msgstr "Stwórz nowy profil wykorzystując te ustawienia" + +#: ../../mod/profiles.php:634 +msgid "Clone this profile" +msgstr "Sklonuj ten profil" + +#: ../../mod/profiles.php:635 +msgid "Delete this profile" +msgstr "Usuń ten profil" + +#: ../../mod/profiles.php:636 +msgid "Profile Name:" +msgstr "Nazwa profilu :" + +#: ../../mod/profiles.php:637 +msgid "Your Full Name:" +msgstr "Twoje imię i nazwisko:" + +#: ../../mod/profiles.php:638 +msgid "Title/Description:" +msgstr "Tytuł/Opis :" + +#: ../../mod/profiles.php:639 +msgid "Your Gender:" +msgstr "Twoja płeć:" + +#: ../../mod/profiles.php:640 +#, php-format +msgid "Birthday (%s):" +msgstr "Urodziny (%s):" + +#: ../../mod/profiles.php:641 +msgid "Street Address:" +msgstr "Ulica:" + +#: ../../mod/profiles.php:642 +msgid "Locality/City:" +msgstr "Miejscowość/Miasto :" + +#: ../../mod/profiles.php:643 +msgid "Postal/Zip Code:" +msgstr "Kod Pocztowy :" + +#: ../../mod/profiles.php:644 +msgid "Country:" +msgstr "Kraj:" + +#: ../../mod/profiles.php:645 +msgid "Region/State:" +msgstr "Region / Stan :" + +#: ../../mod/profiles.php:646 +msgid " Marital Status:" +msgstr " Stan :" + +#: ../../mod/profiles.php:647 +msgid "Who: (if applicable)" +msgstr "Kto: (jeśli dotyczy)" + +#: ../../mod/profiles.php:648 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:649 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Interesują mnie:" + +#: ../../mod/profiles.php:651 +msgid "Homepage URL:" +msgstr "Strona główna URL:" + +#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Miasto rodzinne:" + +#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Poglądy polityczne:" + +#: ../../mod/profiles.php:654 +msgid "Religious Views:" +msgstr "Poglądy religijne:" + +#: ../../mod/profiles.php:655 +msgid "Public Keywords:" +msgstr "Publiczne słowa kluczowe :" + +#: ../../mod/profiles.php:656 +msgid "Private Keywords:" +msgstr "Prywatne słowa kluczowe :" + +#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Lubi:" + +#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "" + +#: ../../mod/profiles.php:659 +msgid "Example: fishing photography software" +msgstr "Przykład: kończenie oprogramowania fotografii" + +#: ../../mod/profiles.php:660 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" + +#: ../../mod/profiles.php:661 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" + +#: ../../mod/profiles.php:662 +msgid "Tell us about yourself..." +msgstr "Napisz o sobie..." + +#: ../../mod/profiles.php:663 +msgid "Hobbies/Interests" +msgstr "Zainteresowania" + +#: ../../mod/profiles.php:664 +msgid "Contact information and Social Networks" +msgstr "Informacje kontaktowe i Sieci Społeczne" + +#: ../../mod/profiles.php:665 +msgid "Musical interests" +msgstr "Muzyka" + +#: ../../mod/profiles.php:666 +msgid "Books, literature" +msgstr "Literatura" + +#: ../../mod/profiles.php:667 +msgid "Television" +msgstr "Telewizja" + +#: ../../mod/profiles.php:668 +msgid "Film/dance/culture/entertainment" +msgstr "Film/taniec/kultura/rozrywka" + +#: ../../mod/profiles.php:669 +msgid "Love/romance" +msgstr "Miłość/romans" + +#: ../../mod/profiles.php:670 +msgid "Work/employment" +msgstr "Praca/zatrudnienie" + +#: ../../mod/profiles.php:671 +msgid "School/education" +msgstr "Szkoła/edukacja" + +#: ../../mod/profiles.php:676 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." + +#: ../../mod/profiles.php:725 +msgid "Edit/Manage Profiles" +msgstr "Edytuj/Zarządzaj Profilami" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupa utworzona." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Nie mogę stworzyć grupy" + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Nie znaleziono grupy" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Nazwa grupy zmieniona" + +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Stwórz grupę znajomych." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nazwa grupy: " + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Grupa usunięta." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nie można usunąć grupy." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Edytor grupy" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Członkowie" + +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Kliknij na kontakt w celu dodania lub usunięcia." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Źródło - tekst (BBcode) :" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Źródło wejścia:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Źródło wejścia(format Diaspory):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Niedostępne." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt dodany" + +#: ../../mod/notify.php:61 ../../mod/notifications.php:332 +msgid "No more system notifications." +msgstr "Nie ma więcej powiadomień systemowych." + +#: ../../mod/notify.php:65 ../../mod/notifications.php:336 +msgid "System Notifications" +msgstr "Powiadomienia systemowe" + +#: ../../mod/message.php:9 ../../include/nav.php:159 +msgid "New Message" +msgstr "Nowa wiadomość" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Niezdolny do uzyskania informacji kontaktowych." + +#: ../../mod/message.php:182 ../../mod/notifications.php:103 +#: ../../include/nav.php:156 +msgid "Messages" +msgstr "Wiadomości" + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Czy na pewno chcesz usunąć tę wiadomość?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Wiadomość usunięta." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Rozmowa usunięta." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Brak wiadomości." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nieznany wysyłający - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Ty i %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s i ty" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Usuń rozmowę" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M R - g:m AM/PM" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] " %d wiadomość" +msgstr[1] " %d wiadomości" +msgstr[2] " %d wiadomości" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Wiadomość nie jest dostępna." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Odpowiedz" + +#: ../../mod/like.php:170 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nie lubi %2$s's %3$s" + #: ../../mod/oexchange.php:25 msgid "Post successful." msgstr "Post dodany pomyślnie" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "błąd OpenID . Brak zwróconego ID. " +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:393 +msgid "l F d, Y \\@ g:i A" +msgstr "" -#: ../../mod/openid.php:53 +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zmiana czasu" + +#: ../../mod/localtime.php:26 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie." +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Czas UTC %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Obecna strefa czasowa: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zmień strefę czasową: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Wybierz swoją strefę czasową:" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1001 +#: ../../include/conversation.php:1019 +msgid "Save to Folder:" +msgstr "Zapisz w folderze:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- wybierz -" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Nieprawidłowa nazwa użytkownika." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Ustawienia widoczności profilu" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Widoczne dla" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "brak kontaktów" + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:850 +msgid "View Contacts" +msgstr "widok kontaktów" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Szukaj osób" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "brak dopasowań" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Wyślij nowe zdjęcie" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "Informacje o kontakcie nie dostępne." + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album nie znaleziony" + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Usuń album" + +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Usuń zdjęcie" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" + +#: ../../mod/photos.php:656 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "zdjęcie" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "obrazek przekracza limit rozmiaru" + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: ../../mod/photos.php:801 ../../mod/wall_upload.php:112 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Przetwarzanie obrazu nie powiodło się." + +#: ../../mod/photos.php:828 ../../mod/wall_upload.php:138 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Przesyłanie obrazu nie powiodło się" + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Nie zaznaczono zdjęć" + +#: ../../mod/photos.php:1025 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Dostęp do tego obiektu jest ograniczony." + +#: ../../mod/photos.php:1088 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Prześlij zdjęcia" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nazwa nowego albumu:" + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "lub istniejąca nazwa albumu:" + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Nie pokazuj postów statusu dla tego wysłania" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Uprawnienia" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "Zdjęcie prywatne" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "Zdjęcie publiczne" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Edytuj album" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Najpierw pokaż najnowsze" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Najpierw pokaż najstarsze" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Zobacz zdjęcie" + +#: ../../mod/photos.php:1286 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Zdjęcie niedostępne" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Zobacz zdjęcie" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Edytuj zdjęcie" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Ustaw jako zdjęcie profilowe" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Zobacz w pełnym rozmiarze" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tagi:" + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Usunąć znacznik]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "Obróć CW (w prawo)" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "Obróć CCW (w lewo)" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nazwa nowego albumu" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Zawartość" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Dodaj tag" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "Prywatne zdjęcie." + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "Zdjęcie publiczne" + +#: ../../mod/photos.php:1531 ../../include/conversation.php:1080 +msgid "Share" +msgstr "Podziel się" + +#: ../../mod/photos.php:1784 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Zobacz album" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Plik przekracza dozwolony rozmiar %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nie zaznaczono filmów" + +#: ../../mod/videos.php:301 ../../include/text.php:1376 +msgid "View Video" +msgstr "Zobacz film" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Ostatnio dodane filmy" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Wstaw nowe filmy" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Zrób ten post prywatnym" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "Eksportuj konto" + +#: ../../mod/uexport.php:72 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "Eksportuj wszystko" + +#: ../../mod/uexport.php:73 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Wspólni znajomi" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Brak wspólnych kontaktów." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Rozmiar obrazka przekracza limit %d" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:446 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Tablica zdjęć" #: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." @@ -6756,397 +5062,2243 @@ msgstr "Zakończ Edycję " msgid "Image uploaded successfully." msgstr "Zdjęcie wczytano pomyślnie " -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niedostępne." +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplikacje" -#: ../../mod/content.php:626 ../../object/Item.php:362 +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Brak zainstalowanych aplikacji." + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Brak nowych zdarzeń" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Wyczyść powiadomienia" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profil zgodny " + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "interesuje się:" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag usunięty" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Usuń pozycję Tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wybierz tag do usunięcia" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Usuń" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "d, M d " + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Edytuj wydarzenie" + +#: ../../mod/events.php:335 ../../include/text.php:1606 +msgid "link to source" +msgstr "link do źródła" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Poprzedni" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "godzina:minuta" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: ../../mod/events.php:457 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] " %d komentarz" -msgstr[1] " %d komentarzy" -msgstr[2] " %d komentarzy" +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Wymagany format %s %s. Data rozpoczęcia i Tytuł są konieczne." -#: ../../mod/content.php:707 ../../object/Item.php:232 -msgid "like" -msgstr "polub" +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Rozpoczęcie wydarzenia:" -#: ../../mod/content.php:708 ../../object/Item.php:233 -msgid "dislike" -msgstr "Nie lubię" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Wymagany" -#: ../../mod/content.php:710 ../../object/Item.php:235 -msgid "Share this" -msgstr "Udostępnij to" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" -#: ../../mod/content.php:710 ../../object/Item.php:235 -msgid "share" -msgstr "udostępnij" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" -#: ../../mod/content.php:734 ../../object/Item.php:654 -msgid "Bold" -msgstr "Pogrubienie" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Dopasuj dla strefy czasowej widza" -#: ../../mod/content.php:735 ../../object/Item.php:655 -msgid "Italic" -msgstr "Kursywa" +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Opis:" -#: ../../mod/content.php:736 ../../object/Item.php:656 -msgid "Underline" -msgstr "Podkreślenie" +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Tytuł:" -#: ../../mod/content.php:737 ../../object/Item.php:657 -msgid "Quote" -msgstr "Cytat" +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" -#: ../../mod/content.php:738 ../../object/Item.php:658 -msgid "Code" -msgstr "Kod" - -#: ../../mod/content.php:739 ../../object/Item.php:659 -msgid "Image" -msgstr "Obraz" - -#: ../../mod/content.php:740 ../../object/Item.php:660 -msgid "Link" -msgstr "Link" - -#: ../../mod/content.php:741 ../../object/Item.php:661 -msgid "Video" -msgstr "Video" - -#: ../../mod/content.php:776 ../../object/Item.php:211 -msgid "add star" -msgstr "dodaj gwiazdkę" - -#: ../../mod/content.php:777 ../../object/Item.php:212 -msgid "remove star" -msgstr "anuluj gwiazdkę" - -#: ../../mod/content.php:778 ../../object/Item.php:213 -msgid "toggle star status" -msgstr "włącz status gwiazdy" - -#: ../../mod/content.php:781 ../../object/Item.php:216 -msgid "starred" -msgstr "gwiazdką" - -#: ../../mod/content.php:782 ../../object/Item.php:221 -msgid "add tag" -msgstr "dodaj tag" - -#: ../../mod/content.php:786 ../../object/Item.php:130 -msgid "save to folder" -msgstr "zapisz w folderze" - -#: ../../mod/content.php:877 ../../object/Item.php:308 -msgid "to" -msgstr "do" - -#: ../../mod/content.php:878 ../../object/Item.php:310 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../mod/content.php:879 ../../object/Item.php:311 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../object/Item.php:92 -msgid "This entry was edited" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../object/Item.php:309 -msgid "via" -msgstr "przez" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:154 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -msgid "Theme settings" -msgstr "Ustawienia motywu" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: ../../mod/delegate.php:121 ../../include/nav.php:165 +msgid "Delegate Page Management" msgstr "" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:155 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Ustaw rozmiar fontów dla postów i komentarzy" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Ustaw szerokość motywu" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Zestaw kolorów" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "Zestaw kolorów" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:609 -msgid "Set twitter search term" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" msgstr "" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:578 -msgid "Set longitude (X) for Earth Layers" +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Dodaj" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Brak wpisów." + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakty spoza członków grupy" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Pliki" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" msgstr "" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:579 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Usuń konto" -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:94 -#: ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:632 -msgid "Community Pages" -msgstr "Strony społecznościowe" +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane." -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -msgid "Earth Layers" -msgstr "" +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji." -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -msgid "Community Profiles" -msgstr "" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Propozycja znajomych wysłana." -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -msgid "Help or @NewHere ?" -msgstr "" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Zaproponuj znajomych" -#: ../../view/theme/diabook/config.php:167 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -msgid "Connect Services" -msgstr "Połączone serwisy" - -#: ../../view/theme/diabook/config.php:168 -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -msgid "Find Friends" -msgstr "Znajdź znajomych" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "Ostatnie tweetnięcie" - -#: ../../view/theme/diabook/config.php:170 -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -msgid "Last users" -msgstr "Ostatni użytkownicy" - -#: ../../view/theme/diabook/config.php:171 -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -msgid "Last photos" -msgstr "Ostatnie zdjęcia" - -#: ../../view/theme/diabook/config.php:172 -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -msgid "Last likes" -msgstr "Ostatnie polubienia" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "Twoje kontakty" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "Ostatnie Tweetnięcie" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Zestaw kolorów" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Wyrównanie" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Lewo" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Środek" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../index.php:405 -msgid "toggle mobile" -msgstr "przełącz na mobilny" - -#: ../../boot.php:673 -msgid "Delete this item?" -msgstr "Usunąć ten element?" - -#: ../../boot.php:676 -msgid "show fewer" -msgstr "Pokaż mniej" - -#: ../../boot.php:1003 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Update %s failed. See error logs." -msgstr "" +msgid "Suggest a friend for %s" +msgstr "Zaproponuj znajomych dla %s" -#: ../../boot.php:1005 +#: ../../mod/item.php:108 +msgid "Unable to locate original post." +msgstr "Nie można zlokalizować oryginalnej wiadomości." + +#: ../../mod/item.php:310 +msgid "Empty post discarded." +msgstr "Pusty wpis wyrzucony." + +#: ../../mod/item.php:872 +msgid "System error. Post not saved." +msgstr "Błąd. Post niezapisany." + +#: ../../mod/item.php:897 #, php-format -msgid "Update Error at %s" +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica" + +#: ../../mod/item.php:899 +#, php-format +msgid "You may visit them online at %s" +msgstr "Możesz ich odwiedzić online u %s" + +#: ../../mod/item.php:900 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." + +#: ../../mod/item.php:904 +#, php-format +msgid "%s posted an update." +msgstr "%s zaktualizował wpis." + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} chce być Twoim znajomym" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} wysyła Ci wiadomość" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} żądana rejestracja" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} skomentował %s wpis" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} polubił wpis %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} przestał lubić post %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} jest teraz znajomym %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} utworzony" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} zaznaczony %s'go post z #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} wspomniał Cię w swoim wpisie" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "błąd OpenID . Brak zwróconego ID. " + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie." + +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Niepowodzenie logowania" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Niewłaściwy identyfikator wymagania." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Odrzuć" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:83 ../../include/nav.php:140 +msgid "Network" +msgstr "Sieć" + +#: ../../mod/notifications.php:98 ../../include/nav.php:149 +msgid "Introductions" +msgstr "Wstępy" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Pokaż ignorowane żądania" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Ukryj ignorowane żądania" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Typ zawiadomień:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Propozycja znajomych" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "zaproponowane przez %s" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Pisz o nowej działalności przyjaciela" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "jeśli odpowiednie" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Twierdzi, że go znasz:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "tak" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nie" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Zatwierdź jako:" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Znajomy" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Udostępniający/a" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Prośba o dodanie do przyjaciół/powiązanych" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nowy obserwator" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Brak wstępu." + +#: ../../mod/notifications.php:220 ../../include/nav.php:150 +msgid "Notifications" +msgstr "Powiadomienia" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s polubił wpis %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s przestał lubić post %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s jest teraz znajomym %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s dodał nowy wpis" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s skomentował wpis %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nie ma więcej powiadomień sieciowych" + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Powiadomienia z sieci" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nie ma więcej powiadomień osobistych" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Prywatne powiadomienia" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Nie ma więcej powiadomień domu" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Powiadomienia z instancji" + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../boot.php:1115 -msgid "Create a New Account" -msgstr "Załóż nowe konto" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Niepoprawny adres email." -#: ../../boot.php:1143 -msgid "Nickname or Email address: " -msgstr "Nick lub adres email:" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Dołącz do nas na Friendica" -#: ../../boot.php:1144 -msgid "Password: " -msgstr "Hasło:" - -#: ../../boot.php:1145 -msgid "Remember me" -msgstr "Zapamiętaj mnie" - -#: ../../boot.php:1148 -msgid "Or login using OpenID: " -msgstr "Lub zaloguj się korzystając z OpenID:" - -#: ../../boot.php:1154 -msgid "Forgot your password?" -msgstr "Zapomniałeś swojego hasła?" - -#: ../../boot.php:1157 -msgid "Website Terms of Service" +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../boot.php:1158 -msgid "terms of service" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Dostarczenie wiadomości nieudane." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d wiadomość wysłana." +msgstr[1] "%d wiadomości wysłane." +msgstr[2] "%d wysłano ." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nie masz więcej zaproszeń" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." msgstr "" -#: ../../boot.php:1160 -msgid "Website Privacy Policy" +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: ../../boot.php:1161 -msgid "privacy policy" -msgstr "polityka prywatności" - -#: ../../boot.php:1290 -msgid "Requested account is not available." +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." msgstr "" -#: ../../boot.php:1369 ../../boot.php:1473 -msgid "Edit profile" -msgstr "Edytuj profil" - -#: ../../boot.php:1435 -msgid "Message" -msgstr "Wiadomość" - -#: ../../boot.php:1443 -msgid "Manage/edit profiles" -msgstr "Zarządzaj profilami" - -#: ../../boot.php:1572 ../../boot.php:1658 -msgid "g A l F d" -msgstr "g A I F d" - -#: ../../boot.php:1573 ../../boot.php:1659 -msgid "F d" +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." msgstr "" -#: ../../boot.php:1618 ../../boot.php:1699 -msgid "[today]" -msgstr "[dziś]" +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Wyślij zaproszenia" -#: ../../boot.php:1630 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Wprowadź adresy email, jeden na linijkę:" -#: ../../boot.php:1631 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" - -#: ../../boot.php:1692 -msgid "[No description]" -msgstr "[Brak opisu]" - -#: ../../boot.php:1710 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" - -#: ../../boot.php:1711 -msgid "Events this week:" -msgstr "Wydarzenia w tym tygodniu:" - -#: ../../boot.php:1947 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" - -#: ../../boot.php:1954 -msgid "Profile Details" -msgstr "Szczegóły profilu" - -#: ../../boot.php:1965 ../../boot.php:1968 -msgid "Videos" +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." msgstr "" -#: ../../boot.php:1978 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" -#: ../../boot.php:1985 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Zarządzaj Tożsamościami i/lub Stronami." + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wybierz tożsamość do zarządzania:" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Witamy w %s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Znajomy %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Brak znajomych do wyświetlenia" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Dodaj nowy kontakt" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Wpisz adres lub lokalizację sieciową" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d zaproszenie dostępne" +msgstr[1] "%d zaproszeń dostępnych" +msgstr[2] "%d zaproszenia dostępne" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Znajdź ludzi" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Wpisz nazwę lub zainteresowanie" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Połącz/Obserwuj" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Przykładowo: Jan Kowalski, Wędkarstwo" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Domyślny profil" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Sieci" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Wszystkie Sieci" + +#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +msgid "Saved Folders" +msgstr "Zapisane foldery" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Wszystko" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Kategorie" + +#: ../../include/plugin.php:454 ../../include/plugin.php:456 +msgid "Click here to upgrade." +msgstr "Kliknij tu, aby zaktualizować." + +#: ../../include/plugin.php:462 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:467 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/network.php:883 +msgid "view full size" +msgstr "Zobacz w pełnym wymiarze" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +msgid "Finishes:" +msgstr "Wykończenia:" + +#: ../../include/notifier.php:774 ../../include/delivery.php:457 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: ../../include/notifier.php:784 ../../include/enotify.php:28 +#: ../../include/delivery.php:468 +msgid "noreply" +msgstr "brak odpowiedzi" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Wymagane zaproszenie." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Zaproszenie niezweryfikowane." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Nieprawidłowy adres url OpenID" + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "The error message was:" +msgstr "Komunikat o błędzie:" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "Wprowadź wymagane informacje" + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "Użyj dłuższej nazwy." + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "Nazwa jest za krótka." + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)." + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "Niepoprawny adres e mail.." + +#: ../../include/user.php:122 +msgid "Cannot use that email." +msgstr "Nie możesz użyć tego e-maila. " + +#: ../../include/user.php:128 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę." + +#: ../../include/user.php:134 ../../include/user.php:232 +msgid "Nickname is already registered. Please choose another." +msgstr "Ten login jest zajęty. Wybierz inny." + +#: ../../include/user.php:144 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie." + +#: ../../include/user.php:160 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." + +#: ../../include/user.php:218 +msgid "An error occurred during registration. Please try again." +msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." + +#: ../../include/user.php:253 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." + +#: ../../include/user.php:285 ../../include/user.php:289 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Przyjaciele" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:211 ../../include/text.php:979 +msgid "poked" +msgstr "zaczepiony" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:767 +msgid "remove" +msgstr "usuń" + +#: ../../include/conversation.php:771 +msgid "Delete Selected Items" +msgstr "Usuń zaznaczone elementy" + +#: ../../include/conversation.php:870 +msgid "Follow Thread" +msgstr "Śledź wątek" + +#: ../../include/conversation.php:871 ../../include/Contact.php:228 +msgid "View Status" +msgstr "Zobacz status" + +#: ../../include/conversation.php:872 ../../include/Contact.php:229 +msgid "View Profile" +msgstr "Zobacz profil" + +#: ../../include/conversation.php:873 ../../include/Contact.php:230 +msgid "View Photos" +msgstr "Zobacz zdjęcia" + +#: ../../include/conversation.php:874 ../../include/Contact.php:231 +#: ../../include/Contact.php:254 +msgid "Network Posts" +msgstr "" + +#: ../../include/conversation.php:875 ../../include/Contact.php:232 +#: ../../include/Contact.php:254 +msgid "Edit Contact" +msgstr "Edytuj kontakt" + +#: ../../include/conversation.php:876 ../../include/Contact.php:234 +#: ../../include/Contact.php:254 +msgid "Send PM" +msgstr "Wyślij prywatną wiadomość" + +#: ../../include/conversation.php:877 ../../include/Contact.php:227 +msgid "Poke" +msgstr "Zaczepka" + +#: ../../include/conversation.php:939 +#, php-format +msgid "%s likes this." +msgstr "%s lubi to." + +#: ../../include/conversation.php:939 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nie lubi tego." + +#: ../../include/conversation.php:944 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: ../../include/conversation.php:947 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: ../../include/conversation.php:961 +msgid "and" +msgstr "i" + +#: ../../include/conversation.php:967 +#, php-format +msgid ", and %d other people" +msgstr ", i %d innych ludzi" + +#: ../../include/conversation.php:969 +#, php-format +msgid "%s like this." +msgstr "%s lubi to." + +#: ../../include/conversation.php:969 +#, php-format +msgid "%s don't like this." +msgstr "%s nie lubi tego." + +#: ../../include/conversation.php:996 ../../include/conversation.php:1014 +msgid "Visible to everybody" +msgstr "Widoczne dla wszystkich" + +#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +msgid "Please enter a video link/URL:" +msgstr "Podaj link do filmu" + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Please enter an audio link/URL:" +msgstr "Podaj link do muzyki" + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Where are you right now?" +msgstr "Gdzie teraz jesteś?" + +#: ../../include/conversation.php:1003 +msgid "Delete item(s)?" +msgstr "Usunąć pozycję (pozycje)?" + +#: ../../include/conversation.php:1045 +msgid "Post to Email" +msgstr "Wyślij poprzez email" + +#: ../../include/conversation.php:1101 +msgid "permissions" +msgstr "zezwolenia" + +#: ../../include/conversation.php:1125 +msgid "Post to Groups" +msgstr "Wstaw na strony grup" + +#: ../../include/conversation.php:1126 +msgid "Post to Contacts" +msgstr "Wstaw do kontaktów" + +#: ../../include/conversation.php:1127 +msgid "Private post" +msgstr "Prywatne posty" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Wyloguj" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Błąd podczas odczytu pliku konta" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Użytkownik '%s' już istnieje na tym serwerze!" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "Nie zaimportowano %d kontaktu." +msgstr[1] "Nie zaimportowano %d kontaktów." +msgstr[2] "Nie zaimportowano %d kontaktów." + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła." + +#: ../../include/text.php:293 +msgid "newer" +msgstr "nowsze" + +#: ../../include/text.php:295 +msgid "older" +msgstr "starsze" + +#: ../../include/text.php:300 +msgid "prev" +msgstr "poprzedni" + +#: ../../include/text.php:302 +msgid "first" +msgstr "pierwszy" + +#: ../../include/text.php:334 +msgid "last" +msgstr "ostatni" + +#: ../../include/text.php:337 +msgid "next" +msgstr "następny" + +#: ../../include/text.php:829 +msgid "No contacts" +msgstr "Brak kontaktów" + +#: ../../include/text.php:838 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktów" +msgstr[2] "%d kontakty" + +#: ../../include/text.php:979 +msgid "poke" +msgstr "zaczep" + +#: ../../include/text.php:980 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:980 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:981 +msgid "prod" +msgstr "" + +#: ../../include/text.php:981 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:982 +msgid "slap" +msgstr "spoliczkuj" + +#: ../../include/text.php:982 +msgid "slapped" +msgstr "spoliczkowany" + +#: ../../include/text.php:983 +msgid "finger" +msgstr "dotknąć" + +#: ../../include/text.php:983 +msgid "fingered" +msgstr "dotknięty" + +#: ../../include/text.php:984 +msgid "rebuff" +msgstr "odprawiać" + +#: ../../include/text.php:984 +msgid "rebuffed" +msgstr "odprawiony" + +#: ../../include/text.php:998 +msgid "happy" +msgstr "szczęśliwy" + +#: ../../include/text.php:999 +msgid "sad" +msgstr "smutny" + +#: ../../include/text.php:1000 +msgid "mellow" +msgstr "spokojny" + +#: ../../include/text.php:1001 +msgid "tired" +msgstr "zmęczony" + +#: ../../include/text.php:1002 +msgid "perky" +msgstr "pewny siebie" + +#: ../../include/text.php:1003 +msgid "angry" +msgstr "wściekły" + +#: ../../include/text.php:1004 +msgid "stupified" +msgstr "odurzony" + +#: ../../include/text.php:1005 +msgid "puzzled" +msgstr "zdziwiony" + +#: ../../include/text.php:1006 +msgid "interested" +msgstr "interesujący" + +#: ../../include/text.php:1007 +msgid "bitter" +msgstr "zajadły" + +#: ../../include/text.php:1008 +msgid "cheerful" +msgstr "wesoły" + +#: ../../include/text.php:1009 +msgid "alive" +msgstr "żywy" + +#: ../../include/text.php:1010 +msgid "annoyed" +msgstr "irytujący" + +#: ../../include/text.php:1011 +msgid "anxious" +msgstr "zazdrosny" + +#: ../../include/text.php:1012 +msgid "cranky" +msgstr "zepsuty" + +#: ../../include/text.php:1013 +msgid "disturbed" +msgstr "przeszkadzający" + +#: ../../include/text.php:1014 +msgid "frustrated" +msgstr "rozbity" + +#: ../../include/text.php:1015 +msgid "motivated" +msgstr "zmotywowany" + +#: ../../include/text.php:1016 +msgid "relaxed" +msgstr "zrelaksowany" + +#: ../../include/text.php:1017 +msgid "surprised" +msgstr "zaskoczony" + +#: ../../include/text.php:1185 +msgid "Monday" +msgstr "Poniedziałek" + +#: ../../include/text.php:1185 +msgid "Tuesday" +msgstr "Wtorek" + +#: ../../include/text.php:1185 +msgid "Wednesday" +msgstr "Środa" + +#: ../../include/text.php:1185 +msgid "Thursday" +msgstr "Czwartek" + +#: ../../include/text.php:1185 +msgid "Friday" +msgstr "Piątek" + +#: ../../include/text.php:1185 +msgid "Saturday" +msgstr "Sobota" + +#: ../../include/text.php:1185 +msgid "Sunday" +msgstr "Niedziela" + +#: ../../include/text.php:1189 +msgid "January" +msgstr "Styczeń" + +#: ../../include/text.php:1189 +msgid "February" +msgstr "Luty" + +#: ../../include/text.php:1189 +msgid "March" +msgstr "Marzec" + +#: ../../include/text.php:1189 +msgid "April" +msgstr "Kwiecień" + +#: ../../include/text.php:1189 +msgid "May" +msgstr "Maj" + +#: ../../include/text.php:1189 +msgid "June" +msgstr "Czerwiec" + +#: ../../include/text.php:1189 +msgid "July" +msgstr "Lipiec" + +#: ../../include/text.php:1189 +msgid "August" +msgstr "Sierpień" + +#: ../../include/text.php:1189 +msgid "September" +msgstr "Wrzesień" + +#: ../../include/text.php:1189 +msgid "October" +msgstr "Październik" + +#: ../../include/text.php:1189 +msgid "November" +msgstr "Listopad" + +#: ../../include/text.php:1189 +msgid "December" +msgstr "Grudzień" + +#: ../../include/text.php:1408 +msgid "bytes" +msgstr "bajty" + +#: ../../include/text.php:1432 ../../include/text.php:1444 +msgid "Click to open/close" +msgstr "Kliknij aby otworzyć/zamknąć" + +#: ../../include/text.php:1661 +msgid "Select an alternate language" +msgstr "Wybierz alternatywny język" + +#: ../../include/text.php:1917 +msgid "activity" +msgstr "aktywność" + +#: ../../include/text.php:1920 +msgid "post" +msgstr "post" + +#: ../../include/text.php:2075 +msgid "Item filed" +msgstr "" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Powiadomienia Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Dziękuję," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s administrator" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s wysyła ci %2$s" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "prywatna wiadomość" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości" + +#: ../../include/enotify.php:90 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s skomentował [url=%2$s]a %3$s[/url]" + +#: ../../include/enotify.php:97 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: ../../include/enotify.php:105 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:115 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:116 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skomentował rozmowę którą śledzisz" + +#: ../../include/enotify.php:119 ../../include/enotify.php:134 +#: ../../include/enotify.php:147 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę" + +#: ../../include/enotify.php:126 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s napisał na twoim profilu" + +#: ../../include/enotify.php:128 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:130 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:141 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s oznaczył cię" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s oznaczył/a cię w %2$s" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: ../../include/enotify.php:185 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:187 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:190 ../../include/enotify.php:208 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Możesz obejrzeć ich profile na %s" + +#: ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:201 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:206 +msgid "Name:" +msgstr "Imię:" + +#: ../../include/enotify.php:207 +msgid "Photo:" +msgstr "Zdjęcie:" + +#: ../../include/enotify.php:210 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "na Last.fm" + +#: ../../include/group.php:25 +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." +msgstr "" + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Wszyscy" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "edytuj" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Edytuj grupy" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Stwórz nową grupę" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakt nie jest w żadnej grupie" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Brak adresu URL połączenia." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Autor lub nazwa nie zostało znalezione." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nie można otrzymać informacji kontaktowych" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "następujący" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[bez tematu]" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Zakończ sesję" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Zaloguj się" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Strona startowa" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Załóż konto" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Pomoc i dokumentacja" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Aplikacje" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Wtyczki, aplikacje, narzędzia, gry" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Przeszukaj zawartość strony" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Rozmowy na tej stronie" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Katalog" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Rozmowy Twoich przyjaciół" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Podania o przyjęcie do grona znajomych" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Zobacz wszystkie powiadomienia" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Prywatne maile" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "Odebrane" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Wysłane" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "Zarządzaj" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "Zarządzaj innymi stronami" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "Zarządzaj/Edytuj profile" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Zarządzaj listą przyjaciół i kontaktami" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Konfiguracja i ustawienia instancji" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "Nawigacja" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "Mapa strony" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "d M, R" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "d M" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Urodziny:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Wiek:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "od %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tagi:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religia:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Zainteresowania:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informacje kontaktowe i sieci społeczne" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Zainteresowania muzyczne:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Książki, literatura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Telewizja:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/taniec/kultura/rozrywka" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Miłość/Romans:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Praca/zatrudnienie:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Szkoła/edukacja:" + +#: ../../include/bbcode.php:215 ../../include/bbcode.php:614 +#: ../../include/bbcode.php:615 +msgid "Image/photo" +msgstr "Obrazek/zdjęcie" + +#: ../../include/bbcode.php:279 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: ../../include/bbcode.php:578 ../../include/bbcode.php:598 +msgid "$1 wrote:" +msgstr "$1 napisał:" + +#: ../../include/bbcode.php:625 ../../include/bbcode.php:626 +msgid "Encrypted content" +msgstr "Szyfrowana treść" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Nieznany | Bez kategori" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Zablokować natychmiast " + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znam, ale nie mam zdania" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Ok, bez problemów" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Zaufane, ma moje poparcie" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Tygodniowo" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Miesięcznie" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Różny" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "rok" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "miesiąc" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "dzień" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nigdy" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "mniej niż sekundę temu" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "lata" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "miesiące" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "tydzień" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "tygodnie" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dni" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "godzina" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "godziny" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuta" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minuty" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "sekunda" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "sekundy" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s temu" + +#: ../../include/datetime.php:472 ../../include/items.php:1829 +#, php-format +msgid "%s's birthday" +msgstr "Urodziny %s" + +#: ../../include/datetime.php:473 ../../include/items.php:1830 +#, php-format +msgid "Happy Birthday %s" +msgstr "Urodziny %s" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Podgląd posta" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "Szukanie wg daty" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "Filtrowanie grupowe" + +#: ../../include/features.php:39 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:48 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "" + +#: ../../include/features.php:49 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "Oznaczanie" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "Dodaj kategorie do twoich postów" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "Oznacz posty gwiazdką" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Wspólne powiadomienie z sieci Diaspora" + +#: ../../include/diaspora.php:2264 +msgid "Attachments:" +msgstr "Załączniki:" + +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Widoczny dla wszystkich" + +#: ../../include/items.php:3511 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:3511 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/items.php:4034 +msgid "Do you really want to delete this item?" +msgstr "" + +#: ../../include/items.php:4257 +msgid "Archives" +msgstr "Archiwum" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "Osadzona zawartość" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Osadzanie wyłączone" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Witaj " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Proszę dodać zdjęcie profilowe." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Witaj ponownie " + +#: ../../include/security.php:366 +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 "" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Mężczyzna" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Kobieta" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Aktualnie Mężczyzna" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Aktualnie Kobieta" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Bardziej Mężczyzna" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Bardziej Kobieta" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transpłciowy" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Międzypłciowy" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksualista" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodyta" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Bezpłciowy" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niespecyficzne" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Inne" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Niezdecydowany" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Mężczyźni" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Kobiety" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gej" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbijka" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Brak preferencji" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Biseksualny" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Niezidentyfikowany" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstynent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Dziewica" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Zboczeniec" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetysz" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Nadmiar" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nieseksualny" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Singiel" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Samotny" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Dostępny" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Niedostępny" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "zakochany" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Randki" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Niewierny" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Uzależniony od seksu" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Przyjaciele/Korzyści" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Przypadkowy" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Zaręczeni" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Małżeństwo" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Fikcyjnie w związku małżeńskim" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partnerzy" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Konkubinat" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Szczęśliwy" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Zdradzony" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "W separacji" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Niestabilny" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Rozwiedzeni" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Fikcyjnie rozwiedziony/a" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Wdowiec" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Nieokreślony" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "To skomplikowane" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nie obchodzi mnie to" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Zapytaj mnie " + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "przestań obserwować" + +#: ../../include/Contact.php:233 +msgid "Drop Contact" +msgstr "" + +#: ../../include/dba.php:44 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'" diff --git a/view/pl/strings.php b/view/pl/strings.php index 3ed01442a6..9338d5bf10 100644 --- a/view/pl/strings.php +++ b/view/pl/strings.php @@ -5,473 +5,64 @@ function string_plural_select_pl($n){ return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; }} ; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Imię i nazwisko:"; -$a->strings["Gender:"] = "Płeć:"; -$a->strings["j F, Y"] = "d M, R"; -$a->strings["j F"] = "d M"; -$a->strings["Birthday:"] = "Urodziny:"; -$a->strings["Age:"] = "Wiek:"; -$a->strings["Status:"] = "Status"; -$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Interesują mnie:"; -$a->strings["Homepage:"] = "Strona główna:"; -$a->strings["Hometown:"] = "Miasto rodzinne:"; -$a->strings["Tags:"] = "Tagi:"; -$a->strings["Political Views:"] = "Poglądy polityczne:"; -$a->strings["Religion:"] = "Religia:"; -$a->strings["About:"] = "O:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; -$a->strings["Likes:"] = "Lubi:"; -$a->strings["Dislikes:"] = ""; -$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; -$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; -$a->strings["Books, literature:"] = "Książki, literatura:"; -$a->strings["Television:"] = "Telewizja:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/Romance:"] = "Miłość/Romans:"; -$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; -$a->strings["School/education:"] = "Szkoła/edukacja:"; -$a->strings["Male"] = "Mężczyzna"; -$a->strings["Female"] = "Kobieta"; -$a->strings["Currently Male"] = "Aktualnie Mężczyzna"; -$a->strings["Currently Female"] = "Aktualnie Kobieta"; -$a->strings["Mostly Male"] = "Bardziej Mężczyzna"; -$a->strings["Mostly Female"] = "Bardziej Kobieta"; -$a->strings["Transgender"] = "Transpłciowy"; -$a->strings["Intersex"] = "Międzypłciowy"; -$a->strings["Transsexual"] = "Transseksualista"; -$a->strings["Hermaphrodite"] = "Hermafrodyta"; -$a->strings["Neuter"] = "Bezpłciowy"; -$a->strings["Non-specific"] = "Niespecyficzne"; -$a->strings["Other"] = "Inne"; -$a->strings["Undecided"] = "Niezdecydowany"; -$a->strings["Males"] = "Mężczyźni"; -$a->strings["Females"] = "Kobiety"; -$a->strings["Gay"] = "Gej"; -$a->strings["Lesbian"] = "Lesbijka"; -$a->strings["No Preference"] = "Brak preferencji"; -$a->strings["Bisexual"] = "Biseksualny"; -$a->strings["Autosexual"] = "Niezidentyfikowany"; -$a->strings["Abstinent"] = "Abstynent"; -$a->strings["Virgin"] = "Dziewica"; -$a->strings["Deviant"] = "Zboczeniec"; -$a->strings["Fetish"] = "Fetysz"; -$a->strings["Oodles"] = "Nadmiar"; -$a->strings["Nonsexual"] = "Nieseksualny"; -$a->strings["Single"] = "Singiel"; -$a->strings["Lonely"] = "Samotny"; -$a->strings["Available"] = "Dostępny"; -$a->strings["Unavailable"] = "Niedostępny"; -$a->strings["Has crush"] = ""; -$a->strings["Infatuated"] = "zakochany"; -$a->strings["Dating"] = "Randki"; -$a->strings["Unfaithful"] = "Niewierny"; -$a->strings["Sex Addict"] = "Uzależniony od seksu"; -$a->strings["Friends"] = "Przyjaciele"; -$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; -$a->strings["Casual"] = "Przypadkowy"; -$a->strings["Engaged"] = "Zaręczeni"; -$a->strings["Married"] = "Małżeństwo"; -$a->strings["Imaginarily married"] = ""; -$a->strings["Partners"] = "Partnerzy"; -$a->strings["Cohabiting"] = "Konkubinat"; -$a->strings["Common law"] = ""; -$a->strings["Happy"] = "Szczęśliwy"; -$a->strings["Not looking"] = ""; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Zdradzony"; -$a->strings["Separated"] = "W separacji"; -$a->strings["Unstable"] = "Niestabilny"; -$a->strings["Divorced"] = "Rozwiedzeni"; -$a->strings["Imaginarily divorced"] = ""; -$a->strings["Widowed"] = "Wdowiec"; -$a->strings["Uncertain"] = "Nieokreślony"; -$a->strings["It's complicated"] = "To skomplikowane"; -$a->strings["Don't care"] = "Nie obchodzi mnie to"; -$a->strings["Ask me"] = "Zapytaj mnie "; -$a->strings["stopped following"] = "przestań obserwować"; -$a->strings["Poke"] = "Zaczepka"; -$a->strings["View Status"] = "Zobacz status"; -$a->strings["View Profile"] = "Zobacz profil"; -$a->strings["View Photos"] = "Zobacz zdjęcia"; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = "Edytuj kontakt"; -$a->strings["Send PM"] = "Wyślij prywatną wiadomość"; -$a->strings["Image/photo"] = "Obrazek/zdjęcie"; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 napisał:"; -$a->strings["Encrypted content"] = ""; -$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; -$a->strings["show"] = "pokaż"; -$a->strings["don't show"] = "nie pokazuj"; -$a->strings["Logged out."] = "Wyloguj"; -$a->strings["Login failed."] = "Niepowodzenie logowania"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = "Komunikat o błędzie:"; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Starts:"] = "Start:"; -$a->strings["Finishes:"] = "Wykończenia:"; -$a->strings["Location:"] = "Lokalizacja"; -$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; -$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; -$a->strings["No compatible communication protocols or feeds were discovered."] = ""; -$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; -$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; -$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; -$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; -$a->strings["following"] = "następujący"; -$a->strings["An invitation is required."] = "Wymagane zaproszenie."; -$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; -$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; -$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; -$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; -$a->strings["Name too short."] = "Nazwa jest za krótka."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; -$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; -$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę."; -$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; -$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; -$a->strings["default"] = "standardowe"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; -$a->strings["Profile Photos"] = "Zdjęcia profilowe"; -$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori"; -$a->strings["Block immediately"] = "Zablokować natychmiast "; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania"; -$a->strings["OK, probably harmless"] = "Ok, bez problemów"; -$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie"; -$a->strings["Frequently"] = "Jak najczęściej"; -$a->strings["Hourly"] = "Godzinowo"; -$a->strings["Twice daily"] = "Dwa razy dziennie"; -$a->strings["Daily"] = "Dziennie"; -$a->strings["Weekly"] = "Tygodniowo"; -$a->strings["Monthly"] = "Miesięcznie"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; -$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; -$a->strings["Connect"] = "Połącz"; -$a->strings["%d invitation available"] = array( - 0 => "%d zaproszenie dostępne", - 1 => "%d zaproszeń dostępnych", - 2 => "%d zaproszenia dostępne", +$a->strings["This entry was edited"] = "Ten wpis został zedytowany"; +$a->strings["Private Message"] = "Wiadomość prywatna"; +$a->strings["Edit"] = "Edytuj"; +$a->strings["Select"] = "Wybierz"; +$a->strings["Delete"] = "Usuń"; +$a->strings["save to folder"] = "zapisz w folderze"; +$a->strings["add star"] = "dodaj gwiazdkę"; +$a->strings["remove star"] = "anuluj gwiazdkę"; +$a->strings["toggle star status"] = "włącz status gwiazdy"; +$a->strings["starred"] = "gwiazdką"; +$a->strings["add tag"] = "dodaj tag"; +$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; +$a->strings["like"] = "polub"; +$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)"; +$a->strings["dislike"] = "Nie lubię"; +$a->strings["Share this"] = "Udostępnij to"; +$a->strings["share"] = "udostępnij"; +$a->strings["Categories:"] = "Kategorie:"; +$a->strings["Filed under:"] = "Zapisano pod:"; +$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; +$a->strings["to"] = "do"; +$a->strings["via"] = "przez"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["Comment"] = "Komentarz"; +$a->strings["Please wait"] = "Proszę czekać"; +$a->strings["%d comment"] = array( + 0 => " %d komentarz", + 1 => " %d komentarzy", + 2 => " %d komentarzy", ); -$a->strings["Find People"] = "Znajdź ludzi"; -$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; -$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowalski, Wędkarstwo"; -$a->strings["Find"] = "Znajdź"; -$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; -$a->strings["Similar Interests"] = "Podobne zainteresowania"; -$a->strings["Random Profile"] = "Domyślny profil"; -$a->strings["Invite Friends"] = "Zaproś znajomych"; -$a->strings["Networks"] = "Sieci"; -$a->strings["All Networks"] = "Wszystkie Sieci"; -$a->strings["Saved Folders"] = "Zapisane foldery"; -$a->strings["Everything"] = "Wszystko"; -$a->strings["Categories"] = "Kategorie"; -$a->strings["%d contact in common"] = array( - 0 => "", - 1 => "", - 2 => "", -); -$a->strings["show more"] = "Pokaż więcej"; -$a->strings[" on Last.fm"] = "na Last.fm"; -$a->strings["view full size"] = "Zobacz pełen rozmiar"; -$a->strings["Miscellaneous"] = "Różny"; -$a->strings["year"] = "rok"; -$a->strings["month"] = "miesiąc"; -$a->strings["day"] = "dzień"; -$a->strings["never"] = "nigdy"; -$a->strings["less than a second ago"] = "mniej niż sekundę temu"; -$a->strings["years"] = "lata"; -$a->strings["months"] = "miesiące"; -$a->strings["week"] = "tydzień"; -$a->strings["weeks"] = "tygodnie"; -$a->strings["days"] = "dni"; -$a->strings["hour"] = "godzina"; -$a->strings["hours"] = "godziny"; -$a->strings["minute"] = "minuta"; -$a->strings["minutes"] = "minuty"; -$a->strings["second"] = "sekunda"; -$a->strings["seconds"] = "sekundy"; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["%s's birthday"] = "Urodziny %s"; -$a->strings["Happy Birthday %s"] = "Urodziny %s"; -$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować."; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["(no subject)"] = "(bez tematu)"; -$a->strings["noreply"] = "brak odpowiedzi"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora"; -$a->strings["photo"] = "zdjęcie"; -$a->strings["status"] = "status"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s"; -$a->strings["Attachments:"] = "Załączniki:"; -$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]"; -$a->strings["A new person is sharing with you at "] = ""; -$a->strings["You have a new follower at "] = ""; -$a->strings["Item not found."] = "Element nie znaleziony."; -$a->strings["Do you really want to delete this item?"] = ""; -$a->strings["Yes"] = "Tak"; -$a->strings["Cancel"] = "Anuluj"; -$a->strings["Permission denied."] = "Brak uprawnień."; -$a->strings["Archives"] = "Archiwum"; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = "Podgląd posta"; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = "Szukanie wg daty"; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = "Filtrowanie grupowe"; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Saved Searches"] = "Zapisane wyszukiwania"; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'"; -$a->strings["newer"] = "nowsze"; -$a->strings["older"] = "starsze"; -$a->strings["prev"] = "poprzedni"; -$a->strings["first"] = "pierwszy"; -$a->strings["last"] = "ostatni"; -$a->strings["next"] = "następny"; -$a->strings["No contacts"] = "Brak kontaktów"; -$a->strings["%d Contact"] = array( - 0 => "%d kontakt", - 1 => "%d kontaktów", - 2 => "%d kontakty", -); -$a->strings["View Contacts"] = "widok kontaktów"; -$a->strings["Search"] = "Szukaj"; -$a->strings["Save"] = "Zapisz"; -$a->strings["poke"] = "zaczep"; -$a->strings["poked"] = "zaczepiony"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = "spoliczkuj"; -$a->strings["slapped"] = "spoliczkowany"; -$a->strings["finger"] = "dotknąć"; -$a->strings["fingered"] = "dotknięty"; -$a->strings["rebuff"] = "odprawiać"; -$a->strings["rebuffed"] = "odprawiony"; -$a->strings["happy"] = "szczęśliwy"; -$a->strings["sad"] = "smutny"; -$a->strings["mellow"] = "spokojny"; -$a->strings["tired"] = "zmęczony"; -$a->strings["perky"] = "pewny siebie"; -$a->strings["angry"] = "wściekły"; -$a->strings["stupified"] = "odurzony"; -$a->strings["puzzled"] = "zdziwiony"; -$a->strings["interested"] = "interesujący"; -$a->strings["bitter"] = "zajadły"; -$a->strings["cheerful"] = "wesoły"; -$a->strings["alive"] = "żywy"; -$a->strings["annoyed"] = "irytujący"; -$a->strings["anxious"] = "zazdrosny"; -$a->strings["cranky"] = "zepsuty"; -$a->strings["disturbed"] = "przeszkadzający"; -$a->strings["frustrated"] = "rozbity"; -$a->strings["motivated"] = "zmotywowany"; -$a->strings["relaxed"] = "zrelaksowany"; -$a->strings["surprised"] = "zaskoczony"; -$a->strings["Monday"] = "Poniedziałek"; -$a->strings["Tuesday"] = "Wtorek"; -$a->strings["Wednesday"] = "Środa"; -$a->strings["Thursday"] = "Czwartek"; -$a->strings["Friday"] = "Piątek"; -$a->strings["Saturday"] = "Sobota"; -$a->strings["Sunday"] = "Niedziela"; -$a->strings["January"] = "Styczeń"; -$a->strings["February"] = "Luty"; -$a->strings["March"] = "Marzec"; -$a->strings["April"] = "Kwiecień"; -$a->strings["May"] = "Maj"; -$a->strings["June"] = "Czerwiec"; -$a->strings["July"] = "Lipiec"; -$a->strings["August"] = "Sierpień"; -$a->strings["September"] = "Wrzesień"; -$a->strings["October"] = "Październik"; -$a->strings["November"] = "Listopad"; -$a->strings["December"] = "Grudzień"; -$a->strings["View Video"] = ""; -$a->strings["bytes"] = "bajty"; -$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; -$a->strings["link to source"] = "link do źródła"; -$a->strings["Select an alternate language"] = "Wybierz alternatywny język"; -$a->strings["event"] = "wydarzenie"; -$a->strings["activity"] = "aktywność"; $a->strings["comment"] = array( 0 => "", 1 => "", 2 => "komentarz", ); -$a->strings["post"] = "post"; -$a->strings["Item filed"] = ""; -$a->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."] = ""; -$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; -$a->strings["Everybody"] = "Wszyscy"; -$a->strings["edit"] = "edytuj"; -$a->strings["Groups"] = "Grupy"; -$a->strings["Edit group"] = "Edytuj grupy"; -$a->strings["Create a new group"] = "Stwórz nową grupę"; -$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; -$a->strings["add"] = "dodaj"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s"; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; -$a->strings["Select"] = "Wybierz"; -$a->strings["Delete"] = "Usuń"; -$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; -$a->strings["Categories:"] = "Kategorie:"; -$a->strings["Filed under:"] = "Zapisano pod:"; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["View in context"] = "Zobacz w kontekście"; -$a->strings["Please wait"] = "Proszę czekać"; -$a->strings["remove"] = "usuń"; -$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy"; -$a->strings["Follow Thread"] = "Śledź wątek"; -$a->strings["%s likes this."] = "%s lubi to."; -$a->strings["%s doesn't like this."] = "%s nie lubi tego."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; -$a->strings["and"] = "i"; -$a->strings[", and %d other people"] = ", i %d innych ludzi"; -$a->strings["%s like this."] = "%s lubi to."; -$a->strings["%s don't like this."] = "%s nie lubi tego."; -$a->strings["Visible to everybody"] = "Widoczne dla wszystkich"; -$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; -$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu"; -$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki"; -$a->strings["Tag term:"] = ""; -$a->strings["Save to Folder:"] = "Zapisz w folderze:"; -$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["Post to Email"] = "Wyślij poprzez email"; -$a->strings["Share"] = "Podziel się"; -$a->strings["Upload photo"] = "Wyślij zdjęcie"; -$a->strings["upload photo"] = "dodaj zdjęcie"; -$a->strings["Attach file"] = "Przyłącz plik"; -$a->strings["attach file"] = "załącz plik"; -$a->strings["Insert web link"] = "Wstaw link"; -$a->strings["web link"] = "Adres www"; -$a->strings["Insert video link"] = "Wstaw link wideo"; -$a->strings["video link"] = "link do filmu"; -$a->strings["Insert audio link"] = "Wstaw link audio"; -$a->strings["audio link"] = "Link audio"; -$a->strings["Set your location"] = "Ustaw swoje położenie"; -$a->strings["set location"] = "wybierz lokalizację"; -$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki"; -$a->strings["clear location"] = "wyczyść lokalizację"; -$a->strings["Set title"] = "Ustaw tytuł"; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Permission settings"] = "Ustawienia uprawnień"; -$a->strings["permissions"] = "zezwolenia"; -$a->strings["CC: email addresses"] = "CC: adresy e-mail"; -$a->strings["Public post"] = "Publiczny post"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["show more"] = "Pokaż więcej"; +$a->strings["This is you"] = "To jesteś ty"; +$a->strings["Submit"] = "Potwierdź"; +$a->strings["Bold"] = "Pogrubienie"; +$a->strings["Italic"] = "Kursywa"; +$a->strings["Underline"] = "Podkreślenie"; +$a->strings["Quote"] = "Cytat"; +$a->strings["Code"] = "Kod"; +$a->strings["Image"] = "Obraz"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; $a->strings["Preview"] = "Podgląd"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = "Prywatne posty"; -$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; -$a->strings["Thank You,"] = "Dziękuję,"; -$a->strings["%s Administrator"] = "%s administrator"; -$a->strings["%s "] = ""; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; -$a->strings["a private message"] = "prywatna wiadomość"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz"; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię"; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; -$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = "Imię:"; -$a->strings["Photo:"] = "Zdjęcie:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["[no subject]"] = "[bez tematu]"; -$a->strings["Wall Photos"] = "Tablica zdjęć"; -$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; -$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; -$a->strings["Logout"] = "Wyloguj się"; -$a->strings["End this session"] = "Zakończ sesję"; -$a->strings["Status"] = "Status"; +$a->strings["You must be logged in to use addons. "] = "Musisz się zalogować, aby móc używać dodatkowych wtyczek."; +$a->strings["Not Found"] = "Nie znaleziono"; +$a->strings["Page not found."] = "Strona nie znaleziona."; +$a->strings["Permission denied"] = "Odmowa dostępu"; +$a->strings["Permission denied."] = "Brak uprawnień."; +$a->strings["toggle mobile"] = "przełącz na mobilny"; +$a->strings["Home"] = "Dom"; $a->strings["Your posts and conversations"] = "Twoje posty i rozmowy"; +$a->strings["Profile"] = "Profil"; $a->strings["Your profile page"] = "Twoja strona profilowa"; $a->strings["Photos"] = "Zdjęcia"; $a->strings["Your photos"] = "Twoje zdjęcia"; @@ -479,364 +70,124 @@ $a->strings["Events"] = "Wydarzenia"; $a->strings["Your events"] = "Twoje wydarzenia"; $a->strings["Personal notes"] = "Osobiste notatki"; $a->strings["Your personal photos"] = "Twoje osobiste zdjęcia"; -$a->strings["Login"] = "Login"; -$a->strings["Sign in"] = "Zaloguj się"; -$a->strings["Home"] = "Dom"; -$a->strings["Home Page"] = "Strona startowa"; -$a->strings["Register"] = "Zarejestruj"; -$a->strings["Create an account"] = "Załóż konto"; -$a->strings["Help"] = "Pomoc"; -$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; -$a->strings["Apps"] = "Aplikacje"; -$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; -$a->strings["Search site content"] = "Przeszukaj zawartość strony"; $a->strings["Community"] = "Społeczność"; -$a->strings["Conversations on this site"] = "Rozmowy na tej stronie"; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = ""; -$a->strings["Network"] = "Sieć"; -$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Introductions"] = "Wstępy"; -$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych"; -$a->strings["Notifications"] = "Powiadomienia"; -$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; -$a->strings["Mark all system notifications seen"] = ""; -$a->strings["Messages"] = "Wiadomości"; -$a->strings["Private mail"] = "Prywatne maile"; -$a->strings["Inbox"] = "Odebrane"; -$a->strings["Outbox"] = "Wysłane"; -$a->strings["New Message"] = "Nowa wiadomość"; -$a->strings["Manage"] = "Zarządzaj"; -$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; -$a->strings["Delegations"] = ""; -$a->strings["Delegate Page Management"] = ""; -$a->strings["Settings"] = "Ustawienia"; -$a->strings["Account settings"] = "Ustawienia konta"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["don't show"] = "nie pokazuj"; +$a->strings["show"] = "pokaż"; +$a->strings["Theme settings"] = "Ustawienia motywu"; +$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy"; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set resolution for middle column"] = ""; $a->strings["Contacts"] = "Kontakty"; -$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; -$a->strings["Admin"] = "Administator"; -$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; -$a->strings["Navigation"] = ""; -$a->strings["Site map"] = "Mapa strony"; -$a->strings["Embedded content"] = "Osadzona zawartość"; -$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( - 0 => "", - 1 => "", - 2 => "", -); -$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."; -$a->strings["Welcome "] = "Witaj "; -$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; -$a->strings["Welcome back "] = "Witaj ponownie "; -$a->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."] = ""; -$a->strings["Profile not found."] = "Nie znaleziono profilu."; -$a->strings["Profile deleted."] = "Konto usunięte."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Utworzono nowy profil."; -$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; -$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = "Polubień"; -$a->strings["Dislikes"] = "Nie lubień"; -$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; -$a->strings["Religion"] = "Religia"; -$a->strings["Political Views"] = "Poglądy polityczne"; -$a->strings["Gender"] = "Płeć"; -$a->strings["Sexual Preference"] = "Orientacja seksualna"; -$a->strings["Homepage"] = "Strona Główna"; -$a->strings["Interests"] = "Zainteresowania"; -$a->strings["Address"] = "Adres"; -$a->strings["Location"] = "Położenie"; -$a->strings["Profile updated."] = "Konto zaktualizowane."; -$a->strings[" and "] = " i "; -$a->strings["public profile"] = "profil publiczny"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; -$a->strings["No"] = "Nie"; -$a->strings["Edit Profile Details"] = "Edytuj profil."; -$a->strings["Submit"] = "Potwierdź"; -$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie"; -$a->strings["View this profile"] = "Zobacz ten profil"; -$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; -$a->strings["Clone this profile"] = "Sklonuj ten profil"; -$a->strings["Delete this profile"] = "Usuń ten profil"; -$a->strings["Profile Name:"] = "Nazwa profilu :"; -$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:"; -$a->strings["Title/Description:"] = "Tytuł/Opis :"; -$a->strings["Your Gender:"] = "Twoja płeć:"; -$a->strings["Birthday (%s):"] = "Urodziny (%s):"; -$a->strings["Street Address:"] = "Ulica:"; -$a->strings["Locality/City:"] = "Miejscowość/Miasto :"; -$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :"; -$a->strings["Country:"] = "Kraj:"; -$a->strings["Region/State:"] = "Region / Stan :"; -$a->strings[" Marital Status:"] = " Stan :"; -$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Od [data]:"; -$a->strings["Homepage URL:"] = "Strona główna URL:"; -$a->strings["Religious Views:"] = "Poglądy religijne:"; -$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :"; -$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :"; -$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; -$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; -$a->strings["Hobbies/Interests"] = "Zainteresowania"; -$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne"; -$a->strings["Musical interests"] = "Muzyka"; -$a->strings["Books, literature"] = "Literatura"; -$a->strings["Television"] = "Telewizja"; -$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; -$a->strings["Love/romance"] = "Miłość/romans"; -$a->strings["Work/employment"] = "Praca/zatrudnienie"; -$a->strings["School/education"] = "Szkoła/edukacja"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu."; -$a->strings["Age: "] = "Wiek: "; -$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami"; +$a->strings["Your contacts"] = "Twoje kontakty"; +$a->strings["Community Pages"] = "Strony społecznościowe"; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = "Ostatni użytkownicy"; +$a->strings["Last likes"] = "Ostatnie polubienia"; +$a->strings["event"] = "wydarzenie"; +$a->strings["status"] = "status"; +$a->strings["photo"] = "zdjęcie"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s"; +$a->strings["Last photos"] = "Ostatnie zdjęcia"; +$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; +$a->strings["Profile Photos"] = "Zdjęcia profilowe"; +$a->strings["Find Friends"] = "Znajdź znajomych"; +$a->strings["Local Directory"] = ""; +$a->strings["Global Directory"] = "Globalne Położenie"; +$a->strings["Similar Interests"] = "Podobne zainteresowania"; +$a->strings["Friend Suggestions"] = "Osoby, które możesz znać"; +$a->strings["Invite Friends"] = "Zaproś znajomych"; +$a->strings["Settings"] = "Ustawienia"; +$a->strings["Earth Layers"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = "Połączone serwisy"; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Set color scheme"] = "Zestaw kolorów"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Alignment"] = "Wyrównanie"; +$a->strings["Left"] = "Lewo"; +$a->strings["Center"] = "Środek"; +$a->strings["Color scheme"] = "Zestaw kolorów"; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Set colour scheme"] = "Zestaw kolorów"; +$a->strings["default"] = "standardowe"; +$a->strings["Background Image"] = ""; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = ""; +$a->strings["HEX value for the background color. Don't include the #"] = ""; +$a->strings["font size"] = ""; +$a->strings["base font size for your interface"] = ""; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set theme width"] = "Ustaw szerokość motywu"; +$a->strings["Delete this item?"] = "Usunąć ten element?"; +$a->strings["show fewer"] = "Pokaż mniej"; +$a->strings["Update %s failed. See error logs."] = ""; +$a->strings["Update Error at %s"] = ""; +$a->strings["Create a New Account"] = "Załóż nowe konto"; +$a->strings["Register"] = "Zarejestruj"; +$a->strings["Logout"] = "Wyloguj się"; +$a->strings["Login"] = "Login"; +$a->strings["Nickname or Email address: "] = "Nick lub adres email:"; +$a->strings["Password: "] = "Hasło:"; +$a->strings["Remember me"] = "Zapamiętaj mnie"; +$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:"; +$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; +$a->strings["Password Reset"] = "Zresetuj hasło"; +$a->strings["Website Terms of Service"] = ""; +$a->strings["terms of service"] = ""; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = "polityka prywatności"; +$a->strings["Requested account is not available."] = ""; +$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; +$a->strings["Edit profile"] = "Edytuj profil"; +$a->strings["Connect"] = "Połącz"; +$a->strings["Message"] = "Wiadomość"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; $a->strings["Change profile photo"] = "Zmień zdjęcie profilowe"; $a->strings["Create New Profile"] = "Stwórz nowy profil"; $a->strings["Profile Image"] = "Obraz profilowy"; $a->strings["visible to everybody"] = "widoczne dla wszystkich"; $a->strings["Edit visibility"] = "Edytuj widoczność"; -$a->strings["Permission denied"] = "Odmowa dostępu"; -$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; -$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; -$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; -$a->strings["Visible To"] = "Widoczne dla"; -$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; +$a->strings["Location:"] = "Lokalizacja"; +$a->strings["Gender:"] = "Płeć:"; +$a->strings["Status:"] = "Status"; +$a->strings["Homepage:"] = "Strona główna:"; +$a->strings["g A l F d"] = "g A I F d"; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[dziś]"; +$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; +$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; +$a->strings["[No description]"] = "[Brak opisu]"; +$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; +$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; +$a->strings["Profile Details"] = "Szczegóły profilu"; +$a->strings["Photo Albums"] = "Albumy zdjęć"; +$a->strings["Videos"] = "Filmy"; +$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; $a->strings["Personal Notes"] = "Osobiste notatki"; +$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = "Nastrój"; +$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym"; $a->strings["Public access denied."] = "Publiczny dostęp zabroniony"; +$a->strings["Item not found."] = "Element nie znaleziony."; $a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta"; $a->strings["Item has been removed."] = "Przedmiot został usunięty"; -$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; -$a->strings["Edit contact"] = "Edytuj kontakt"; -$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; -$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; -$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość"; -$a->strings["{0} requested registration"] = "{0} żądana rejestracja"; -$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis"; -$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s"; -$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s"; -$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s"; -$a->strings["{0} posted"] = "{0} utworzony"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie"; -$a->strings["Theme settings updated."] = "Ustawienia szablonu zmienione."; -$a->strings["Site"] = "Strona"; -$a->strings["Users"] = "Użytkownicy"; -$a->strings["Plugins"] = "Wtyczki"; -$a->strings["Themes"] = "Temat"; -$a->strings["DB updates"] = "Aktualizacje DB"; -$a->strings["Logs"] = "Logi"; -$a->strings["Plugin Features"] = "Polecane wtyczki"; -$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie."; -$a->strings["Normal Account"] = "Konto normalne"; -$a->strings["Soapbox Account"] = "Konto Soapbox"; -$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy"; -$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta"; -$a->strings["Blog Account"] = "Konto Bloga"; -$a->strings["Private Forum"] = "Forum Prywatne"; -$a->strings["Message queues"] = "Wiadomości"; -$a->strings["Administration"] = "Administracja"; -$a->strings["Summary"] = "Skrót"; -$a->strings["Registered users"] = "Zarejestrowani użytkownicy"; -$a->strings["Pending registrations"] = "Rejestracje w toku."; -$a->strings["Version"] = "Wersja"; -$a->strings["Active plugins"] = "Aktywne pluginy"; -$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane"; -$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; -$a->strings["Never"] = "Nigdy"; -$a->strings["Multi user instance"] = "Tryb MultiUsera"; -$a->strings["Closed"] = "Zamknięty"; -$a->strings["Requires approval"] = "Wymagane zatwierdzenie."; -$a->strings["Open"] = "Otwórz"; -$a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL ."; -$a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL."; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "; -$a->strings["Registration"] = "Rejestracja"; -$a->strings["File upload"] = "Plik załadowano"; -$a->strings["Policies"] = "zasady"; -$a->strings["Advanced"] = "Zaawansowany"; -$a->strings["Performance"] = "Ustawienia"; -$a->strings["Site name"] = "Nazwa strony"; -$a->strings["Banner/Logo"] = "Logo"; -$a->strings["System language"] = "Język systemu"; -$a->strings["System theme"] = "Motyw systemowy"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów"; -$a->strings["Mobile system theme"] = "Mobilny motyw systemowy"; -$a->strings["Theme for mobile devices"] = "Szablon dla mobilnych urządzeń"; -$a->strings["SSL link policy"] = "polityka SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa kiedy generowane linki powinny używać wymuszonego SSl."; -$a->strings["'Share' element"] = "'Udostępnij' element"; -$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktywuje element BBcode 'dziel ' dla powtarzając się części."; -$a->strings["Hide help entry from navigation menu"] = "Wyłącz pomoc w menu nawigacyjnym "; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help."; -$a->strings["Single user instance"] = "Tryb SingleUsera"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Ustawia tryb multi lub single dla wybranych użytkowników."; -$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ."; -$a->strings["Maximum image length"] = "Maksymalna długość obrazu"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."; -$a->strings["JPEG image quality"] = "jakość obrazu JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . "; -$a->strings["Register policy"] = "Zarejestruj polisę"; -$a->strings["Maximum Daily Registrations"] = "Maksymalnie dziennych rejestracji"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; -$a->strings["Register text"] = "Zarejestruj tekst"; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni."; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."; -$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. "; -$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe"; -$a->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"] = ""; -$a->strings["Block public"] = "Blokuj publicznie"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = "Wymuś publikację"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Global directory update URL"] = ""; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; -$a->strings["Block multiple registrations"] = ""; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; -$a->strings["OpenID support"] = "Wsparcie OpenID"; -$a->strings["OpenID support for registration and logins."] = ""; -$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; -$a->strings["UTF-8 Regular expressions"] = ""; -$a->strings["Use PHP UTF8 regular expressions"] = ""; -$a->strings["Show Community Page"] = "Pokaż stronę społeczności"; -$a->strings["Display a Community page showing all recent public postings on this site."] = ""; -$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory"; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; -$a->strings["Verify SSL"] = "Weryfikacja SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; -$a->strings["Proxy user"] = "Użytkownik proxy"; -$a->strings["Proxy URL"] = "URL Proxy"; -$a->strings["Network timeout"] = "Network timeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; -$a->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."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Use MySQL full text engine"] = ""; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["Cache duration in seconds"] = ""; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = ""; -$a->strings["Path for lock file"] = ""; -$a->strings["Temp path"] = "Ścieżka do Temp"; -$a->strings["Base path to installation"] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Executing %s failed. Check system logs."] = ""; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["Update function %s could not be found."] = ""; -$a->strings["No failed updates."] = "Brak błędów aktualizacji."; -$a->strings["Failed Updates"] = "Błąd aktualizacji"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", - 2 => "", -); -$a->strings["%s user deleted"] = array( - 0 => " %s użytkownik usunięty", - 1 => " %s użytkownicy usunięci", - 2 => " %s usuniętych użytkowników ", -); -$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty"; -$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany"; -$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany"; -$a->strings["select all"] = "Zaznacz wszystko"; -$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie"; -$a->strings["Request date"] = "Data prośby"; -$a->strings["Name"] = "Imię"; -$a->strings["No registrations."] = "brak rejestracji"; -$a->strings["Approve"] = "Zatwierdź"; -$a->strings["Deny"] = "Odmów"; -$a->strings["Block"] = "Zablokuj"; -$a->strings["Unblock"] = "Odblokuj"; -$a->strings["Site admin"] = "Administracja stroną"; -$a->strings["Account expired"] = ""; -$a->strings["Register date"] = "Data rejestracji"; -$a->strings["Last login"] = "Ostatnie logowanie"; -$a->strings["Last item"] = "Ostatni element"; -$a->strings["Account"] = "Konto"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; -$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona."; -$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona."; -$a->strings["Disable"] = "Wyłącz"; -$a->strings["Enable"] = "Zezwól"; -$a->strings["Toggle"] = "Włącz"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = "Nie znaleziono tematu."; -$a->strings["Screenshot"] = "Zrzut ekranu"; -$a->strings["[Experimental]"] = "[Eksperymentalne]"; -$a->strings["[Unsupported]"] = "[Niewspieralne]"; -$a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów."; -$a->strings["Clear"] = "Wyczyść"; -$a->strings["Enable Debugging"] = ""; -$a->strings["Log file"] = "Plik logów"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; -$a->strings["Log level"] = "Poziom logów"; -$a->strings["Update now"] = "Aktualizuj teraz"; -$a->strings["Close"] = "Zamknij"; -$a->strings["FTP Host"] = "Założyciel FTP"; -$a->strings["FTP Path"] = "Ścieżka FTP"; -$a->strings["FTP User"] = "Użytkownik FTP"; -$a->strings["FTP Password"] = "FTP Hasło"; -$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; -$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony."; -$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; -$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; -$a->strings["%s posted an update."] = "%s zaktualizował wpis."; -$a->strings["Friends of %s"] = "Znajomy %s"; -$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; -$a->strings["Remove term"] = "Usuń wpis"; -$a->strings["No results."] = "Brak wyników."; -$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; -$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; -$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"; +$a->strings["Access denied."] = "Brak dostępu"; +$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; +$a->strings["running at web location"] = "otwierane na serwerze"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; +$a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:"; +$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; $a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; $a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; $a->strings["Failed to send email message. Here is the message that failed."] = "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."; @@ -848,217 +199,19 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."; $a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):"; $a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?"; +$a->strings["Yes"] = "Tak"; +$a->strings["No"] = "Nie"; $a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; $a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:"; +$a->strings["Registration"] = "Rejestracja"; $a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):"; $a->strings["Your Email Address: "] = "Twój adres email:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; $a->strings["Choose a nickname: "] = "Wybierz pseudonim:"; -$a->strings["Account approved."] = "Konto zatwierdzone."; -$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana"; -$a->strings["Please login."] = "Proszę się zalogować."; -$a->strings["Item not available."] = "Element nie dostępny."; -$a->strings["Item was not found."] = "Element nie znaleziony."; -$a->strings["Remove My Account"] = "Usuń konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."; -$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; -$a->strings["Source (bbcode) text:"] = "Źródło - tekst (BBcode) :"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Źródło tekst (Diaspora) by przekonwerterować na BBcode :"; -$a->strings["Source input: "] = "Źródło wejścia:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Źródło wejścia(format Diaspory):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Common Friends"] = "Wspólni znajomi"; -$a->strings["No contacts in common."] = ""; -$a->strings["You must be logged in to use addons. "] = ""; -$a->strings["Applications"] = "Aplikacje"; -$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; $a->strings["Import"] = "Import"; -$a->strings["Move account"] = "Przenieś konto"; -$a->strings["You can import an account from another Friendica server."] = ""; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["everybody"] = "wszyscy"; -$a->strings["Additional features"] = ""; -$a->strings["Display settings"] = "Wyświetl ustawienia"; -$a->strings["Connector settings"] = "Ustawienia konektora"; -$a->strings["Plugin settings"] = "Ustawienia wtyczek"; -$a->strings["Connected apps"] = "Powiązane aplikacje"; -$a->strings["Export personal data"] = "Eksportuje dane personalne"; -$a->strings["Remove account"] = "Usuń konto"; -$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; -$a->strings["Update"] = "Zaktualizuj"; -$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; -$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; -$a->strings["Features updated"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione."; -$a->strings["Wrong password."] = ""; -$a->strings["Password changed."] = "Hasło zostało zmianione."; -$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; -$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; -$a->strings[" Name too short."] = "Za krótka nazwa."; -$a->strings["Wrong Password"] = ""; -$a->strings[" Not valid email."] = "Zły email."; -$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; -$a->strings["Add application"] = "Dodaj aplikacje"; -$a->strings["Consumer Key"] = "Klucz konsumenta"; -$a->strings["Consumer Secret"] = "Sekret konsumenta"; -$a->strings["Redirect"] = "Przekierowanie"; -$a->strings["Icon url"] = "Adres ikony"; -$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; -$a->strings["Connected Apps"] = "Powiązane aplikacje"; -$a->strings["Edit"] = "Edytuj"; -$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; -$a->strings["No name"] = "Bez nazwy"; -$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; -$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane"; -$a->strings["Plugin Settings"] = "Ustawienia wtyczki"; -$a->strings["Off"] = "Wyłącz"; -$a->strings["On"] = "Włącz"; -$a->strings["Additional Features"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = ""; -$a->strings["enabled"] = "włączony"; -$a->strings["disabled"] = "wyłączony"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; -$a->strings["Connector Settings"] = "Ustawienia konektora"; -$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."; -$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; -$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Ochrona:"; -$a->strings["None"] = "Brak"; -$a->strings["Email login name:"] = "Login emaila:"; -$a->strings["Email password:"] = "Hasło emaila:"; -$a->strings["Reply-to address:"] = "Odpowiedz na adres:"; -$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; -$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; -$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; -$a->strings["Move to folder"] = "Przenieś do folderu"; -$a->strings["Move to folder:"] = "Przenieś do folderu:"; -$a->strings["Display Settings"] = "Wyświetl ustawienia"; -$a->strings["Display Theme:"] = "Wyświetl motyw:"; -$a->strings["Mobile Theme:"] = "Mobilny motyw:"; -$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu"; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "Przeznacz to OpenID do logowania się na to konto."; -$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?"; -$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; -$a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych"; -$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["Permit unknown people to send you private mail?"] = ""; -$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; -$a->strings["or"] = "lub"; -$a->strings["Your Identity Address is"] = "Twój adres identyfikacyjny to"; -$a->strings["Automatically expire posts after this many days:"] = ""; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = "Wygasające posty:"; -$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:"; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = "Wygasające zdjęcia:"; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Ustawienia konta"; -$a->strings["Password Settings"] = "Ustawienia hasła"; -$a->strings["New Password:"] = "Nowe hasło:"; -$a->strings["Confirm:"] = "Potwierdź:"; -$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić."; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; -$a->strings["Basic Settings"] = "Ustawienia podstawowe"; -$a->strings["Email Address:"] = "Adres email:"; -$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; -$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:"; -$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:"; -$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; -$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"; -$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; -$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; -$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; -$a->strings["Show to Groups"] = "Pokaż Grupy"; -$a->strings["Show to Contacts"] = "Pokaż kontakty"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Notification Settings"] = "Ustawienia powiadomień"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; -$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; -$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone"; -$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej"; -$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; -$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; -$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych"; -$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście"; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["link"] = "Link"; -$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; -$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Profile not found."] = "Nie znaleziono profilu."; $a->strings["Contact not found."] = "Kontakt nie znaleziony"; -$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; -$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; -$a->strings["Account Nickname"] = "Nazwa konta"; -$a->strings["@Tagname - overrides Name/Nickname"] = ""; -$a->strings["Account URL"] = "URL konta"; -$a->strings["Friend Request URL"] = "URL żądajacy znajomości"; -$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; -$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; -$a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS"; -$a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki"; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Remove"] = "Usuń"; -$a->strings["Add"] = "Dodaj"; -$a->strings["No entries."] = "Brak wpisów."; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = "Zrób ten post prywatnym"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; $a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana"; $a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej"; @@ -1067,6 +220,7 @@ $a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:"; $a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."; $a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie."; $a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s"; $a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; $a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty"; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."; @@ -1077,175 +231,14 @@ $a->strings["Unable to set your contact credentials on our system."] = "Niezdoln $a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"; $a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s dołączył/a do %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s"; -$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; -$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", - 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", - 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", -); -$a->strings["Introduction complete."] = "wprowadzanie zakończone."; -$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; -$a->strings["Profile unavailable."] = "Profil niedostępny."; -$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; -$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; -$a->strings["Invalid locator"] = "Niewłaściwy lokalizator "; -$a->strings["Invalid email address."] = "Nieprawidłowy adres email."; -$a->strings["This account has not been configured for email. Request failed."] = "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ."; -$a->strings["Unable to resolve your name at the provided location."] = "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."; -$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; -$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s"; -$a->strings["Invalid profile URL."] = "Zły adres URL profilu."; -$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się."; -$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; -$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; -$a->strings["Hide this contact"] = "Ukryj kontakt"; -$a->strings["Welcome home %s."] = "Welcome home %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; -$a->strings["Confirm"] = "Potwierdź"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ."; -$a->strings["Connect as an email follower (Coming soon)"] = "Połącz jako użytkownika e mail (tylko) (Niebawem)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ."; -$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; -$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; -$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki."; -$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; -$a->strings["Submit Request"] = "Wyślij zgłoszenie"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["Global Directory"] = "Globalne Położenie"; -$a->strings["Find on this site"] = "Znajdź na tej stronie"; -$a->strings["Finding: "] = "Znalezione:"; -$a->strings["Site Directory"] = "Katalog Strony"; -$a->strings["Gender: "] = "Płeć: "; -$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; -$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; -$a->strings["People Search"] = "Szukaj osób"; -$a->strings["No matches"] = "brak dopasowań"; -$a->strings["No videos selected"] = ""; -$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; -$a->strings["View Album"] = "Zobacz album"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$a->strings["Tag removed"] = "Tag usunięty"; -$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; -$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; -$a->strings["Item not found"] = "Artykuł nie znaleziony"; -$a->strings["Edit post"] = "Edytuj post"; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = "d, M d "; -$a->strings["Edit event"] = "Edytuj wydarzenie"; -$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; -$a->strings["Previous"] = "Poprzedni"; -$a->strings["Next"] = "Następny"; -$a->strings["hour:minute"] = "godzina:minuta"; -$a->strings["Event details"] = "Szczegóły wydarzenia"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; -$a->strings["Required"] = "Wymagany"; -$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; -$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; -$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; -$a->strings["Description:"] = "Opis:"; -$a->strings["Title:"] = "Tytuł:"; -$a->strings["Share this event"] = "Udostępnij te wydarzenie"; -$a->strings["Files"] = "Pliki"; -$a->strings["Export account"] = "Eksportuj konto"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = "Eksportuj wszystko"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["- select -"] = "- wybierz -"; -$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"; -$a->strings["Contact added"] = "Kontakt dodany"; -$a->strings["This is Friendica, version"] = "To jest Friendica, wersja"; -$a->strings["running at web location"] = "otwierane na serwerze"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:"; -$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji"; -$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana."; -$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; -$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; -$a->strings["Group created."] = "Grupa utworzona."; -$a->strings["Could not create group."] = "Nie mogę stworzyć grupy"; -$a->strings["Group not found."] = "Nie znaleziono grupy"; -$a->strings["Group name changed."] = "Nazwa grupy zmieniona"; -$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; -$a->strings["Group Name: "] = "Nazwa grupy: "; -$a->strings["Group removed."] = "Grupa usunięta."; -$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; -$a->strings["Group Editor"] = "Edytor grupy"; -$a->strings["Members"] = "Członkowie"; -$a->strings["All Contacts"] = "Wszystkie kontakty"; -$a->strings["No profile"] = "Brak profilu"; -$a->strings["Help:"] = "Pomoc:"; -$a->strings["Not Found"] = "Nie znaleziono"; -$a->strings["Page not found."] = "Strona nie znaleziona."; -$a->strings["No contacts."] = "brak kontaktów"; -$a->strings["Welcome to %s"] = "Witamy w %s"; -$a->strings["Access denied."] = "Brak dostępu"; -$a->strings["File exceeds size limit of %d"] = "Plik przekracza dozwolony rozmiar %d"; -$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; -$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d"; -$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; -$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email."; -$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane."; -$a->strings["%d message sent."] = array( - 0 => "%d wiadomość wysłana.", - 1 => "%d wiadomości wysłane.", - 2 => "%d wysłano .", -); -$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; -$a->strings["Send invitations"] = "Wyślij zaproszenia"; -$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:"; -$a->strings["Your message:"] = "Twoja wiadomość:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; -$a->strings["Unable to check your home location."] = ""; -$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; -$a->strings["Message collection failure."] = ""; -$a->strings["Message sent."] = "Wysłano."; -$a->strings["No recipient."] = "Brak odbiorcy."; -$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["To:"] = "Do:"; -$a->strings["Subject:"] = "Temat:"; -$a->strings["Time Conversion"] = "Zmiana czasu"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; -$a->strings["UTC time: %s"] = "Czas UTC %s"; -$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; -$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; -$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; -$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie "; -$a->strings["Visible to:"] = "Widoczne dla:"; +$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji"; +$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"; +$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"; $a->strings["No valid account found."] = "Nie znaleziono ważnego konta."; $a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email."; $a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."; -$a->strings["Password Reset"] = "Zresetuj hasło"; $a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane na twoje życzenie."; $a->strings["Your new password is"] = "Twoje nowe hasło to"; $a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj swoje nowe hasło - i wtedy"; @@ -1256,35 +249,64 @@ $a->strings["Forgot your Password?"] = "Zapomniałeś hasła?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; $a->strings["Nickname or Email: "] = "Pseudonim lub Email:"; $a->strings["Reset"] = "Zresetuj"; -$a->strings["System down for maintenance"] = ""; -$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; -$a->strings["Profile Match"] = "Profil zgodny "; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."; -$a->strings["is interested in:"] = "interesuje się:"; -$a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych."; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = "Wiadomość usunięta."; -$a->strings["Conversation removed."] = "Rozmowa usunięta."; -$a->strings["No messages."] = "Brak wiadomości."; -$a->strings["Unknown sender - %s"] = "Nieznany wysyłający - %s"; -$a->strings["You and %s"] = "Ty i %s"; -$a->strings["%s and You"] = "%s i ty"; -$a->strings["Delete conversation"] = "Usuń rozmowę"; -$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM"; -$a->strings["%d message"] = array( - 0 => " %d wiadomość", - 1 => " %d wiadomości", - 2 => " %d wiadomości", -); -$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; -$a->strings["Delete message"] = "Usuń wiadomość"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Odpowiedz"; -$a->strings["Mood"] = "Nastrój"; -$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Dzienny limit wiadomości na murze dla %s został przekroczony. Wiadomość została odrzucona."; +$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; +$a->strings["Unable to check your home location."] = "Nie można sprawdzić twojej lokalizacji."; +$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana"; +$a->strings["Message collection failure."] = ""; +$a->strings["Message sent."] = "Wysłano."; +$a->strings["No recipient."] = "Brak odbiorcy."; +$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:"; +$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Do:"; +$a->strings["Subject:"] = "Temat:"; +$a->strings["Your message:"] = "Twoja wiadomość:"; +$a->strings["Upload photo"] = "Wyślij zdjęcie"; +$a->strings["Insert web link"] = "Wstaw link"; +$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; +$a->strings["New Member Checklist"] = "Lista nowych członków"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; +$a->strings["Getting Started"] = "Pierwsze kroki"; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = ""; +$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; +$a->strings["Edit Your Profile"] = "Edytuj własny profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = ""; +$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; +$a->strings["Connecting"] = "Łączę się..."; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = ""; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; +$a->strings["Importing Emails"] = "Importuję emaile..."; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; +$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; +$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = ""; +$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Groups"] = "Grupy"; +$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = ""; +$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = "Otrzymywanie pomocy"; +$a->strings["Go to the Help Section"] = "Idź do części o pomocy"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; +$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?"; +$a->strings["Cancel"] = "Anuluj"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj"; $a->strings["Search Results For:"] = "Szukaj wyników dla:"; +$a->strings["Remove term"] = "Usuń wpis"; +$a->strings["Saved Searches"] = "Zapisane wyszukiwania"; +$a->strings["add"] = "dodaj"; $a->strings["Commented Order"] = "Porządek wg komentarzy"; $a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza"; $a->strings["Posted Order"] = "Porządek wg wpisów"; @@ -1309,124 +331,6 @@ $a->strings["Group: "] = "Grupa:"; $a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "; $a->strings["Invalid contact."] = "Zły kontakt"; -$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania."; -$a->strings["Discard"] = "Odrzuć"; -$a->strings["Ignore"] = "Ignoruj"; -$a->strings["System"] = "System"; -$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; -$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania"; -$a->strings["Notification type: "] = "Typ zawiadomień:"; -$a->strings["Friend Suggestion"] = "Propozycja znajomych"; -$a->strings["suggested by %s"] = "zaproponowane przez %s"; -$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; -$a->strings["Post a new friend activity"] = "Pisz o nowej działalności przyjaciela"; -$a->strings["if applicable"] = "jeśli odpowiednie"; -$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; -$a->strings["yes"] = "tak"; -$a->strings["no"] = "nie"; -$a->strings["Approve as: "] = "Zatwierdź jako:"; -$a->strings["Friend"] = "Znajomy"; -$a->strings["Sharer"] = ""; -$a->strings["Fan/Admirer"] = "Fan"; -$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; -$a->strings["New Follower"] = "Nowy obserwator"; -$a->strings["No introductions."] = "Brak wstępu."; -$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; -$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s"; -$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; -$a->strings["%s created a new post"] = "%s dodał nowy wpis"; -$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; -$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych"; -$a->strings["Network Notifications"] = "Powiadomienia z sieci"; -$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; -$a->strings["System Notifications"] = "Powiadomienia systemowe"; -$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych"; -$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; -$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu"; -$a->strings["Home Notifications"] = "Powiadomienia z instancji"; -$a->strings["Photo Albums"] = "Albumy zdjęć"; -$a->strings["Contact Photos"] = "Zdjęcia kontaktu"; -$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; -$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne."; -$a->strings["Album not found."] = "Album nie znaleziony"; -$a->strings["Delete Album"] = "Usuń album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; -$a->strings["Delete Photo"] = "Usuń zdjęcie"; -$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = "zdjęcie"; -$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru"; -$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; -$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Prześlij zdjęcia"; -$a->strings["New album name: "] = "Nazwa nowego albumu:"; -$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; -$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania"; -$a->strings["Permissions"] = "Uprawnienia"; -$a->strings["Private Photo"] = "Zdjęcie prywatne"; -$a->strings["Public Photo"] = "Zdjęcie publiczne"; -$a->strings["Edit Album"] = "Edytuj album"; -$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; -$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; -$a->strings["View Photo"] = "Zobacz zdjęcie"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; -$a->strings["Photo not available"] = "Zdjęcie niedostępne"; -$a->strings["View photo"] = "Zobacz zdjęcie"; -$a->strings["Edit photo"] = "Edytuj zdjęcie"; -$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; -$a->strings["Private Message"] = "Wiadomość prywatna"; -$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; -$a->strings["Tags: "] = "Tagi:"; -$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; -$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; -$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; -$a->strings["New album name"] = "Nazwa nowego albumu"; -$a->strings["Caption"] = "Zawartość"; -$a->strings["Add a Tag"] = "Dodaj tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Prywatne zdjęcie."; -$a->strings["Public photo"] = "Zdjęcie publiczne"; -$a->strings["I like this (toggle)"] = "Lubię to (zmień)"; -$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)"; -$a->strings["This is you"] = "To jesteś ty"; -$a->strings["Comment"] = "Komentarz"; -$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; -$a->strings["Welcome to Friendica"] = "Witamy na Friendica"; -$a->strings["New Member Checklist"] = "Lista nowych członków"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."; -$a->strings["Getting Started"] = "Pierwsze kroki"; -$a->strings["Friendica Walk-Through"] = ""; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Go to Your Settings"] = "Idź do swoich ustawień"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = ""; -$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."; -$a->strings["Edit Your Profile"] = "Edytuj własny profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = ""; -$a->strings["Profile Keywords"] = "Słowa kluczowe profilu"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = ""; -$a->strings["Connecting"] = "Łączę się..."; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = ""; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; -$a->strings["Importing Emails"] = "Importuję emaile..."; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; -$a->strings["Go to Your Contacts Page"] = "Idź do strony z Twoimi kontaktami"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; -$a->strings["Go to Your Site's Directory"] = "Idż do twojej strony"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = ""; -$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; -$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = ""; -$a->strings["Why Aren't My Posts Public?"] = "Dlaczego moje posty nie są publiczne?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = "Otrzymywanie pomocy"; -$a->strings["Go to the Help Section"] = "Idź do części o pomocy"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = ""; -$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny"; -$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; $a->strings["Friendica Communications Server - Setup"] = ""; $a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych"; $a->strings["Could not create table."] = "Nie mogę stworzyć tabeli."; @@ -1434,6 +338,7 @@ $a->strings["Your Friendica site database has been installed."] = ""; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\"."; $a->strings["System check"] = "Sprawdzanie systemu"; +$a->strings["Next"] = "Następny"; $a->strings["Check again"] = "Sprawdź ponownie"; $a->strings["Database connection"] = "Połączenie z bazą danych"; $a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."; @@ -1489,6 +394,326 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."; $a->strings["

What next

"] = "

Co dalej

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."; +$a->strings["Theme settings updated."] = "Ustawienia szablonu zmienione."; +$a->strings["Site"] = "Strona"; +$a->strings["Users"] = "Użytkownicy"; +$a->strings["Plugins"] = "Wtyczki"; +$a->strings["Themes"] = "Temat"; +$a->strings["DB updates"] = "Aktualizacje DB"; +$a->strings["Logs"] = "Logi"; +$a->strings["Admin"] = "Administator"; +$a->strings["Plugin Features"] = "Polecane wtyczki"; +$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie."; +$a->strings["Normal Account"] = "Konto normalne"; +$a->strings["Soapbox Account"] = "Konto Soapbox"; +$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy"; +$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta"; +$a->strings["Blog Account"] = "Konto Bloga"; +$a->strings["Private Forum"] = "Forum Prywatne"; +$a->strings["Message queues"] = "Wiadomości"; +$a->strings["Administration"] = "Administracja"; +$a->strings["Summary"] = "Skrót"; +$a->strings["Registered users"] = "Zarejestrowani użytkownicy"; +$a->strings["Pending registrations"] = "Rejestracje w toku."; +$a->strings["Version"] = "Wersja"; +$a->strings["Active plugins"] = "Aktywne pluginy"; +$a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane"; +$a->strings["No special theme for mobile devices"] = "Brak specialnego motywu dla urządzeń mobilnych"; +$a->strings["Never"] = "Nigdy"; +$a->strings["Frequently"] = "Jak najczęściej"; +$a->strings["Hourly"] = "Godzinowo"; +$a->strings["Twice daily"] = "Dwa razy dziennie"; +$a->strings["Daily"] = "Dziennie"; +$a->strings["Multi user instance"] = "Tryb MultiUsera"; +$a->strings["Closed"] = "Zamknięty"; +$a->strings["Requires approval"] = "Wymagane zatwierdzenie."; +$a->strings["Open"] = "Otwórz"; +$a->strings["No SSL policy, links will track page SSL state"] = "Brak SSL , linki będą śledzić stan SSL ."; +$a->strings["Force all links to use SSL"] = "Wymuś by linki używały SSL."; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Wewnętrzne Certyfikaty , użyj SSL tylko dla linków lokalnych . "; +$a->strings["Save Settings"] = ""; +$a->strings["File upload"] = "Plik załadowano"; +$a->strings["Policies"] = "zasady"; +$a->strings["Advanced"] = "Zaawansowany"; +$a->strings["Performance"] = "Ustawienia"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; +$a->strings["Site name"] = "Nazwa strony"; +$a->strings["Banner/Logo"] = "Logo"; +$a->strings["Additional Info"] = "Dodatkowe informacje"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; +$a->strings["System language"] = "Język systemu"; +$a->strings["System theme"] = "Motyw systemowy"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika zmień ustawienia motywów"; +$a->strings["Mobile system theme"] = "Mobilny motyw systemowy"; +$a->strings["Theme for mobile devices"] = "Szablon dla mobilnych urządzeń"; +$a->strings["SSL link policy"] = "polityka SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Określa kiedy generowane linki powinny używać wymuszonego SSl."; +$a->strings["Old style 'Share'"] = ""; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = "Wyłącz pomoc w menu nawigacyjnym "; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Chowa pozycje menu dla stron pomocy ze strony nawigacyjnej. Możesz nadal ją wywołać poprzez komendę /help."; +$a->strings["Single user instance"] = "Tryb SingleUsera"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Ustawia tryb multi lub single dla wybranych użytkowników."; +$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksymalny rozmiar w bitach dla wczytywanego obrazu . Domyślnie jest to 0 , co oznacza bez limitu ."; +$a->strings["Maximum image length"] = "Maksymalna długość obrazu"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."; +$a->strings["JPEG image quality"] = "jakość obrazu JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Wczytywanie JPEGS będzie zapisane z tymi ustawieniami jakości [0-100] . Domyslnie jest ustawione 100 co oznacza brak strat jakości . "; +$a->strings["Register policy"] = "Zarejestruj polisę"; +$a->strings["Maximum Daily Registrations"] = "Maksymalnie dziennych rejestracji"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; +$a->strings["Register text"] = "Zarejestruj tekst"; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni."; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ."; +$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista domen separowana przecinkami które mogą zaprzyjaźnić się z tą stroną . Wildcards są akceptowane . Pozostaw puste by zezwolić każdej domenie na zapryjaźnienie. "; +$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe"; +$a->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"] = ""; +$a->strings["Block public"] = "Blokuj publicznie"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "Wymuś publikację"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory update URL"] = ""; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = "Zezwalaj na wątkowanie tematów"; +$a->strings["Allow infinite level threading for items on this site."] = "Zezwalaj na nieograniczoną liczbę wątków tematycznych na tej stronie."; +$a->strings["Private posts by default for new users"] = "Prywatne posty domyślnie dla nowych użytkowników"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = "Nie wklejaj zawartości postu do powiadomienia o poczcie"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Block multiple registrations"] = "Zablokuj wielokrotną rejestrację"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Nie pozwalaj użytkownikom na zakładanie dodatkowych kont do używania jako strony. "; +$a->strings["OpenID support"] = "Wsparcie OpenID"; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Aby ograniczyć spam, wymagaj by użytkownik przy rejestracji w polu Imię i nazwisko użył spacji pomiędzy imieniem i nazwiskiem."; +$a->strings["UTF-8 Regular expressions"] = "Wyrażenia regularne UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Użyj regularnych wyrażeń PHP UTF8"; +$a->strings["Show Community Page"] = "Pokaż stronę społeczności"; +$a->strings["Display a Community page showing all recent public postings on this site."] = ""; +$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory"; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = "Weryfikacja SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = "Użytkownik proxy"; +$a->strings["Proxy URL"] = "URL Proxy"; +$a->strings["Network timeout"] = "Network timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->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."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Suppress Language"] = ""; +$a->strings["Suppress language information in meta information about a posting."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["Cache duration in seconds"] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["Temp path"] = "Ścieżka do Temp"; +$a->strings["Base path to installation"] = ""; +$a->strings["New base url"] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Executing %s failed. Check system logs."] = ""; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["Update function %s could not be found."] = ""; +$a->strings["No failed updates."] = "Brak błędów aktualizacji."; +$a->strings["Failed Updates"] = "Błąd aktualizacji"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["Registration successful. Email send to user"] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", + 2 => "", +); +$a->strings["%s user deleted"] = array( + 0 => " %s użytkownik usunięty", + 1 => " %s użytkownicy usunięci", + 2 => " %s usuniętych użytkowników ", +); +$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty"; +$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany"; +$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany"; +$a->strings["Add User"] = ""; +$a->strings["select all"] = "Zaznacz wszystko"; +$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie"; +$a->strings["User waiting for permanent deletion"] = "Użytkownik czekający na trwałe usunięcie"; +$a->strings["Request date"] = "Data prośby"; +$a->strings["Name"] = "Imię"; +$a->strings["Email"] = "E-mail"; +$a->strings["No registrations."] = "brak rejestracji"; +$a->strings["Approve"] = "Zatwierdź"; +$a->strings["Deny"] = "Odmów"; +$a->strings["Block"] = "Zablokuj"; +$a->strings["Unblock"] = "Odblokuj"; +$a->strings["Site admin"] = "Administracja stroną"; +$a->strings["Account expired"] = "Konto wygasło."; +$a->strings["New User"] = ""; +$a->strings["Register date"] = "Data rejestracji"; +$a->strings["Last login"] = "Ostatnie logowanie"; +$a->strings["Last item"] = "Ostatni element"; +$a->strings["Deleted since"] = "Skasowany od"; +$a->strings["Account"] = "Konto"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"; +$a->strings["Name of the new user."] = "Nazwa nowego użytkownika."; +$a->strings["Nickname"] = ""; +$a->strings["Nickname of the new user."] = ""; +$a->strings["Email address of the new user."] = "Adres email nowego użytkownika."; +$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona."; +$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona."; +$a->strings["Disable"] = "Wyłącz"; +$a->strings["Enable"] = "Zezwól"; +$a->strings["Toggle"] = "Włącz"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = ""; +$a->strings["No themes found."] = "Nie znaleziono tematu."; +$a->strings["Screenshot"] = "Zrzut ekranu"; +$a->strings["[Experimental]"] = "[Eksperymentalne]"; +$a->strings["[Unsupported]"] = "[Niewspieralne]"; +$a->strings["Log settings updated."] = "Zaktualizowano ustawienia logów."; +$a->strings["Clear"] = "Wyczyść"; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Plik logów"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Log level"] = "Poziom logów"; +$a->strings["Update now"] = "Aktualizuj teraz"; +$a->strings["Close"] = "Zamknij"; +$a->strings["FTP Host"] = "Założyciel FTP"; +$a->strings["FTP Path"] = "Ścieżka FTP"; +$a->strings["FTP User"] = "Użytkownik FTP"; +$a->strings["FTP Password"] = "FTP Hasło"; +$a->strings["Search"] = "Szukaj"; +$a->strings["No results."] = "Brak wyników."; +$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników"; +$a->strings["link"] = "Link"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s"; +$a->strings["Item not found"] = "Artykuł nie znaleziony"; +$a->strings["Edit post"] = "Edytuj post"; +$a->strings["upload photo"] = "dodaj zdjęcie"; +$a->strings["Attach file"] = "Przyłącz plik"; +$a->strings["attach file"] = "załącz plik"; +$a->strings["web link"] = "Adres www"; +$a->strings["Insert video link"] = "Wstaw link wideo"; +$a->strings["video link"] = "link do filmu"; +$a->strings["Insert audio link"] = "Wstaw link audio"; +$a->strings["audio link"] = "Link audio"; +$a->strings["Set your location"] = "Ustaw swoje położenie"; +$a->strings["set location"] = "wybierz lokalizację"; +$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki"; +$a->strings["clear location"] = "wyczyść lokalizację"; +$a->strings["Permission settings"] = "Ustawienia uprawnień"; +$a->strings["CC: email addresses"] = "CC: adresy e-mail"; +$a->strings["Public post"] = "Publiczny post"; +$a->strings["Set title"] = "Ustaw tytuł"; +$a->strings["Categories (comma-separated list)"] = "Kategorie (lista słów oddzielonych przecinkiem)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com"; +$a->strings["Item not available."] = "Element nie dostępny."; +$a->strings["Item was not found."] = "Element nie znaleziony."; +$a->strings["Account approved."] = "Konto zatwierdzone."; +$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana"; +$a->strings["Please login."] = "Proszę się zalogować."; +$a->strings["Find on this site"] = "Znajdź na tej stronie"; +$a->strings["Finding: "] = "Znalezione:"; +$a->strings["Site Directory"] = "Katalog Strony"; +$a->strings["Find"] = "Znajdź"; +$a->strings["Age: "] = "Wiek: "; +$a->strings["Gender: "] = "Płeć: "; +$a->strings["About:"] = "O:"; +$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."; +$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane."; +$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu."; +$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = " UWAGA: To jest wysoce zaawansowane i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz przycisku 'powrót' na swojej przeglądarce."; +$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów"; +$a->strings["Account Nickname"] = "Nazwa konta"; +$a->strings["@Tagname - overrides Name/Nickname"] = ""; +$a->strings["Account URL"] = "URL konta"; +$a->strings["Friend Request URL"] = "URL żądajacy znajomości"; +$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość"; +$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL"; +$a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS"; +$a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki"; +$a->strings["Move account"] = "Przenieś konto"; +$a->strings["You can import an account from another Friendica server."] = ""; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\""; +$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie "; +$a->strings["Visible to:"] = "Widoczne dla:"; +$a->strings["Save"] = "Zapisz"; +$a->strings["Help:"] = "Pomoc:"; +$a->strings["Help"] = "Pomoc"; +$a->strings["No profile"] = "Brak profilu"; +$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."; +$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d wymagany parametr nie został znaleziony w podanej lokacji", + 1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji", + 2 => "%d wymagany parametr nie został znaleziony w podanej lokacji", +); +$a->strings["Introduction complete."] = "wprowadzanie zakończone."; +$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu."; +$a->strings["Profile unavailable."] = "Profil niedostępny."; +$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń."; +$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h."; +$a->strings["Invalid locator"] = "Niewłaściwy lokalizator "; +$a->strings["Invalid email address."] = "Nieprawidłowy adres email."; +$a->strings["This account has not been configured for email. Request failed."] = "Te konto nie zostało skonfigurowane do poczty e mail . Niepowodzenie ."; +$a->strings["Unable to resolve your name at the provided location."] = "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."; +$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś."; +$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s"; +$a->strings["Invalid profile URL."] = "Zły adres URL profilu."; +$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu."; +$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się."; +$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane."; +$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "; +$a->strings["Hide this contact"] = "Ukryj kontakt"; +$a->strings["Welcome home %s."] = "Welcome home %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."; +$a->strings["Confirm"] = "Potwierdź"; +$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Proszę podaj swój \"Adres tożsamości \" z jednej z możliwych wspieranych sieci komunikacyjnych ."; +$a->strings["Connect as an email follower (Coming soon)"] = "Połącz jako użytkownika e mail (tylko) (Niebawem)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Jeśli nie jesteś członkiem darmowej sieci społecznościowej kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś ."; +$a->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Przykład : jojo@demo.friendica.com , http://demofriendica.com/profile/jojo , testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:"; +$a->strings["Does %s know you?"] = "Czy %s Cię zna?"; +$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- proszę wyraź to inaczej . Zamiast tego ,wprowadź %s do swojej belki wyszukiwarki."; +$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; +$a->strings["Submit Request"] = "Wyślij zgłoszenie"; +$a->strings["[Embedded content - reload page to view]"] = "[Dodatkowa zawartość - odśwież stronę by zobaczyć]"; +$a->strings["View in context"] = "Zobacz w kontekście"; $a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów."; $a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu."; $a->strings["Contact updated."] = "Kontakt zaktualizowany"; @@ -1498,7 +723,7 @@ $a->strings["Contact has been ignored"] = "Kontakt jest ignorowany"; $a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany"; $a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany"; $a->strings["Contact has been unarchived"] = ""; -$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Do you really want to delete this contact?"] = "Czy na pewno chcesz usunąć ten kontakt?"; $a->strings["Contact has been removed."] = "Kontakt został usunięty."; $a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s"; $a->strings["You are sharing with %s"] = "Współdzielisz z %s"; @@ -1508,9 +733,15 @@ $a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)" $a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"; $a->strings["Suggest friends"] = "Osoby, które możesz znać"; $a->strings["Network type: %s"] = "Typ sieci: %s"; +$a->strings["%d contact in common"] = array( + 0 => "", + 1 => "", + 2 => "", +); $a->strings["View all contacts"] = "Zobacz wszystkie kontakty"; $a->strings["Toggle Blocked status"] = ""; $a->strings["Unignore"] = "Odblokuj"; +$a->strings["Ignore"] = "Ignoruj"; $a->strings["Toggle Ignored status"] = ""; $a->strings["Unarchive"] = "Przywróć z archiwum"; $a->strings["Archive"] = "Archiwum"; @@ -1523,6 +754,7 @@ $a->strings["Profile Visibility"] = "Widoczność profilu"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"; $a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka"; $a->strings["Edit contact notes"] = "Edytuj notatki kontaktu"; +$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]"; $a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt"; $a->strings["Ignore contact"] = "Ignoruj kontakt"; $a->strings["Repair URL settings"] = "Napraw ustawienia adresu"; @@ -1533,9 +765,11 @@ $a->strings["Update public posts"] = "Zaktualizuj publiczne posty"; $a->strings["Currently blocked"] = "Obecnie zablokowany"; $a->strings["Currently ignored"] = "Obecnie zignorowany"; $a->strings["Currently archived"] = "Obecnie zarchiwizowany"; +$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi"; $a->strings["Replies/likes to your public posts may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne"; $a->strings["Suggestions"] = "Sugestie"; $a->strings["Suggest potential friends"] = "Sugerowani znajomi"; +$a->strings["All Contacts"] = "Wszystkie kontakty"; $a->strings["Show all contacts"] = "Pokaż wszystkie kontakty"; $a->strings["Unblocked"] = "Odblokowany"; $a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty"; @@ -1550,10 +784,361 @@ $a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty"; $a->strings["Mutual Friendship"] = "Wzajemna przyjaźń"; $a->strings["is a fan of yours"] = "jest twoim fanem"; $a->strings["you are a fan of"] = "jesteś fanem"; +$a->strings["Edit contact"] = "Edytuj kontakt"; $a->strings["Search your contacts"] = "Wyszukaj w kontaktach"; +$a->strings["everybody"] = "wszyscy"; +$a->strings["Account settings"] = "Ustawienia konta"; +$a->strings["Additional features"] = ""; +$a->strings["Display settings"] = "Wyświetl ustawienia"; +$a->strings["Connector settings"] = "Ustawienia konektora"; +$a->strings["Plugin settings"] = "Ustawienia wtyczek"; +$a->strings["Connected apps"] = "Powiązane aplikacje"; +$a->strings["Export personal data"] = "Eksportuje dane personalne"; +$a->strings["Remove account"] = "Usuń konto"; +$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; +$a->strings["Update"] = "Zaktualizuj"; +$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się."; +$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email."; +$a->strings["Features updated"] = ""; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione."; +$a->strings["Wrong password."] = "Złe hasło."; +$a->strings["Password changed."] = "Hasło zostało zmianione."; +$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."; +$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy."; +$a->strings[" Name too short."] = "Za krótka nazwa."; +$a->strings["Wrong Password"] = "Złe hasło"; +$a->strings[" Not valid email."] = "Zły email."; +$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Zaktualizowano ustawienia."; +$a->strings["Add application"] = "Dodaj aplikacje"; +$a->strings["Consumer Key"] = "Klucz konsumenta"; +$a->strings["Consumer Secret"] = "Sekret konsumenta"; +$a->strings["Redirect"] = "Przekierowanie"; +$a->strings["Icon url"] = "Adres ikony"; +$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji."; +$a->strings["Connected Apps"] = "Powiązane aplikacje"; +$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od"; +$a->strings["No name"] = "Bez nazwy"; +$a->strings["Remove authorization"] = "Odwołaj upoważnienie"; +$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane"; +$a->strings["Plugin Settings"] = "Ustawienia wtyczki"; +$a->strings["Off"] = "Wyłącz"; +$a->strings["On"] = "Włącz"; +$a->strings["Additional Features"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["enabled"] = "włączony"; +$a->strings["disabled"] = "wyłączony"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"; +$a->strings["Connector Settings"] = "Ustawienia konektora"; +$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."; +$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:"; +$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Ochrona:"; +$a->strings["None"] = "Brak"; +$a->strings["Email login name:"] = "Login emaila:"; +$a->strings["Email password:"] = "Hasło emaila:"; +$a->strings["Reply-to address:"] = "Odpowiedz na adres:"; +$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail"; +$a->strings["Action after import:"] = "Akcja po zaimportowaniu:"; +$a->strings["Mark as seen"] = "Oznacz jako przeczytane"; +$a->strings["Move to folder"] = "Przenieś do folderu"; +$a->strings["Move to folder:"] = "Przenieś do folderu:"; +$a->strings["Display Settings"] = "Wyświetl ustawienia"; +$a->strings["Display Theme:"] = "Wyświetl motyw:"; +$a->strings["Mobile Theme:"] = "Mobilny motyw:"; +$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu"; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek"; +$a->strings["Infinite scroll"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"; +$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "Przeznacz to OpenID do logowania się na to konto."; +$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?"; +$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; +$a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych"; +$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Profil nie jest opublikowany"; +$a->strings["or"] = "lub"; +$a->strings["Your Identity Address is"] = "Twój adres identyfikacyjny to"; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."; +$a->strings["Advanced expiration settings"] = ""; +$a->strings["Advanced Expiration"] = ""; +$a->strings["Expire posts:"] = "Wygasające posty:"; +$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:"; +$a->strings["Expire starred posts:"] = ""; +$a->strings["Expire photos:"] = "Wygasające zdjęcia:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Ustawienia konta"; +$a->strings["Password Settings"] = "Ustawienia hasła"; +$a->strings["New Password:"] = "Nowe hasło:"; +$a->strings["Confirm:"] = "Potwierdź:"; +$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić."; +$a->strings["Current Password:"] = "Obecne hasło:"; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = "Hasło:"; +$a->strings["Basic Settings"] = "Ustawienia podstawowe"; +$a->strings["Full Name:"] = "Imię i nazwisko:"; +$a->strings["Email Address:"] = "Adres email:"; +$a->strings["Your Timezone:"] = "Twoja strefa czasowa:"; +$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:"; +$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:"; +$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności"; +$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"; +$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)"; +$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości"; +$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)"; +$a->strings["Show to Groups"] = "Pokaż Grupy"; +$a->strings["Show to Contacts"] = "Pokaż kontakty"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Ustawienia powiadomień"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Wyślij powiadmonienia na email, kiedy:"; +$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie"; +$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone"; +$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej"; +$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący."; +$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość"; +$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych"; +$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$a->strings["Profile deleted."] = "Konto usunięte."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Utworzono nowy profil."; +$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu "; +$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Likes"] = "Polubień"; +$a->strings["Dislikes"] = "Nie lubień"; +$a->strings["Work/Employment"] = "Praca/Zatrudnienie"; +$a->strings["Religion"] = "Religia"; +$a->strings["Political Views"] = "Poglądy polityczne"; +$a->strings["Gender"] = "Płeć"; +$a->strings["Sexual Preference"] = "Orientacja seksualna"; +$a->strings["Homepage"] = "Strona Główna"; +$a->strings["Interests"] = "Zainteresowania"; +$a->strings["Address"] = "Adres"; +$a->strings["Location"] = "Położenie"; +$a->strings["Profile updated."] = "Konto zaktualizowane."; +$a->strings[" and "] = " i "; +$a->strings["public profile"] = "profil publiczny"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"; +$a->strings["Edit Profile Details"] = "Edytuj profil."; +$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie"; +$a->strings["View this profile"] = "Zobacz ten profil"; +$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia"; +$a->strings["Clone this profile"] = "Sklonuj ten profil"; +$a->strings["Delete this profile"] = "Usuń ten profil"; +$a->strings["Profile Name:"] = "Nazwa profilu :"; +$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:"; +$a->strings["Title/Description:"] = "Tytuł/Opis :"; +$a->strings["Your Gender:"] = "Twoja płeć:"; +$a->strings["Birthday (%s):"] = "Urodziny (%s):"; +$a->strings["Street Address:"] = "Ulica:"; +$a->strings["Locality/City:"] = "Miejscowość/Miasto :"; +$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :"; +$a->strings["Country:"] = "Kraj:"; +$a->strings["Region/State:"] = "Region / Stan :"; +$a->strings[" Marital Status:"] = " Stan :"; +$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Od [data]:"; +$a->strings["Sexual Preference:"] = "Interesują mnie:"; +$a->strings["Homepage URL:"] = "Strona główna URL:"; +$a->strings["Hometown:"] = "Miasto rodzinne:"; +$a->strings["Political Views:"] = "Poglądy polityczne:"; +$a->strings["Religious Views:"] = "Poglądy religijne:"; +$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :"; +$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :"; +$a->strings["Likes:"] = "Lubi:"; +$a->strings["Dislikes:"] = ""; +$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)"; +$a->strings["Tell us about yourself..."] = "Napisz o sobie..."; +$a->strings["Hobbies/Interests"] = "Zainteresowania"; +$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne"; +$a->strings["Musical interests"] = "Muzyka"; +$a->strings["Books, literature"] = "Literatura"; +$a->strings["Television"] = "Telewizja"; +$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Love/romance"] = "Miłość/romans"; +$a->strings["Work/employment"] = "Praca/zatrudnienie"; +$a->strings["School/education"] = "Szkoła/edukacja"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu."; +$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami"; +$a->strings["Group created."] = "Grupa utworzona."; +$a->strings["Could not create group."] = "Nie mogę stworzyć grupy"; +$a->strings["Group not found."] = "Nie znaleziono grupy"; +$a->strings["Group name changed."] = "Nazwa grupy zmieniona"; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych."; +$a->strings["Group Name: "] = "Nazwa grupy: "; +$a->strings["Group removed."] = "Grupa usunięta."; +$a->strings["Unable to remove group."] = "Nie można usunąć grupy."; +$a->strings["Group Editor"] = "Edytor grupy"; +$a->strings["Members"] = "Członkowie"; +$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia."; +$a->strings["Source (bbcode) text:"] = "Źródło - tekst (BBcode) :"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Źródło tekst (Diaspora) by przekonwerterować na BBcode :"; +$a->strings["Source input: "] = "Źródło wejścia:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Źródło wejścia(format Diaspory):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Not available."] = "Niedostępne."; +$a->strings["Contact added"] = "Kontakt dodany"; +$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych."; +$a->strings["System Notifications"] = "Powiadomienia systemowe"; +$a->strings["New Message"] = "Nowa wiadomość"; +$a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych."; +$a->strings["Messages"] = "Wiadomości"; +$a->strings["Do you really want to delete this message?"] = "Czy na pewno chcesz usunąć tę wiadomość?"; +$a->strings["Message deleted."] = "Wiadomość usunięta."; +$a->strings["Conversation removed."] = "Rozmowa usunięta."; +$a->strings["No messages."] = "Brak wiadomości."; +$a->strings["Unknown sender - %s"] = "Nieznany wysyłający - %s"; +$a->strings["You and %s"] = "Ty i %s"; +$a->strings["%s and You"] = "%s i ty"; +$a->strings["Delete conversation"] = "Usuń rozmowę"; +$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM"; +$a->strings["%d message"] = array( + 0 => " %d wiadomość", + 1 => " %d wiadomości", + 2 => " %d wiadomości", +); +$a->strings["Message not available."] = "Wiadomość nie jest dostępna."; +$a->strings["Delete message"] = "Usuń wiadomość"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Odpowiedz"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s"; $a->strings["Post successful."] = "Post dodany pomyślnie"; -$a->strings["OpenID protocol error. No ID returned."] = "błąd OpenID . Brak zwróconego ID. "; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie."; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Time Conversion"] = "Zmiana czasu"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "Czas UTC %s"; +$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s"; +$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s"; +$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:"; +$a->strings["Save to Folder:"] = "Zapisz w folderze:"; +$a->strings["- select -"] = "- wybierz -"; +$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika."; +$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu"; +$a->strings["Visible To"] = "Widoczne dla"; +$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"; +$a->strings["No contacts."] = "brak kontaktów"; +$a->strings["View Contacts"] = "widok kontaktów"; +$a->strings["People Search"] = "Szukaj osób"; +$a->strings["No matches"] = "brak dopasowań"; +$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie"; +$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne."; +$a->strings["Album not found."] = "Album nie znaleziony"; +$a->strings["Delete Album"] = "Usuń album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"; +$a->strings["Delete Photo"] = "Usuń zdjęcie"; +$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = "zdjęcie"; +$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru"; +$a->strings["Image file is empty."] = "Plik obrazka jest pusty."; +$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się."; +$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się"; +$a->strings["No photos selected"] = "Nie zaznaczono zdjęć"; +$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Prześlij zdjęcia"; +$a->strings["New album name: "] = "Nazwa nowego albumu:"; +$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:"; +$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania"; +$a->strings["Permissions"] = "Uprawnienia"; +$a->strings["Private Photo"] = "Zdjęcie prywatne"; +$a->strings["Public Photo"] = "Zdjęcie publiczne"; +$a->strings["Edit Album"] = "Edytuj album"; +$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze"; +$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze"; +$a->strings["View Photo"] = "Zobacz zdjęcie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony."; +$a->strings["Photo not available"] = "Zdjęcie niedostępne"; +$a->strings["View photo"] = "Zobacz zdjęcie"; +$a->strings["Edit photo"] = "Edytuj zdjęcie"; +$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe"; +$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze"; +$a->strings["Tags: "] = "Tagi:"; +$a->strings["[Remove any tag]"] = "[Usunąć znacznik]"; +$a->strings["Rotate CW (right)"] = "Obróć CW (w prawo)"; +$a->strings["Rotate CCW (left)"] = "Obróć CCW (w lewo)"; +$a->strings["New album name"] = "Nazwa nowego albumu"; +$a->strings["Caption"] = "Zawartość"; +$a->strings["Add a Tag"] = "Dodaj tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Prywatne zdjęcie."; +$a->strings["Public photo"] = "Zdjęcie publiczne"; +$a->strings["Share"] = "Podziel się"; +$a->strings["View Album"] = "Zobacz album"; +$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia"; +$a->strings["File exceeds size limit of %d"] = "Plik przekracza dozwolony rozmiar %d"; +$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się."; +$a->strings["No videos selected"] = "Nie zaznaczono filmów"; +$a->strings["View Video"] = "Zobacz film"; +$a->strings["Recent Videos"] = "Ostatnio dodane filmy"; +$a->strings["Upload New Videos"] = "Wstaw nowe filmy"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = "Zrób ten post prywatnym"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Export account"] = "Eksportuj konto"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = "Eksportuj wszystko"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["Common Friends"] = "Wspólni znajomi"; +$a->strings["No contacts in common."] = "Brak wspólnych kontaktów."; +$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d"; +$a->strings["Wall Photos"] = "Tablica zdjęć"; $a->strings["Image uploaded but image cropping failed."] = "Obrazek załadowany, ale oprawanie powiodła się."; $a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; @@ -1567,97 +1152,542 @@ $a->strings["Crop Image"] = "Przytnij zdjęcie"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."; $a->strings["Done Editing"] = "Zakończ Edycję "; $a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie "; -$a->strings["Not available."] = "Niedostępne."; -$a->strings["%d comment"] = array( - 0 => " %d komentarz", - 1 => " %d komentarzy", - 2 => " %d komentarzy", +$a->strings["Applications"] = "Aplikacje"; +$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji."; +$a->strings["Nothing new here"] = "Brak nowych zdarzeń"; +$a->strings["Clear notifications"] = "Wyczyść powiadomienia"; +$a->strings["Profile Match"] = "Profil zgodny "; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."; +$a->strings["is interested in:"] = "interesuje się:"; +$a->strings["Tag removed"] = "Tag usunięty"; +$a->strings["Remove Item Tag"] = "Usuń pozycję Tag"; +$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia"; +$a->strings["Remove"] = "Usuń"; +$a->strings["Event title and start time are required."] = "Wymagany tytuł wydarzenia i czas rozpoczęcia."; +$a->strings["l, F j"] = "d, M d "; +$a->strings["Edit event"] = "Edytuj wydarzenie"; +$a->strings["link to source"] = "link do źródła"; +$a->strings["Create New Event"] = "Stwórz nowe wydarzenie"; +$a->strings["Previous"] = "Poprzedni"; +$a->strings["hour:minute"] = "godzina:minuta"; +$a->strings["Event details"] = "Szczegóły wydarzenia"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Wymagany format %s %s. Data rozpoczęcia i Tytuł są konieczne."; +$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:"; +$a->strings["Required"] = "Wymagany"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna"; +$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:"; +$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza"; +$a->strings["Description:"] = "Opis:"; +$a->strings["Title:"] = "Tytuł:"; +$a->strings["Share this event"] = "Udostępnij te wydarzenie"; +$a->strings["No potential page delegates located."] = ""; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Dodaj"; +$a->strings["No entries."] = "Brak wpisów."; +$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy"; +$a->strings["Files"] = "Pliki"; +$a->strings["System down for maintenance"] = ""; +$a->strings["Remove My Account"] = "Usuń konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."; +$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji."; +$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana."; +$a->strings["Suggest Friends"] = "Zaproponuj znajomych"; +$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s"; +$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości."; +$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony."; +$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"; +$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."; +$a->strings["%s posted an update."] = "%s zaktualizował wpis."; +$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym"; +$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość"; +$a->strings["{0} requested registration"] = "{0} żądana rejestracja"; +$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis"; +$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s"; +$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s"; +$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s"; +$a->strings["{0} posted"] = "{0} utworzony"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie"; +$a->strings["OpenID protocol error. No ID returned."] = "błąd OpenID . Brak zwróconego ID. "; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nie znaleziono konta i OpenID rejestracja nie jest dopuszczalna na tej stronie."; +$a->strings["Login failed."] = "Niepowodzenie logowania"; +$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania."; +$a->strings["Discard"] = "Odrzuć"; +$a->strings["System"] = "System"; +$a->strings["Network"] = "Sieć"; +$a->strings["Introductions"] = "Wstępy"; +$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania"; +$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania"; +$a->strings["Notification type: "] = "Typ zawiadomień:"; +$a->strings["Friend Suggestion"] = "Propozycja znajomych"; +$a->strings["suggested by %s"] = "zaproponowane przez %s"; +$a->strings["Post a new friend activity"] = "Pisz o nowej działalności przyjaciela"; +$a->strings["if applicable"] = "jeśli odpowiednie"; +$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:"; +$a->strings["yes"] = "tak"; +$a->strings["no"] = "nie"; +$a->strings["Approve as: "] = "Zatwierdź jako:"; +$a->strings["Friend"] = "Znajomy"; +$a->strings["Sharer"] = "Udostępniający/a"; +$a->strings["Fan/Admirer"] = "Fan"; +$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych"; +$a->strings["New Follower"] = "Nowy obserwator"; +$a->strings["No introductions."] = "Brak wstępu."; +$a->strings["Notifications"] = "Powiadomienia"; +$a->strings["%s liked %s's post"] = "%s polubił wpis %s"; +$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s"; +$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s"; +$a->strings["%s created a new post"] = "%s dodał nowy wpis"; +$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s"; +$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych"; +$a->strings["Network Notifications"] = "Powiadomienia z sieci"; +$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych"; +$a->strings["Personal Notifications"] = "Prywatne powiadomienia"; +$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu"; +$a->strings["Home Notifications"] = "Powiadomienia z instancji"; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email."; +$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane."; +$a->strings["%d message sent."] = array( + 0 => "%d wiadomość wysłana.", + 1 => "%d wiadomości wysłane.", + 2 => "%d wysłano .", ); -$a->strings["like"] = "polub"; -$a->strings["dislike"] = "Nie lubię"; -$a->strings["Share this"] = "Udostępnij to"; -$a->strings["share"] = "udostępnij"; -$a->strings["Bold"] = "Pogrubienie"; -$a->strings["Italic"] = "Kursywa"; -$a->strings["Underline"] = "Podkreślenie"; -$a->strings["Quote"] = "Cytat"; -$a->strings["Code"] = "Kod"; -$a->strings["Image"] = "Obraz"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["add star"] = "dodaj gwiazdkę"; -$a->strings["remove star"] = "anuluj gwiazdkę"; -$a->strings["toggle star status"] = "włącz status gwiazdy"; -$a->strings["starred"] = "gwiazdką"; -$a->strings["add tag"] = "dodaj tag"; -$a->strings["save to folder"] = "zapisz w folderze"; -$a->strings["to"] = "do"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["This entry was edited"] = ""; -$a->strings["via"] = "przez"; -$a->strings["Theme settings"] = "Ustawienia motywu"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy"; -$a->strings["Set theme width"] = "Ustaw szerokość motywu"; -$a->strings["Color scheme"] = "Zestaw kolorów"; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = "Zestaw kolorów"; -$a->strings["Set twitter search term"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = "Strony społecznościowe"; -$a->strings["Earth Layers"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = "Połączone serwisy"; -$a->strings["Find Friends"] = "Znajdź znajomych"; -$a->strings["Last tweets"] = "Ostatnie tweetnięcie"; -$a->strings["Last users"] = "Ostatni użytkownicy"; -$a->strings["Last photos"] = "Ostatnie zdjęcia"; -$a->strings["Last likes"] = "Ostatnie polubienia"; -$a->strings["Your contacts"] = "Twoje kontakty"; -$a->strings["Local Directory"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Last Tweets"] = "Ostatnie Tweetnięcie"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set colour scheme"] = "Zestaw kolorów"; -$a->strings["Alignment"] = "Wyrównanie"; -$a->strings["Left"] = "Lewo"; -$a->strings["Center"] = "Środek"; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["toggle mobile"] = "przełącz na mobilny"; -$a->strings["Delete this item?"] = "Usunąć ten element?"; -$a->strings["show fewer"] = "Pokaż mniej"; -$a->strings["Update %s failed. See error logs."] = ""; -$a->strings["Update Error at %s"] = ""; -$a->strings["Create a New Account"] = "Załóż nowe konto"; -$a->strings["Nickname or Email address: "] = "Nick lub adres email:"; -$a->strings["Password: "] = "Hasło:"; -$a->strings["Remember me"] = "Zapamiętaj mnie"; -$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:"; -$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?"; -$a->strings["Website Terms of Service"] = ""; -$a->strings["terms of service"] = ""; -$a->strings["Website Privacy Policy"] = ""; -$a->strings["privacy policy"] = "polityka prywatności"; -$a->strings["Requested account is not available."] = ""; -$a->strings["Edit profile"] = "Edytuj profil"; -$a->strings["Message"] = "Wiadomość"; -$a->strings["Manage/edit profiles"] = "Zarządzaj profilami"; -$a->strings["g A l F d"] = "g A I F d"; -$a->strings["F d"] = ""; -$a->strings["[today]"] = "[dziś]"; -$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach"; -$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:"; -$a->strings["[No description]"] = "[Brak opisu]"; -$a->strings["Event Reminders"] = "Przypominacze wydarzeń"; -$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:"; -$a->strings["Status Messages and Posts"] = "Status wiadomości i postów"; -$a->strings["Profile Details"] = "Szczegóły profilu"; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz"; -$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć"; +$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "Wyślij zaproszenia"; +$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = ""; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami."; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:"; +$a->strings["Welcome to %s"] = "Witamy w %s"; +$a->strings["Friends of %s"] = "Znajomy %s"; +$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia"; +$a->strings["Add New Contact"] = "Dodaj nowy kontakt"; +$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d zaproszenie dostępne", + 1 => "%d zaproszeń dostępnych", + 2 => "%d zaproszenia dostępne", +); +$a->strings["Find People"] = "Znajdź ludzi"; +$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie"; +$a->strings["Connect/Follow"] = "Połącz/Obserwuj"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowalski, Wędkarstwo"; +$a->strings["Random Profile"] = "Domyślny profil"; +$a->strings["Networks"] = "Sieci"; +$a->strings["All Networks"] = "Wszystkie Sieci"; +$a->strings["Saved Folders"] = "Zapisane foldery"; +$a->strings["Everything"] = "Wszystko"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować."; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["view full size"] = "Zobacz w pełnym wymiarze"; +$a->strings["Starts:"] = "Start:"; +$a->strings["Finishes:"] = "Wykończenia:"; +$a->strings["(no subject)"] = "(bez tematu)"; +$a->strings["noreply"] = "brak odpowiedzi"; +$a->strings["An invitation is required."] = "Wymagane zaproszenie."; +$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane."; +$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "Komunikat o błędzie:"; +$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje"; +$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy."; +$a->strings["Name too short."] = "Nazwa jest za krótka."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie."; +$a->strings["Not a valid email address."] = "Niepoprawny adres e mail.."; +$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. "; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Twój login może składać się tylko z \"a-z\", \"0-9\", \"-\", \"_\", i musi mieć na początku literę."; +$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."; +$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."; +$a->strings["Friends"] = "Przyjaciele"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["poked"] = "zaczepiony"; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["remove"] = "usuń"; +$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy"; +$a->strings["Follow Thread"] = "Śledź wątek"; +$a->strings["View Status"] = "Zobacz status"; +$a->strings["View Profile"] = "Zobacz profil"; +$a->strings["View Photos"] = "Zobacz zdjęcia"; +$a->strings["Network Posts"] = ""; +$a->strings["Edit Contact"] = "Edytuj kontakt"; +$a->strings["Send PM"] = "Wyślij prywatną wiadomość"; +$a->strings["Poke"] = "Zaczepka"; +$a->strings["%s likes this."] = "%s lubi to."; +$a->strings["%s doesn't like this."] = "%s nie lubi tego."; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["and"] = "i"; +$a->strings[", and %d other people"] = ", i %d innych ludzi"; +$a->strings["%s like this."] = "%s lubi to."; +$a->strings["%s don't like this."] = "%s nie lubi tego."; +$a->strings["Visible to everybody"] = "Widoczne dla wszystkich"; +$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu"; +$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki"; +$a->strings["Tag term:"] = ""; +$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?"; +$a->strings["Delete item(s)?"] = "Usunąć pozycję (pozycje)?"; +$a->strings["Post to Email"] = "Wyślij poprzez email"; +$a->strings["permissions"] = "zezwolenia"; +$a->strings["Post to Groups"] = "Wstaw na strony grup"; +$a->strings["Post to Contacts"] = "Wstaw do kontaktów"; +$a->strings["Private post"] = "Prywatne posty"; +$a->strings["Logged out."] = "Wyloguj"; +$a->strings["Error decoding account file"] = "Błąd podczas odczytu pliku konta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = "Użytkownik '%s' już istnieje na tym serwerze!"; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "Nie zaimportowano %d kontaktu.", + 1 => "Nie zaimportowano %d kontaktów.", + 2 => "Nie zaimportowano %d kontaktów.", +); +$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."; +$a->strings["newer"] = "nowsze"; +$a->strings["older"] = "starsze"; +$a->strings["prev"] = "poprzedni"; +$a->strings["first"] = "pierwszy"; +$a->strings["last"] = "ostatni"; +$a->strings["next"] = "następny"; +$a->strings["No contacts"] = "Brak kontaktów"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontaktów", + 2 => "%d kontakty", +); +$a->strings["poke"] = "zaczep"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = "spoliczkuj"; +$a->strings["slapped"] = "spoliczkowany"; +$a->strings["finger"] = "dotknąć"; +$a->strings["fingered"] = "dotknięty"; +$a->strings["rebuff"] = "odprawiać"; +$a->strings["rebuffed"] = "odprawiony"; +$a->strings["happy"] = "szczęśliwy"; +$a->strings["sad"] = "smutny"; +$a->strings["mellow"] = "spokojny"; +$a->strings["tired"] = "zmęczony"; +$a->strings["perky"] = "pewny siebie"; +$a->strings["angry"] = "wściekły"; +$a->strings["stupified"] = "odurzony"; +$a->strings["puzzled"] = "zdziwiony"; +$a->strings["interested"] = "interesujący"; +$a->strings["bitter"] = "zajadły"; +$a->strings["cheerful"] = "wesoły"; +$a->strings["alive"] = "żywy"; +$a->strings["annoyed"] = "irytujący"; +$a->strings["anxious"] = "zazdrosny"; +$a->strings["cranky"] = "zepsuty"; +$a->strings["disturbed"] = "przeszkadzający"; +$a->strings["frustrated"] = "rozbity"; +$a->strings["motivated"] = "zmotywowany"; +$a->strings["relaxed"] = "zrelaksowany"; +$a->strings["surprised"] = "zaskoczony"; +$a->strings["Monday"] = "Poniedziałek"; +$a->strings["Tuesday"] = "Wtorek"; +$a->strings["Wednesday"] = "Środa"; +$a->strings["Thursday"] = "Czwartek"; +$a->strings["Friday"] = "Piątek"; +$a->strings["Saturday"] = "Sobota"; +$a->strings["Sunday"] = "Niedziela"; +$a->strings["January"] = "Styczeń"; +$a->strings["February"] = "Luty"; +$a->strings["March"] = "Marzec"; +$a->strings["April"] = "Kwiecień"; +$a->strings["May"] = "Maj"; +$a->strings["June"] = "Czerwiec"; +$a->strings["July"] = "Lipiec"; +$a->strings["August"] = "Sierpień"; +$a->strings["September"] = "Wrzesień"; +$a->strings["October"] = "Październik"; +$a->strings["November"] = "Listopad"; +$a->strings["December"] = "Grudzień"; +$a->strings["bytes"] = "bajty"; +$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć"; +$a->strings["Select an alternate language"] = "Wybierz alternatywny język"; +$a->strings["activity"] = "aktywność"; +$a->strings["post"] = "post"; +$a->strings["Item filed"] = ""; +$a->strings["Friendica Notification"] = "Powiadomienia Friendica"; +$a->strings["Thank You,"] = "Dziękuję,"; +$a->strings["%s Administrator"] = "%s administrator"; +$a->strings["%s "] = ""; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s"; +$a->strings["a private message"] = "prywatna wiadomość"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s skomentował [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz"; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s oznaczył/a cię w %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Imię:"; +$a->strings["Photo:"] = "Zdjęcie:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings[" on Last.fm"] = "na Last.fm"; +$a->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."] = ""; +$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; +$a->strings["Everybody"] = "Wszyscy"; +$a->strings["edit"] = "edytuj"; +$a->strings["Edit group"] = "Edytuj grupy"; +$a->strings["Create a new group"] = "Stwórz nową grupę"; +$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie"; +$a->strings["Connect URL missing."] = "Brak adresu URL połączenia."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"; +$a->strings["No compatible communication protocols or feeds were discovered."] = ""; +$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji."; +$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione."; +$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."; +$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych"; +$a->strings["following"] = "następujący"; +$a->strings["[no subject]"] = "[bez tematu]"; +$a->strings["End this session"] = "Zakończ sesję"; +$a->strings["Sign in"] = "Zaloguj się"; +$a->strings["Home Page"] = "Strona startowa"; +$a->strings["Create an account"] = "Załóż konto"; +$a->strings["Help and documentation"] = "Pomoc i dokumentacja"; +$a->strings["Apps"] = "Aplikacje"; +$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry"; +$a->strings["Search site content"] = "Przeszukaj zawartość strony"; +$a->strings["Conversations on this site"] = "Rozmowy na tej stronie"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = ""; +$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych"; +$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia"; +$a->strings["Mark all system notifications seen"] = "Oznacz wszystkie powiadomienia systemu jako przeczytane"; +$a->strings["Private mail"] = "Prywatne maile"; +$a->strings["Inbox"] = "Odebrane"; +$a->strings["Outbox"] = "Wysłane"; +$a->strings["Manage"] = "Zarządzaj"; +$a->strings["Manage other pages"] = "Zarządzaj innymi stronami"; +$a->strings["Delegations"] = ""; +$a->strings["Manage/Edit Profiles"] = "Zarządzaj/Edytuj profile"; +$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami"; +$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji"; +$a->strings["Navigation"] = "Nawigacja"; +$a->strings["Site map"] = "Mapa strony"; +$a->strings["j F, Y"] = "d M, R"; +$a->strings["j F"] = "d M"; +$a->strings["Birthday:"] = "Urodziny:"; +$a->strings["Age:"] = "Wiek:"; +$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s"; +$a->strings["Tags:"] = "Tagi:"; +$a->strings["Religion:"] = "Religia:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:"; +$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne"; +$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; +$a->strings["Books, literature:"] = "Książki, literatura:"; +$a->strings["Television:"] = "Telewizja:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka"; +$a->strings["Love/Romance:"] = "Miłość/Romans:"; +$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; +$a->strings["School/education:"] = "Szkoła/edukacja:"; +$a->strings["Image/photo"] = "Obrazek/zdjęcie"; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 napisał:"; +$a->strings["Encrypted content"] = "Szyfrowana treść"; +$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori"; +$a->strings["Block immediately"] = "Zablokować natychmiast "; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania"; +$a->strings["OK, probably harmless"] = "Ok, bez problemów"; +$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie"; +$a->strings["Weekly"] = "Tygodniowo"; +$a->strings["Monthly"] = "Miesięcznie"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Miscellaneous"] = "Różny"; +$a->strings["year"] = "rok"; +$a->strings["month"] = "miesiąc"; +$a->strings["day"] = "dzień"; +$a->strings["never"] = "nigdy"; +$a->strings["less than a second ago"] = "mniej niż sekundę temu"; +$a->strings["years"] = "lata"; +$a->strings["months"] = "miesiące"; +$a->strings["week"] = "tydzień"; +$a->strings["weeks"] = "tygodnie"; +$a->strings["days"] = "dni"; +$a->strings["hour"] = "godzina"; +$a->strings["hours"] = "godziny"; +$a->strings["minute"] = "minuta"; +$a->strings["minutes"] = "minuty"; +$a->strings["second"] = "sekunda"; +$a->strings["seconds"] = "sekundy"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s temu"; +$a->strings["%s's birthday"] = "Urodziny %s"; +$a->strings["Happy Birthday %s"] = "Urodziny %s"; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = "Podgląd posta"; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = "Szukanie wg daty"; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["Group Filter"] = "Filtrowanie grupowe"; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = "Oznaczanie"; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów"; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = "Oznacz posty gwiazdką"; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora"; +$a->strings["Attachments:"] = "Załączniki:"; +$a->strings["Visible to everybody"] = "Widoczny dla wszystkich"; +$a->strings["A new person is sharing with you at "] = ""; +$a->strings["You have a new follower at "] = ""; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Archives"] = "Archiwum"; +$a->strings["Embedded content"] = "Osadzona zawartość"; +$a->strings["Embedding disabled"] = "Osadzanie wyłączone"; +$a->strings["Welcome "] = "Witaj "; +$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe."; +$a->strings["Welcome back "] = "Witaj ponownie "; +$a->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."] = ""; +$a->strings["Male"] = "Mężczyzna"; +$a->strings["Female"] = "Kobieta"; +$a->strings["Currently Male"] = "Aktualnie Mężczyzna"; +$a->strings["Currently Female"] = "Aktualnie Kobieta"; +$a->strings["Mostly Male"] = "Bardziej Mężczyzna"; +$a->strings["Mostly Female"] = "Bardziej Kobieta"; +$a->strings["Transgender"] = "Transpłciowy"; +$a->strings["Intersex"] = "Międzypłciowy"; +$a->strings["Transsexual"] = "Transseksualista"; +$a->strings["Hermaphrodite"] = "Hermafrodyta"; +$a->strings["Neuter"] = "Bezpłciowy"; +$a->strings["Non-specific"] = "Niespecyficzne"; +$a->strings["Other"] = "Inne"; +$a->strings["Undecided"] = "Niezdecydowany"; +$a->strings["Males"] = "Mężczyźni"; +$a->strings["Females"] = "Kobiety"; +$a->strings["Gay"] = "Gej"; +$a->strings["Lesbian"] = "Lesbijka"; +$a->strings["No Preference"] = "Brak preferencji"; +$a->strings["Bisexual"] = "Biseksualny"; +$a->strings["Autosexual"] = "Niezidentyfikowany"; +$a->strings["Abstinent"] = "Abstynent"; +$a->strings["Virgin"] = "Dziewica"; +$a->strings["Deviant"] = "Zboczeniec"; +$a->strings["Fetish"] = "Fetysz"; +$a->strings["Oodles"] = "Nadmiar"; +$a->strings["Nonsexual"] = "Nieseksualny"; +$a->strings["Single"] = "Singiel"; +$a->strings["Lonely"] = "Samotny"; +$a->strings["Available"] = "Dostępny"; +$a->strings["Unavailable"] = "Niedostępny"; +$a->strings["Has crush"] = ""; +$a->strings["Infatuated"] = "zakochany"; +$a->strings["Dating"] = "Randki"; +$a->strings["Unfaithful"] = "Niewierny"; +$a->strings["Sex Addict"] = "Uzależniony od seksu"; +$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści"; +$a->strings["Casual"] = "Przypadkowy"; +$a->strings["Engaged"] = "Zaręczeni"; +$a->strings["Married"] = "Małżeństwo"; +$a->strings["Imaginarily married"] = "Fikcyjnie w związku małżeńskim"; +$a->strings["Partners"] = "Partnerzy"; +$a->strings["Cohabiting"] = "Konkubinat"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Szczęśliwy"; +$a->strings["Not looking"] = ""; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Zdradzony"; +$a->strings["Separated"] = "W separacji"; +$a->strings["Unstable"] = "Niestabilny"; +$a->strings["Divorced"] = "Rozwiedzeni"; +$a->strings["Imaginarily divorced"] = "Fikcyjnie rozwiedziony/a"; +$a->strings["Widowed"] = "Wdowiec"; +$a->strings["Uncertain"] = "Nieokreślony"; +$a->strings["It's complicated"] = "To skomplikowane"; +$a->strings["Don't care"] = "Nie obchodzi mnie to"; +$a->strings["Ask me"] = "Zapytaj mnie "; +$a->strings["stopped following"] = "przestań obserwować"; +$a->strings["Drop Contact"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'"; diff --git a/view/templates/acl_selector.tpl b/view/templates/acl_selector.tpl index 5fd11e7569..6b6f1be4a9 100644 --- a/view/templates/acl_selector.tpl +++ b/view/templates/acl_selector.tpl @@ -1,8 +1,4 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} +
{{$showall}} @@ -24,7 +20,8 @@ $(document).ready(function() { if(typeof acl=="undefined"){ acl = new ACL( baseurl+"/acl", - [ {{$allowcid}},{{$allowgid}},{{$denycid}},{{$denygid}} ] + [ {{$allowcid}},{{$allowgid}},{{$denycid}},{{$denygid}} ], + {{$features.aclautomention}} ); } }); diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 7d0e6d8f46..6791fb87f3 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -89,6 +89,7 @@ {{include file="field_checkbox.tpl" field=$enotify_no_content}} {{include file="field_checkbox.tpl" field=$private_addons}} {{include file="field_checkbox.tpl" field=$disable_embedded}} + {{include file="field_checkbox.tpl" field=$allow_users_remote_self}}

{{$advanced}}

diff --git a/view/templates/contact_template.tpl b/view/templates/contact_template.tpl index 8e0e1acc7f..196254960b 100644 --- a/view/templates/contact_template.tpl +++ b/view/templates/contact_template.tpl @@ -1,8 +1,3 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}}
@@ -12,15 +7,16 @@ {{$contact.name}} + {{if $contact.photo_menu}} menu
    - {{foreach $contact.photo_menu as $c}} + {{foreach $contact.photo_menu as $k=>$c}} {{if $c.2}} -
  • {{$c.0}}
  • +
  • {{$c.0}}
  • {{else}} -
  • {{$c.0}}
  • +
  • {{$c.0}}
  • {{/if}} {{/foreach}}
diff --git a/view/templates/contacts-template.tpl b/view/templates/contacts-template.tpl index 66f3f5c87b..774bc00deb 100644 --- a/view/templates/contacts-template.tpl +++ b/view/templates/contacts-template.tpl @@ -1,8 +1,4 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} +

{{$header}}{{if $total}} ({{$total}}){{/if}}

{{if $finding}}

{{$finding}}

{{/if}} @@ -18,11 +14,44 @@ {{$tabs}} - +
{{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} {{/foreach}}
+
+{{foreach $batch_actions as $n=>$l}} + + {{/foreach}} +
+
+ {{$paginate}} diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index 5278e42f08..5cc4462b39 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -1,9 +1,3 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -

{{$contact_name}}

@@ -43,6 +37,10 @@
+{{if $allow_remote_self eq 1}} +

{{$label_remote_self}}

+{{include file="field_checkbox.tpl" field=$remote_self}} +{{/if}} {{include file="field_checkbox.tpl" field=$contact_self}} diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 527b2f4d86..77362e5524 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -91,6 +91,7 @@ nav { display: block; margin: 0px 10%; border-bottom: 1px solid #babdb6; + position: relative; } nav #site-location { color: #888a85; @@ -1616,6 +1617,9 @@ input#dfrn-url { margin-top: 20px; } +.contact-select { position: absolute; top: 64px; left:64px; display:none; } +.contact-select:checked, +.contact-entry-photo:hover .contact-select { display:block; } .contact-photo-menu-button { position: absolute; @@ -2905,6 +2909,8 @@ aside input[type='text'] { .field.radio .field_help { margin-left: 0px; } + + /** * ADMIN */ @@ -3252,7 +3258,7 @@ ul.menu-popup { list-style: none; z-index: 100000; top: 90px; - left: 400px; + left: 200px; } #nav-notifications-menu { width: 320px; @@ -3328,3 +3334,63 @@ ul.menu-popup { .shared_header span { margin-left: 10px; } + +/* small screens */ +@media all and (max-width: 1089px) { + .field label { width: 90%; } + .field input, .field textarea, .field select { width: 90%; } + .field input[type="checkbox"],.field input[type="radio"] { + width: 2em; + } + #id_openid_url { width: 85%; } + .field_help { margin-left: 0px; } + textarea { width: 100%; } +} +@media all and (max-width: 760px) { + body { background-image: none; } + nav, aside, section, footer { + margin: 0px; + float: none; + position: relative; + width: 100%; + padding: 0.5em; + height: auto; + } + aside:before { + content: ">>"; + display: block; + background-color: #eee; + } + aside { overflow: hidden; min-height: 0; height: 1em;} + aside:hover, aside:focus { height: auto; } + + nav .nav-link { + float: left; + width: 23%; + min-width: 100px; + height: 15px; + display: block; + margin: 0.4em 2px 0 0; + + padding: 6px 3px; + border-width: 1px 1px 0px; + border-style: solid solid none; + border-color: rgb(186, 189, 182); + background-color: rgb(174, 192,211)!important; + } + .nav-commlink.selected, + .nav-commlink { + border-bottom: 0px; + padding: 6px 3px; + min-width: 100px; + float: left; + margin-top: 0.4em; + width: 23%; + bottom: auto; + } + .nav-ajax-left {margin-left: -1em; margin-top: 0px; } + nav #site-location, + nav #banner { position: relative; clear:both; } + ul.menu-popup { left: 0px; top 20px; } + +} \ No newline at end of file diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index e72e557038..ec4e6ad106 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1349,6 +1349,19 @@ span[id^="showmore-wrap"] { .contact-photo-wrapper { position: relative; } +.contact-select { + position: absolute; + top: 64px; + left: 64px; + display: none; +} +.contact-select:checked, +.contact-photo:hover .contact-select { + display: block; +} +#contats-actions { + clear: both; +} .contact-photo { width: 48px; height: 48px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 8e6a020b8a..d78a06dc7c 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1349,6 +1349,19 @@ span[id^="showmore-wrap"] { .contact-photo-wrapper { position: relative; } +.contact-select { + position: absolute; + top: 64px; + left: 64px; + display: none; +} +.contact-select:checked, +.contact-photo:hover .contact-select { + display: block; +} +#contats-actions { + clear: both; +} .contact-photo { width: 48px; height: 48px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index d35ad52ed0..8c2e147fa8 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1349,6 +1349,19 @@ span[id^="showmore-wrap"] { .contact-photo-wrapper { position: relative; } +.contact-select { + position: absolute; + top: 64px; + left: 64px; + display: none; +} +.contact-select:checked, +.contact-photo:hover .contact-select { + display: block; +} +#contats-actions { + clear: both; +} .contact-photo { width: 48px; height: 48px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 6287a05ef8..768f1cab29 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -527,7 +527,8 @@ section { .contact-photo-wrapper { margin-left: 16px; } .contact-photo { width: 32px; height: 32px; - } + } + .contact-photo-menu-button { top: 15px !important; left: 0px !important; @@ -738,6 +739,10 @@ span[id^="showmore-wrap"] { .contact-photo-wrapper { position: relative; } +.contact-select { position: absolute; top:64px; left:64px; display:none; } +.contact-select:checked, +.contact-photo:hover .contact-select { display:block; } +#contats-actions { clear: both; } .contact-photo { width: 48px; height: 48px; img { width: 48px; height: 48px; } diff --git a/view/theme/quattro/templates/contact_template.tpl b/view/theme/quattro/templates/contact_template.tpl index c74a513b8f..a63ffb3c9a 100644 --- a/view/theme/quattro/templates/contact_template.tpl +++ b/view/theme/quattro/templates/contact_template.tpl @@ -1,8 +1,3 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}}
@@ -12,6 +7,7 @@ {{$contact.name}} + {{if $contact.photo_menu}} menu