]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/master'
authorMichael Vogel <icarus@dabo.de>
Sun, 5 Jan 2014 15:22:42 +0000 (16:22 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 5 Jan 2014 15:22:42 +0000 (16:22 +0100)
Conflicts:
mod/crepair.php

35 files changed:
boot.php
include/Contact.php
include/acl_selectors.php
include/api.php
include/conversation.php
include/features.php
include/network.php
include/ostatus_conversation.php
js/acl.js
js/fk.autocomplete.js
library/slinky.php
mod/admin.php
mod/contacts.php
mod/crepair.php
mod/parse_url.php
mods/readme.txt
util/messages.po
view/de/messages.po
view/de/strings.php
view/pl/messages.po
view/pl/strings.php
view/templates/acl_selector.tpl
view/templates/admin_site.tpl
view/templates/contact_template.tpl
view/templates/contacts-template.tpl
view/templates/crepair.tpl
view/theme/duepuntozero/style.css
view/theme/quattro/dark/style.css
view/theme/quattro/green/style.css
view/theme/quattro/lilac/style.css
view/theme/quattro/quattro.less
view/theme/quattro/templates/contact_template.tpl
view/theme/vier/style.css
view/theme/vier/templates/threaded_conversation.tpl
view/theme/vier/templates/wall_thread.tpl

index 72eaec8fe58db17bb87739926067901bb4e65202..9264d34fc0df93b3e9c3121964a1d99459513aea 100644 (file)
--- 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',                    "<br />\r\n"     );
index ce1edbcc2164cc2336047fcfc9b08dcc1449037d..af77869989713c4fec3ae266b0d2859f411240e7 100644 (file)
@@ -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),
index 6c0222e1c4f969d6fcf46d616999a6a88c5fdcdf..3306871d00ba3a27b65fe47bfba1e0bb103bb1f4 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 
 require_once("include/contact_selectors.php");
+require_once("include/features.php");
 
 /**
  * 
@@ -329,6 +330,9 @@ function populate_acl($user = null,$celeb = false) {
                '$allowgid' => 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']
                        );
                }                       
        }
index 3d8ecb35d30a9c8a8795c4e7e2f687e17805b196..9c3bb15244aa7d33366adffdf79b0a98805f1326 100644 (file)
@@ -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');
                }
                }
                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"));
 
        }
 
index 31f40aa6f8ca20767b47f90e94194719e091a8f5..5b9a11bde11c273acecd88e495111c24bcc7a06e 100644 (file)
@@ -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']);
 
                        }
index b2712665e159a8fad2779a7daf2c922b92441fe1..24955ba104f72c18b37a4875bb4d946c944e98d1 100644 (file)
@@ -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
index a4538e88ed79a92d54fc0182b150c6cfaad264b0..a663a6d94283ad896139315423c250b0c7d17a1a 100644 (file)
@@ -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;
index 65c0d67871bc8a988ccd6dcc27fdade0dfc4a0c7..ad90e3d3118c664861a753abb95a79465138717e 100644 (file)
@@ -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));
index fc6a6c0c1d4cb6283c89aef98cd0d1720fa701ba..eeea6a2938338f65417c57a08b9286a5abf95f73 100644 (file)
--- 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 = "<div class='acl-list-item {4} {5}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
-               html = html.format(this.photo, this.name, this.type, this.id, '', this.network, this.link);
+               html = "<div class='acl-list-item {4} {5} type{2}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
+               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();
 }
 
index b1bc40be28b12f4bf99c418a044396120ee80c61..2334bb4a2c19887b30f16fa761949fb2de4a1a43 100644 (file)
@@ -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 = $("<div class='acpopupitem' title='"+value+"'>"+label+"</div>");
        elm.click(function(e){
index cae1f755ff0fa56c75c98f77cf95a11ba2814403..fc3714c2019598395844317a8ed7ff8324ab6e0c 100644 (file)
@@ -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;
index dd9a0d475fe883669f9f23ee2ff9b2e55878803f..32a4ab531c62665a28b978c82535d150b6a137a1 100644 (file)
@@ -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")),
index f48978aaecadd11c953f2b2f3a6ec5c98f996d18..ad50376b704441f268571bcdd7e25530854aec8b 100644 (file)
@@ -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),
 
        )); 
index 171e88f3120f3a510b30a22764609e271d298ccb..0fdab7eebe1cd7cacde8e66a115ab11142d59ab0 100644 (file)
@@ -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;
 
index cb7268c1df83acd0e14bb9db4e0b1617346e2bc4..cf52011f158eb373bfec7741e44b4977bff7cdcc 100644 (file)
@@ -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 = "<br /><a class=\"bookmark\" href=\"%s\" >%s</a>%s<br />";
+               $template = "<a class=\"bookmark\" href=\"%s\" >%s</a>%s<br />";
 
        $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 = '<br /><blockquote>' . trim($text) . '</blockquote><br />';
+                       $text = '<blockquote>' . trim($text) . '</blockquote><br />';
 
                $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 = '<br /><blockquote>'.trim($text).'</blockquote><br />';
+                       $text = '<blockquote>'.trim($text).'</blockquote>';
        }
 
        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();
 }
index d74b846d00005733a5da998b4095db2a4e4a7f55..9f47f85d5a21742ca139e62ecef92a6cbdda9ef2 100644 (file)
@@ -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`);
index ce6cd4cf9ba22ef1be4d1b44af4ed7b8a53b8529..8d506555187e6e70898dbc62a53bc091a163b80e 100644 (file)
@@ -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 <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\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 <a href=\"http://friendica.com\">Friendica.com</a> 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 '<strong>nickname@$sitename</"
 "strong>'."
 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 <scheme>://<domain>"
 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 - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 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 "Disallow users to register additional accounts for use as pages."
+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 "OpenID support"
+msgid "Block multiple registrations"
 msgstr ""
 
 #: ../../mod/admin.php:609
-msgid "OpenID support for registration and logins."
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
 #: ../../mod/admin.php:610
-msgid "Fullname check"
+msgid "OpenID support"
 msgstr ""
 
 #: ../../mod/admin.php:610
+msgid "OpenID support for registration and logins."
+msgstr ""
+
+#: ../../mod/admin.php:611
+msgid "Fullname check"
+msgstr ""
+
+#: ../../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 ""
 "<strong>WARNING: This is highly advanced</strong> 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 <strong>now</strong> 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 <strong>may</strong> 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 <strong>not published</strong>."
 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 <em>interesting</em> 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 ""
 "<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
 "href=\"%s\" target=\"external-link\">post</a>"
 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 ""
 
index 36e2165f5a7762552e8bd62965d2b463149fab49..453536230b6873d03092abb606f2fec7f3e4b6e1 100644 (file)
@@ -17,7 +17,7 @@
 # Oliver <post@toktan.org>, 2012
 # Sennewood <sebastian@sebsen.net>, 2013
 # Sennewood <sebastian@sebsen.net>, 2012-2013
-# bavatar <tobias.diekershoff@gmx.net>, 2013
+# bavatar <tobias.diekershoff@gmx.net>, 2013-2014
 # bavatar <tobias.diekershoff@gmx.net>, 2011-2013
 # zottel <transifex@zottel.net>, 2011-2012
 # tschlotfeldt <ts+transifex@ml.tschlotfeldt.de>, 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 <tobias.diekershoff@gmx.net>\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 <a href=\"http://friendica.com\">Friendica.com</a> to learn "
 "more about the Friendica project."
 msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, 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 "
 "'<strong>nickname@$sitename</strong>'."
 msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' 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 <scheme>://<domain>"
 msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> 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 - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../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 ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
 msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> 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 <strong>now</strong> if you are "
 "uncertain what to do on this page."
 msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, 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 <strong>may</strong> still be visible"
 msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> 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 <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../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 <em>interesting</em> profile change"
 msgstr "– du eine <em>interessante</em> Ä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 ""
 "<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
 "href=\"%s\" target=\"external-link\">post</a>"
 msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
 
-#: ../../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"
 
index 2fc9ca32b7d509b62ee3b965439bed1f4dd12676..285ff015fecdd38e86c81d50b9b3e73b0260b2fe 100644 (file)
@@ -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:";
index ebe9a336acf76857d3299ea51bcfba5eb11bdd7e..5b60a7cd8c13fba3c6700b0f59ef334355279d96 100644 (file)
 # karolina.walkowiak <karolinaa9506@gmail.com>, 2013
 # szymon.filip <koalamis0@gmail.com>, 2013
 # szymon.filip <koalamis0@gmail.com>, 2012
+# maianhania <maianhania@yahoo.com>, 2013
 # Piszu <mariusz.pisz@zhp.net.pl>, 2013
 # Lea1995polish <m.dauter@tlen.pl>, 2012
+# MagdaPortu <mgazda75@gmail.com>, 2013
 # mhnxo <mhnxo123@gmail.com>, 2012
 # Molka <michalina-korzeniowska@wp.pl>, 2012
 # marcin.klessa <nauczyciello@o2.pl>, 2012
 # Pitruss <piotr.blonkowski@gmail.com>, 2012-2013
 # Oninix <d.exax@hotmail.com>, 2013
 # emilia.krawczyk <rightxhere1@gmail.com>, 2012
+# sam01, 2013
 # rcmaniac <szsargalski@interia.pl>, 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 <d.exax@hotmail.com>\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 <mgazda75@gmail.com>\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,4925 +45,4926 @@ 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
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "od %1$d %2$s"
+#: ../../object/Item.php:194 ../../mod/content.php:754
+msgid "toggle star status"
+msgstr "włącz status gwiazdy"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650
-msgid "Sexual Preference:"
-msgstr "Interesują mnie:"
+#: ../../object/Item.php:197 ../../mod/content.php:757
+msgid "starred"
+msgstr "gwiazdką"
 
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1496
-msgid "Homepage:"
-msgstr "Strona główna:"
+#: ../../object/Item.php:202 ../../mod/content.php:758
+msgid "add tag"
+msgstr "dodaj tag"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652
-msgid "Hometown:"
-msgstr "Miasto rodzinne:"
+#: ../../object/Item.php:213 ../../mod/content.php:683
+#: ../../mod/photos.php:1529
+msgid "I like this (toggle)"
+msgstr "Lubię to (zmień)"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tagi:"
+#: ../../object/Item.php:213 ../../mod/content.php:683
+msgid "like"
+msgstr "polub"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653
-msgid "Political Views:"
-msgstr "Poglądy polityczne:"
+#: ../../object/Item.php:214 ../../mod/content.php:684
+#: ../../mod/photos.php:1530
+msgid "I don't like this (toggle)"
+msgstr "Nie lubię (zmień)"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religia:"
+#: ../../object/Item.php:214 ../../mod/content.php:684
+msgid "dislike"
+msgstr "Nie lubię"
 
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
-msgid "About:"
-msgstr "O:"
+#: ../../object/Item.php:216 ../../mod/content.php:686
+msgid "Share this"
+msgstr "Udostępnij to"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Zainteresowania:"
+#: ../../object/Item.php:216 ../../mod/content.php:686
+msgid "share"
+msgstr "udostępnij"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657
-msgid "Likes:"
-msgstr "Lubi:"
+#: ../../object/Item.php:278 ../../include/conversation.php:663
+msgid "Categories:"
+msgstr "Kategorie:"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658
-msgid "Dislikes:"
-msgstr ""
+#: ../../object/Item.php:279 ../../include/conversation.php:664
+msgid "Filed under:"
+msgstr "Zapisano pod:"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informacje kontaktowe i sieci społeczne"
+#: ../../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 "View %s's profile @ %s"
+msgstr "Pokaż %s's profil @ %s"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Zainteresowania muzyczne:"
+#: ../../object/Item.php:289 ../../mod/content.php:853
+msgid "to"
+msgstr "do"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Książki, literatura:"
+#: ../../object/Item.php:290
+msgid "via"
+msgstr "przez"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Telewizja:"
+#: ../../object/Item.php:291 ../../mod/content.php:854
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/taniec/kultura/rozrywka"
+#: ../../object/Item.php:292 ../../mod/content.php:855
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Miłość/Romans:"
+#: ../../object/Item.php:301 ../../mod/content.php:481
+#: ../../mod/content.php:863 ../../include/conversation.php:671
+#, php-format
+msgid "%s from %s"
+msgstr "%s od %s"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Praca/zatrudnienie:"
+#: ../../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"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Szkoła/edukacja:"
+#: ../../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ć"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Mężczyzna"
+#: ../../object/Item.php:343 ../../mod/content.php:602
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] " %d komentarz"
+msgstr[1] " %d komentarzy"
+msgstr[2] " %d komentarzy"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Kobieta"
+#: ../../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/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Aktualnie Mężczyzna"
+#: ../../object/Item.php:346 ../../boot.php:686 ../../mod/content.php:605
+#: ../../include/contact_widgets.php:204
+msgid "show more"
+msgstr "Pokaż więcej"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Aktualnie Kobieta"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Bardziej Mężczyzna"
+#: ../../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ź"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Bardziej Kobieta"
+#: ../../object/Item.php:635 ../../mod/content.php:710
+msgid "Bold"
+msgstr "Pogrubienie"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transpłciowy"
+#: ../../object/Item.php:636 ../../mod/content.php:711
+msgid "Italic"
+msgstr "Kursywa"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Międzypłciowy"
+#: ../../object/Item.php:637 ../../mod/content.php:712
+msgid "Underline"
+msgstr "Podkreślenie"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksualista"
+#: ../../object/Item.php:638 ../../mod/content.php:713
+msgid "Quote"
+msgstr "Cytat"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodyta"
+#: ../../object/Item.php:639 ../../mod/content.php:714
+msgid "Code"
+msgstr "Kod"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Bezpłciowy"
+#: ../../object/Item.php:640 ../../mod/content.php:715
+msgid "Image"
+msgstr "Obraz"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niespecyficzne"
+#: ../../object/Item.php:641 ../../mod/content.php:716
+msgid "Link"
+msgstr "Link"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Inne"
+#: ../../object/Item.php:642 ../../mod/content.php:717
+msgid "Video"
+msgstr "Video"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Niezdecydowany"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Mężczyźni"
+#: ../../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."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Kobiety"
+#: ../../index.php:243 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Nie znaleziono"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gej"
+#: ../../index.php:246 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Strona nie znaleziona."
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbijka"
+#: ../../index.php:355 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Odmowa dostępu"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Brak preferencji"
+#: ../../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ń."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksualny"
+#: ../../index.php:415
+msgid "toggle mobile"
+msgstr "przełącz na mobilny"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Niezidentyfikowany"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstynent"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Dziewica"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Zboczeniec"
-
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetysz"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Twoja strona profilowa"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Nadmiar"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nieseksualny"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Twoje zdjęcia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Singiel"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Samotny"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Twoje wydarzenia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostępny"
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Osobiste notatki"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Niedostępny"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr ""
+#: ../../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ść"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "zakochany"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Randki"
+#: ../../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ż"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Niewierny"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Uzależniony od seksu"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "Przyjaciele"
+#: ../../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/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Przyjaciele/Korzyści"
+#: ../../view/theme/perihel/config.php:100
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Przypadkowy"
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:607
+#: ../../include/nav.php:171
+msgid "Contacts"
+msgstr "Kontakty"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zaręczeni"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Twoje kontakty"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Małżeństwo"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partnerzy"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Konkubinat"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Ostatnie polubienia"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../include/text.php:1913
+msgid "event"
+msgstr "wydarzenie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Szczęśliwy"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-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
+msgid "photo"
+msgstr "zdjęcie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zdradzony"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "W separacji"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Niestabilny"
+#: ../../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"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozwiedzeni"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Znajdź znajomych"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
 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"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49
+msgid "Global Directory"
+msgstr "Globalne Położenie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zapytaj mnie "
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Podobne zainteresowania"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "przestań obserwować"
+#: ../../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ć"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:878
-msgid "Poke"
-msgstr "Zaczepka"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Zaproś znajomych"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:872
-msgid "View Status"
-msgstr "Zobacz status"
+#: ../../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"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:873
-msgid "View Profile"
-msgstr "Zobacz profil"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr ""
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:874
-msgid "View Photos"
-msgstr "Zobacz zdjęcia"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:875
-msgid "Network Posts"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:876
-msgid "Edit Contact"
-msgstr "Edytuj kontakt"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:877
-msgid "Send PM"
-msgstr "Wyślij prywatną wiadomość"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr ""
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:550
-#: ../../include/bbcode.php:551
-msgid "Image/photo"
-msgstr "Obrazek/zdjęcie"
+#: ../../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"
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../include/bbcode.php:514 ../../include/bbcode.php:534
-msgid "$1 wrote:"
-msgstr "$1 napisał:"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Zestaw kolorów"
 
-#: ../../include/bbcode.php:559 ../../include/bbcode.php:560
-msgid "Encrypted content"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
 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ż"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Wyrównanie"
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "don't show"
-msgstr "nie pokazuj"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Lewo"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Wyloguj"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Środek"
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Niepowodzenie logowania"
+#: ../../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"
 
-#: ../../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."
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
 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"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
 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"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Zestaw kolorów"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
-msgid "Disallowed profile URL."
-msgstr "Nie dozwolony adres URL profilu."
+#: ../../view/theme/clean/config.php:54 ../../include/user.php:243
+#: ../../include/text.php:1649
+msgid "default"
+msgstr "standardowe"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Brak adresu URL połączenia."
+#: ../../view/theme/clean/config.php:74
+msgid "Background Image"
+msgstr ""
 
-#: ../../include/follow.php:59
+#: ../../view/theme/clean/config.php:74
 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."
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
 msgstr ""
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
+#: ../../view/theme/clean/config.php:75
+msgid "Background Color"
+msgstr ""
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Autor lub nazwa nie zostało znalezione."
+#: ../../view/theme/clean/config.php:75
+msgid "HEX value for the background color. Don't include the #"
+msgstr ""
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
+#: ../../view/theme/clean/config.php:77
+msgid "font size"
+msgstr ""
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: ../../view/theme/clean/config.php:77
+msgid "base font size for your interface"
 msgstr ""
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
 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."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Ustaw szerokość motywu"
 
-#: ../../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."
+#: ../../boot.php:684
+msgid "Delete this item?"
+msgstr "Usunąć ten element?"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Nie można otrzymać informacji kontaktowych"
+#: ../../boot.php:687
+msgid "show fewer"
+msgstr "Pokaż mniej"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "następujący"
+#: ../../boot.php:1015
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Wymagane zaproszenie."
+#: ../../boot.php:1017
+#, php-format
+msgid "Update Error at %s"
+msgstr ""
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Zaproszenie niezweryfikowane."
+#: ../../boot.php:1127
+msgid "Create a New Account"
+msgstr "Załóż nowe konto"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Nieprawidłowy adres url OpenID"
+#: ../../boot.php:1128 ../../mod/register.php:275 ../../include/nav.php:108
+msgid "Register"
+msgstr "Zarejestruj"
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "Wprowadź wymagane informacje"
+#: ../../boot.php:1152 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Wyloguj się"
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "Użyj dłuższej nazwy."
+#: ../../boot.php:1153 ../../include/nav.php:91
+msgid "Login"
+msgstr "Login"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "Nazwa jest za krótka."
+#: ../../boot.php:1155
+msgid "Nickname or Email address: "
+msgstr "Nick lub adres email:"
 
-#: ../../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)."
+#: ../../boot.php:1156
+msgid "Password: "
+msgstr "Hasło:"
 
-#: ../../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."
+#: ../../boot.php:1157
+msgid "Remember me"
+msgstr "Zapamiętaj mnie"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "Niepoprawny adres e mail.."
+#: ../../boot.php:1160
+msgid "Or login using OpenID: "
+msgstr "Lub zaloguj się korzystając z OpenID:"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "Nie możesz użyć tego e-maila. "
+#: ../../boot.php:1166
+msgid "Forgot your password?"
+msgstr "Zapomniałeś swojego hasła?"
 
-#: ../../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ę."
+#: ../../boot.php:1167 ../../mod/lostpass.php:84
+msgid "Password Reset"
+msgstr "Zresetuj hasło"
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "Ten login jest zajęty. Wybierz inny."
+#: ../../boot.php:1169
+msgid "Website Terms of Service"
+msgstr ""
 
-#: ../../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."
+#: ../../boot.php:1170
+msgid "terms of service"
+msgstr ""
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
+#: ../../boot.php:1172
+msgid "Website Privacy Policy"
+msgstr ""
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
+#: ../../boot.php:1173
+msgid "privacy policy"
+msgstr "polityka prywatności"
 
-#: ../../include/user.php:237 ../../include/text.php:1618
-msgid "default"
-msgstr "standardowe"
+#: ../../boot.php:1302
+msgid "Requested account is not available."
+msgstr ""
 
-#: ../../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."
+#: ../../boot.php:1341 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Żądany profil jest niedostępny"
 
-#: ../../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"
+#: ../../boot.php:1381 ../../boot.php:1485
+msgid "Edit profile"
+msgstr "Edytuj profil"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Nieznany | Bez kategori"
+#: ../../boot.php:1433 ../../mod/suggest.php:88 ../../mod/match.php:58
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Połącz"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Zablokować natychmiast "
+#: ../../boot.php:1447
+msgid "Message"
+msgstr "Wiadomość"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr ""
+#: ../../boot.php:1455 ../../include/nav.php:169
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Znam, ale nie mam zdania"
+#: ../../boot.php:1455
+msgid "Manage/edit profiles"
+msgstr "Zarządzaj profilami"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, bez problemów"
+#: ../../boot.php:1461 ../../boot.php:1487 ../../mod/profiles.php:726
+msgid "Change profile photo"
+msgstr "Zmień zdjęcie profilowe"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Zaufane, ma moje poparcie"
+#: ../../boot.php:1462 ../../mod/profiles.php:727
+msgid "Create New Profile"
+msgstr "Stwórz nowy profil"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452
-msgid "Frequently"
-msgstr "Jak najczęściej"
+#: ../../boot.php:1472 ../../mod/profiles.php:738
+msgid "Profile Image"
+msgstr "Obraz profilowy"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453
-msgid "Hourly"
-msgstr "Godzinowo"
+#: ../../boot.php:1475 ../../mod/profiles.php:740
+msgid "visible to everybody"
+msgstr "widoczne dla wszystkich"
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454
-msgid "Twice daily"
-msgstr "Dwa razy dziennie"
+#: ../../boot.php:1476 ../../mod/profiles.php:741
+msgid "Edit visibility"
+msgstr "Edytuj widoczność"
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455
-msgid "Daily"
-msgstr "Dziennie"
+#: ../../boot.php:1501 ../../mod/directory.php:134 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+msgid "Location:"
+msgstr "Lokalizacja"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Tygodniowo"
+#: ../../boot.php:1503 ../../mod/directory.php:136
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Płeć:"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Miesięcznie"
+#: ../../boot.php:1506 ../../mod/directory.php:138
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../boot.php:1508 ../../mod/directory.php:140
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Strona główna:"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../boot.php:1584 ../../boot.php:1670
+msgid "g A l F d"
+msgstr "g A I F d"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../boot.php:1585 ../../boot.php:1671
+msgid "F d"
+msgstr ""
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766
-#: ../../mod/admin.php:777
-msgid "Email"
-msgstr "E-mail"
+#: ../../boot.php:1630 ../../boot.php:1711
+msgid "[today]"
+msgstr "[dziś]"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../boot.php:1642
+msgid "Birthday Reminders"
+msgstr "Przypomnienia o urodzinach"
 
-#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
-#: ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:1643
+msgid "Birthdays this week:"
+msgstr "Urodziny w tym tygodniu:"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr ""
+#: ../../boot.php:1704
+msgid "[No description]"
+msgstr "[Brak opisu]"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../boot.php:1722
+msgid "Event Reminders"
+msgstr "Przypominacze wydarzeń"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../boot.php:1723
+msgid "Events this week:"
+msgstr "Wydarzenia w tym tygodniu:"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../boot.php:1956 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../boot.php:1959
+msgid "Status Messages and Posts"
+msgstr "Status wiadomości i postów"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Dodaj nowy kontakt"
+#: ../../boot.php:1966
+msgid "Profile Details"
+msgstr "Szczegóły profilu"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Wpisz adres lub lokalizację sieciową"
+#: ../../boot.php:1973 ../../mod/photos.php:51
+msgid "Photo Albums"
+msgstr "Albumy zdjęć"
 
-#: ../../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"
+#: ../../boot.php:1977 ../../boot.php:1980
+msgid "Videos"
+msgstr "Filmy"
 
-#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1421
-msgid "Connect"
-msgstr "Połącz"
+#: ../../boot.php:1990
+msgid "Events and Calendar"
+msgstr "Wydarzenia i kalendarz"
 
-#: ../../include/contact_widgets.php:23
+#: ../../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 "%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"
+msgid "%1$s is currently %2$s"
+msgstr ""
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Znajdź ludzi"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Nastrój"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Wpisz nazwę lub zainteresowanie"
+#: ../../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"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Połącz/Obserwuj"
+#: ../../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"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Przykładowo:  Jan Kowalski, Wędkarstwo"
+#: ../../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."
 
-#: ../../include/contact_widgets.php:33 ../../mod/directory.php:61
-#: ../../mod/contacts.php:613
-msgid "Find"
-msgstr "Znajdź"
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Ograniczony dostęp do tego konta"
 
-#: ../../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ć"
+#: ../../mod/display.php:239
+msgid "Item has been removed."
+msgstr "Przedmiot został usunięty"
 
-#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
-msgid "Similar Interests"
-msgstr "Podobne zainteresowania"
+#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Brak dostępu"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Domyślny profil"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "To jest Friendica, wersja"
 
-#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
-msgid "Invite Friends"
-msgstr "Zaproś znajomych"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "otwierane na serwerze"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Sieci"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica."
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Wszystkie Sieci"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Reportowanie błędów i problemów: proszę odwiedź"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Zapisane foldery"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr ""
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Wszystko"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Zainstalowane pluginy/dodatki/aplikacje:"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorie"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji"
 
-#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, 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"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s witamy %2$s"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../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"
 
-#: ../../include/network.php:877
-msgid "view full size"
-msgstr "Zobacz pełen rozmiar"
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Różny"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "rok"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "miesiąc"
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Prośba o rejestrację u %s"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dzień"
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nigdy"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "mniej niż sekundę temu"
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "lata"
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "miesiące"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Twój OpenID (opcjonalnie):"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "tydzień"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Czy dołączyć twój profil do katalogu członków?"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "tygodnie"
+#: ../../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"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dni"
+#: ../../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"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "godzina"
+#: ../../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."
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "godziny"
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "Twoje zaproszenia ID:"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuta"
+#: ../../mod/register.php:261 ../../mod/admin.php:570
+msgid "Registration"
+msgstr "Rejestracja"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuty"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Imię i nazwisko (np. Jan Kowalski):"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "sekunda"
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Twój adres email:"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "sekundy"
+#: ../../mod/register.php:271
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'."
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr ""
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Wybierz pseudonim:"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1813
-#, php-format
-msgid "%s's birthday"
-msgstr "Urodziny %s"
+#: ../../mod/register.php:281 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1814
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Urodziny %s"
+#: ../../mod/register.php:282
+msgid "Import your profile to this friendica instance"
+msgstr ""
 
-#: ../../include/plugin.php:439 ../../include/plugin.php:441
-msgid "Click here to upgrade."
-msgstr "Kliknij tu, aby zaktualizować."
+#: ../../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."
 
-#: ../../include/plugin.php:447
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr ""
+#: ../../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"
 
-#: ../../include/plugin.php:452
-msgid "This action is not available under your subscription plan."
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
 msgstr ""
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "(bez tematu)"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
 
-#: ../../include/delivery.php:468 ../../include/enotify.php:28
-#: ../../include/notifier.php:785
-msgid "noreply"
-msgstr "brak odpowiedzi"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Nieoczekiwana odpowiedź od strony zdalnej"
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Potwierdzenie ukończone poprawnie"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Wspólne powiadomienie z sieci Diaspora"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Zdalna strona zgłoszona:"
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Nieudane lub unieważnione wprowadzenie."
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Nie można ustawić zdjęcia kontaktu."
 
-#: ../../include/diaspora.php:2262
-msgid "Attachments:"
-msgstr "Załączniki:"
+#: ../../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"
 
-#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr "[Nazwa wstrzymana]"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nie znaleziono użytkownika dla '%s'"
 
-#: ../../include/items.php:3495
-msgid "A new person is sharing with you at "
-msgstr ""
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Klucz kodujący jest najwyraźniej zepsuty"
 
-#: ../../include/items.php:3495
-msgid "You have a new follower at "
-msgstr ""
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."
 
-#: ../../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."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Nie znaleziono kontaktu na naszej stronie"
 
-#: ../../include/items.php:4018
-msgid "Do you really want to delete this item?"
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 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"
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."
 
-#: ../../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ń."
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"
 
-#: ../../include/items.php:4213
-msgid "Archives"
-msgstr "Archiwum"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Połączenie zaakceptowane %s"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s dołączył/a do %2$s"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoryzacja połączenia aplikacji"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr ""
+#: ../../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:"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr ""
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Zaloguj się aby kontynuować."
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr ""
+#: ../../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?"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Podgląd posta"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nie znaleziono ważnego konta."
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email."
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr ""
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Prośba o reset hasła na %s"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Szukanie wg daty"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"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ę."
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Twoje hasło zostało zresetowane na twoje życzenie."
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Filtrowanie grupowe"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Twoje nowe hasło to"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr ""
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "Kliknij tutaj aby zalogować"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
 
-#: ../../include/features.php:41 ../../mod/search.php:30
-#: ../../mod/network.php:233
-msgid "Saved Searches"
-msgstr "Zapisane wyszukiwania"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Twoje hasło zostało zmienione na %s"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr ""
-
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr ""
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Zapomniałeś hasła?"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr ""
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Pseudonim lub Email:"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr ""
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zresetuj"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
+#: ../../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."
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nie wybrano odbiorcy."
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Nie można sprawdzić twojej lokalizacji."
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr ""
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Wiadomość nie może zostać wysłana"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
 msgstr ""
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr ""
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Wysłano."
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr ""
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Brak odbiorcy."
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr ""
+#: ../../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:"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr ""
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Wyślij prywatną wiadomość"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
+#: ../../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 ""
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr ""
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Do:"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Dodaj kategorie do twoich postów"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Temat:"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr ""
+#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
+#: ../../mod/message.php:558 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Twoja wiadomość:"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr ""
+#: ../../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"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr ""
+#: ../../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"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr ""
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Witamy na Friendica"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Lista nowych członków"
 
-#: ../../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'"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
 
-#: ../../include/text.php:293
-msgid "newer"
-msgstr "nowsze"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Pierwsze kroki"
 
-#: ../../include/text.php:295
-msgid "older"
-msgstr "starsze"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr ""
 
-#: ../../include/text.php:300
-msgid "prev"
-msgstr "poprzedni"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
 
-#: ../../include/text.php:302
-msgid "first"
-msgstr "pierwszy"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Idź do swoich ustawień"
 
-#: ../../include/text.php:334
-msgid "last"
-msgstr "ostatni"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr ""
 
-#: ../../include/text.php:337
-msgid "next"
-msgstr "następny"
+#: ../../mod/newmember.php:28
+msgid ""
+"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."
+msgstr ""
 
-#: ../../include/text.php:829
-msgid "No contacts"
-msgstr "Brak kontaktów"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Wyślij zdjęcie profilowe"
 
-#: ../../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"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
 
-#: ../../include/text.php:850 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "widok kontaktów"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Edytuj własny profil"
 
-#: ../../include/text.php:927 ../../include/text.php:928
-#: ../../include/nav.php:118 ../../mod/search.php:99
-msgid "Search"
-msgstr "Szukaj"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr ""
 
-#: ../../include/text.php:930 ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Zapisz"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Słowa kluczowe profilu"
 
-#: ../../include/text.php:979
-msgid "poke"
-msgstr "zaczep"
+#: ../../mod/newmember.php:40
+msgid ""
+"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."
+msgstr ""
 
-#: ../../include/text.php:979 ../../include/conversation.php:211
-msgid "poked"
-msgstr "zaczepiony"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Łączę się..."
 
-#: ../../include/text.php:980
-msgid "ping"
-msgstr "ping"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/text.php:980
-msgid "pinged"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
 msgstr ""
 
-#: ../../include/text.php:981
-msgid "prod"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
 msgstr ""
 
-#: ../../include/text.php:981
-msgid "prodded"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importuję emaile..."
+
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
 msgstr ""
 
-#: ../../include/text.php:982
-msgid "slap"
-msgstr "spoliczkuj"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Idź do strony z Twoimi kontaktami"
 
-#: ../../include/text.php:982
-msgid "slapped"
-msgstr "spoliczkowany"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr ""
 
-#: ../../include/text.php:983
-msgid "finger"
-msgstr "dotknąć"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Idż do twojej strony"
 
-#: ../../include/text.php:983
-msgid "fingered"
-msgstr "dotknięty"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr ""
 
-#: ../../include/text.php:984
-msgid "rebuff"
-msgstr "odprawiać"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Poszukiwanie Nowych Ludzi"
 
-#: ../../include/text.php:984
-msgid "rebuffed"
-msgstr "odprawiony"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr ""
 
-#: ../../include/text.php:998
-msgid "happy"
-msgstr "szczęśliwy"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Grupy"
 
-#: ../../include/text.php:999
-msgid "sad"
-msgstr "smutny"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grupuj Swoje kontakty"
 
-#: ../../include/text.php:1000
-msgid "mellow"
-msgstr "spokojny"
+#: ../../mod/newmember.php:70
+msgid ""
+"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."
+msgstr ""
 
-#: ../../include/text.php:1001
-msgid "tired"
-msgstr "zmęczony"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Dlaczego moje posty nie są publiczne?"
 
-#: ../../include/text.php:1002
-msgid "perky"
-msgstr "pewny siebie"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr ""
 
-#: ../../include/text.php:1003
-msgid "angry"
-msgstr "wściekły"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Otrzymywanie pomocy"
 
-#: ../../include/text.php:1004
-msgid "stupified"
-msgstr "odurzony"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Idź do części o pomocy"
 
-#: ../../include/text.php:1005
-msgid "puzzled"
-msgstr "zdziwiony"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr ""
 
-#: ../../include/text.php:1006
-msgid "interested"
-msgstr "interesujący"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Czy na pewno chcesz usunąć te sugestie ?"
 
-#: ../../include/text.php:1007
-msgid "bitter"
-msgstr "zajadły"
+#: ../../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"
 
-#: ../../include/text.php:1008
-msgid "cheerful"
-msgstr "wesoły"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
 
-#: ../../include/text.php:1009
-msgid "alive"
-msgstr "żywy"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignoruj/Ukryj"
 
-#: ../../include/text.php:1010
-msgid "annoyed"
-msgstr "irytujący"
+#: ../../mod/network.php:179
+msgid "Search Results For:"
+msgstr "Szukaj wyników dla:"
 
-#: ../../include/text.php:1011
-msgid "anxious"
-msgstr "zazdrosny"
+#: ../../mod/network.php:222 ../../mod/_search.php:21 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Usuń wpis"
 
-#: ../../include/text.php:1012
-msgid "cranky"
-msgstr "zepsuty"
+#: ../../mod/network.php:231 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:41
+msgid "Saved Searches"
+msgstr "Zapisane wyszukiwania"
 
-#: ../../include/text.php:1013
-msgid "disturbed"
-msgstr "przeszkadzający"
+#: ../../mod/network.php:232 ../../include/group.php:275
+msgid "add"
+msgstr "dodaj"
 
-#: ../../include/text.php:1014
-msgid "frustrated"
-msgstr "rozbity"
+#: ../../mod/network.php:394
+msgid "Commented Order"
+msgstr "Porządek wg komentarzy"
 
-#: ../../include/text.php:1015
-msgid "motivated"
-msgstr "zmotywowany"
+#: ../../mod/network.php:397
+msgid "Sort by Comment Date"
+msgstr "Sortuj po dacie komentarza"
 
-#: ../../include/text.php:1016
-msgid "relaxed"
-msgstr "zrelaksowany"
+#: ../../mod/network.php:400
+msgid "Posted Order"
+msgstr "Porządek wg wpisów"
 
-#: ../../include/text.php:1017
-msgid "surprised"
-msgstr "zaskoczony"
+#: ../../mod/network.php:403
+msgid "Sort by Post Date"
+msgstr "Sortuj po dacie posta"
 
-#: ../../include/text.php:1185
-msgid "Monday"
-msgstr "Poniedziałek"
+#: ../../mod/network.php:441 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Osobiste"
 
-#: ../../include/text.php:1185
-msgid "Tuesday"
-msgstr "Wtorek"
+#: ../../mod/network.php:444
+msgid "Posts that mention or involve you"
+msgstr ""
 
-#: ../../include/text.php:1185
-msgid "Wednesday"
-msgstr "Środa"
+#: ../../mod/network.php:450
+msgid "New"
+msgstr "Nowy"
 
-#: ../../include/text.php:1185
-msgid "Thursday"
-msgstr "Czwartek"
+#: ../../mod/network.php:453
+msgid "Activity Stream - by date"
+msgstr ""
 
-#: ../../include/text.php:1185
-msgid "Friday"
-msgstr "Piątek"
+#: ../../mod/network.php:459
+msgid "Shared Links"
+msgstr "Współdzielone linki"
 
-#: ../../include/text.php:1185
-msgid "Saturday"
-msgstr "Sobota"
+#: ../../mod/network.php:462
+msgid "Interesting Links"
+msgstr "Interesujące linki"
 
-#: ../../include/text.php:1185
-msgid "Sunday"
-msgstr "Niedziela"
+#: ../../mod/network.php:468
+msgid "Starred"
+msgstr ""
 
-#: ../../include/text.php:1189
-msgid "January"
-msgstr "Styczeń"
+#: ../../mod/network.php:471
+msgid "Favourite Posts"
+msgstr "Ulubione posty"
 
-#: ../../include/text.php:1189
-msgid "February"
-msgstr "Luty"
+#: ../../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."
 
-#: ../../include/text.php:1189
-msgid "March"
-msgstr "Marzec"
+#: ../../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"
 
-#: ../../include/text.php:1189
-msgid "April"
-msgstr "Kwiecień"
+#: ../../mod/network.php:588 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Nie ma takiej grupy"
 
-#: ../../include/text.php:1189
-msgid "May"
-msgstr "Maj"
+#: ../../mod/network.php:599 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Grupa jest pusta"
 
-#: ../../include/text.php:1189
-msgid "June"
-msgstr "Czerwiec"
+#: ../../mod/network.php:605 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Grupa:"
 
-#: ../../include/text.php:1189
-msgid "July"
-msgstr "Lipiec"
+#: ../../mod/network.php:617
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../include/text.php:1189
-msgid "August"
-msgstr "Sierpień"
+#: ../../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 "
 
-#: ../../include/text.php:1189
-msgid "September"
-msgstr "Wrzesień"
+#: ../../mod/network.php:624
+msgid "Invalid contact."
+msgstr "Zły kontakt"
 
-#: ../../include/text.php:1189
-msgid "October"
-msgstr "Październik"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr ""
 
-#: ../../include/text.php:1189
-msgid "November"
-msgstr "Listopad"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nie można nawiązać połączenia z bazą danych"
 
-#: ../../include/text.php:1189
-msgid "December"
-msgstr "Grudzień"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nie mogę stworzyć tabeli."
 
-#: ../../include/text.php:1345 ../../mod/videos.php:301
-msgid "View Video"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
 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ąć"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
 
-#: ../../include/text.php:1575 ../../mod/events.php:335
-msgid "link to source"
-msgstr "link do źródła"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:521
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
 
-#: ../../include/text.php:1630
-msgid "Select an alternate language"
-msgstr "Wybierz alternatywny język"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Sprawdzanie systemu"
 
-#: ../../include/text.php:1882 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
-msgid "event"
-msgstr "wydarzenie"
+#: ../../mod/install.php:207 ../../mod/events.php:373
+msgid "Next"
+msgstr "Następny"
 
-#: ../../include/text.php:1886
-msgid "activity"
-msgstr "aktywność"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Sprawdź ponownie"
 
-#: ../../include/text.php:1888 ../../mod/content.php:628
-#: ../../object/Item.php:364 ../../object/Item.php:377
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] "komentarz"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Połączenie z bazą danych"
 
-#: ../../include/text.php:1889
-msgid "post"
-msgstr "post"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
 
-#: ../../include/text.php:2044
-msgid "Item filed"
-msgstr ""
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
 
-#: ../../include/group.php:25
+#: ../../mod/install.php:230
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Baza danych - Nazwa serwera"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Wszyscy"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Baza danych - Nazwa loginu"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "edytuj"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Baza danych - Hasło loginu"
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Grupy"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Baza danych - Nazwa"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Edytuj grupy"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adres e-mail administratora strony"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr ""
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
 
-#: ../../include/group.php:275 ../../mod/network.php:234
-msgid "add"
-msgstr "dodaj"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Ustawienia strony"
 
-#: ../../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"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 msgstr ""
 
-#: ../../include/conversation.php:227 ../../mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
 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"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr ""
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Linia komend PHP"
 
-#: ../../include/conversation.php:612 ../../mod/content.php:461
-#: ../../mod/content.php:763 ../../object/Item.php:126
-msgid "Select"
-msgstr "Wybierz"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
 
-#: ../../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ń"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Znaleziono wersje PHP:"
 
-#: ../../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"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr ""
 
-#: ../../include/conversation.php:664 ../../object/Item.php:297
-msgid "Categories:"
-msgstr "Kategorie:"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
 
-#: ../../include/conversation.php:665 ../../object/Item.php:298
-msgid "Filed under:"
-msgstr "Zapisano pod:"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
 
-#: ../../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"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr ""
 
-#: ../../include/conversation.php:687 ../../mod/content.php:520
-msgid "View in context"
-msgstr "Zobacz w kontekście"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego ."
 
-#: ../../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ć"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/conversation.php:768
-msgid "remove"
-msgstr "usuń"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generuj klucz kodowania"
 
-#: ../../include/conversation.php:772
-msgid "Delete Selected Items"
-msgstr "Usuń zaznaczone elementy"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Moduł libCurl PHP"
 
-#: ../../include/conversation.php:871
-msgid "Follow Thread"
-msgstr "Śledź wątek"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Moduł PHP-GD"
 
-#: ../../include/conversation.php:940
-#, php-format
-msgid "%s likes this."
-msgstr "%s lubi to."
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Moduł PHP OpenSSL"
 
-#: ../../include/conversation.php:940
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s nie lubi tego."
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Moduł mysql PHP"
 
-#: ../../include/conversation.php:945
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr ""
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Moduł mb_string PHP"
 
-#: ../../include/conversation.php:948
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr ""
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Moduł Apache mod_rewrite"
 
-#: ../../include/conversation.php:962
-msgid "and"
-msgstr "i"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
 
-#: ../../include/conversation.php:968
-#, php-format
-msgid ", and %d other people"
-msgstr ", i %d innych ludzi"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid "%s like this."
-msgstr "%s lubi to."
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
 
-#: ../../include/conversation.php:970
-#, php-format
-msgid "%s don't like this."
-msgstr "%s nie lubi tego."
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../include/conversation.php:997 ../../include/conversation.php:1015
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Widoczne dla <strong>wszystkich</strong>"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../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:"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany"
 
-#: ../../include/conversation.php:999 ../../include/conversation.php:1017
-msgid "Please enter a video link/URL:"
-msgstr "Podaj link do filmu"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić."
 
-#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
-msgid "Please enter an audio link/URL:"
-msgstr "Podaj link do muzyki"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Tag term:"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
 msgstr ""
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Zapisz w folderze:"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Where are you right now?"
-msgstr "Gdzie teraz jesteś?"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php jest zapisywalny"
 
-#: ../../include/conversation.php:1004
-msgid "Delete item(s)?"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: ../../include/conversation.php:1046
-msgid "Post to Email"
-msgstr "Wyślij poprzez email"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr ""
 
-#: ../../include/conversation.php:1081 ../../mod/photos.php:1531
-msgid "Share"
-msgstr "Podziel się"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr ""
 
-#: ../../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"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
 
-#: ../../include/conversation.php:1083 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "dodaj zdjęcie"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr ""
 
-#: ../../include/conversation.php:1084 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Przyłącz plik"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
 
-#: ../../include/conversation.php:1085 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "załącz plik"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr ""
 
-#: ../../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"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
 
-#: ../../include/conversation.php:1087 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "Adres www"
+#: ../../mod/install.php:508
+msgid "Errors encountered creating database tables."
+msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
 
-#: ../../include/conversation.php:1088 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Wstaw link wideo"
+#: ../../mod/install.php:519
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dalej</h1>"
 
-#: ../../include/conversation.php:1089 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "link do filmu"
+#: ../../mod/install.php:520
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."
 
-#: ../../include/conversation.php:1090 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Wstaw link audio"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Ustawienia szablonu zmienione."
 
-#: ../../include/conversation.php:1091 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "Link audio"
+#: ../../mod/admin.php:101 ../../mod/admin.php:568
+msgid "Site"
+msgstr "Strona"
 
-#: ../../include/conversation.php:1092 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "Ustaw swoje położenie"
+#: ../../mod/admin.php:102 ../../mod/admin.php:893 ../../mod/admin.php:908
+msgid "Users"
+msgstr "Użytkownicy"
 
-#: ../../include/conversation.php:1093 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "wybierz lokalizację"
+#: ../../mod/admin.php:103 ../../mod/admin.php:997 ../../mod/admin.php:1039
+msgid "Plugins"
+msgstr "Wtyczki"
 
-#: ../../include/conversation.php:1094 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Wyczyść położenie przeglądarki"
+#: ../../mod/admin.php:104 ../../mod/admin.php:1205 ../../mod/admin.php:1239
+msgid "Themes"
+msgstr "Temat"
 
-#: ../../include/conversation.php:1095 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "wyczyść lokalizację"
+#: ../../mod/admin.php:105
+msgid "DB updates"
+msgstr "Aktualizacje DB"
 
-#: ../../include/conversation.php:1097 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Ustaw tytuł"
+#: ../../mod/admin.php:120 ../../mod/admin.php:127 ../../mod/admin.php:1326
+msgid "Logs"
+msgstr "Logi"
 
-#: ../../include/conversation.php:1099 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr ""
+#: ../../mod/admin.php:125 ../../include/nav.php:178
+msgid "Admin"
+msgstr "Administator"
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Ustawienia uprawnień"
+#: ../../mod/admin.php:126
+msgid "Plugin Features"
+msgstr "Polecane wtyczki"
 
-#: ../../include/conversation.php:1102
-msgid "permissions"
-msgstr "zezwolenia"
+#: ../../mod/admin.php:128
+msgid "User registrations waiting for confirmation"
+msgstr "Rejestracje użytkownika czekają na potwierdzenie."
 
-#: ../../include/conversation.php:1110 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: adresy e-mail"
+#: ../../mod/admin.php:187 ../../mod/admin.php:848
+msgid "Normal Account"
+msgstr "Konto normalne"
 
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Publiczny post"
+#: ../../mod/admin.php:188 ../../mod/admin.php:849
+msgid "Soapbox Account"
+msgstr "Konto Soapbox"
 
-#: ../../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"
+#: ../../mod/admin.php:189 ../../mod/admin.php:850
+msgid "Community/Celebrity Account"
+msgstr "Konto społeczności/gwiazdy"
 
-#: ../../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"
+#: ../../mod/admin.php:190 ../../mod/admin.php:851
+msgid "Automatic Friend Account"
+msgstr "Automatyczny przyjaciel konta"
 
-#: ../../include/conversation.php:1126
-msgid "Post to Groups"
-msgstr ""
+#: ../../mod/admin.php:191
+msgid "Blog Account"
+msgstr "Konto Bloga"
 
-#: ../../include/conversation.php:1127
-msgid "Post to Contacts"
-msgstr ""
+#: ../../mod/admin.php:192
+msgid "Private Forum"
+msgstr "Forum Prywatne"
 
-#: ../../include/conversation.php:1128
-msgid "Private post"
-msgstr "Prywatne posty"
+#: ../../mod/admin.php:211
+msgid "Message queues"
+msgstr "Wiadomości"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Powiadomienia Friendica"
+#: ../../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"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Dziękuję,"
+#: ../../mod/admin.php:217
+msgid "Summary"
+msgstr "Skrót"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s administrator"
+#: ../../mod/admin.php:219
+msgid "Registered users"
+msgstr "Zarejestrowani użytkownicy"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr ""
+#: ../../mod/admin.php:221
+msgid "Pending registrations"
+msgstr "Rejestracje w toku."
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s"
+#: ../../mod/admin.php:222
+msgid "Version"
+msgstr "Wersja"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: ../../mod/admin.php:224
+msgid "Active plugins"
+msgstr "Aktywne pluginy"
+
+#: ../../mod/admin.php:247
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s wysyła ci %2$s"
+#: ../../mod/admin.php:481
+msgid "Site settings updated."
+msgstr "Ustawienia strony zaktualizowane"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "prywatna wiadomość"
+#: ../../mod/admin.php:510 ../../mod/settings.php:806
+msgid "No special theme for mobile devices"
+msgstr "Brak specialnego motywu dla urządzeń mobilnych"
 
-#: ../../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"
+#: ../../mod/admin.php:527 ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Nigdy"
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr ""
+#: ../../mod/admin.php:528 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Jak najczęściej"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr ""
+#: ../../mod/admin.php:529 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Godzinowo"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr ""
+#: ../../mod/admin.php:530 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Dwa razy dziennie"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: ../../mod/admin.php:531 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Dziennie"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s skomentował rozmowę którą śledzisz"
+#: ../../mod/admin.php:536
+msgid "Multi user instance"
+msgstr "Tryb MultiUsera"
 
-#: ../../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ę"
+#: ../../mod/admin.php:554
+msgid "Closed"
+msgstr "Zamknięty"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s napisał na twoim profilu"
+#: ../../mod/admin.php:555
+msgid "Requires approval"
+msgstr "Wymagane zatwierdzenie."
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr ""
+#: ../../mod/admin.php:556
+msgid "Open"
+msgstr "Otwórz"
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr ""
+#: ../../mod/admin.php:560
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Brak SSL , linki będą śledzić stan SSL ."
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s oznaczył cię"
+#: ../../mod/admin.php:561
+msgid "Force all links to use SSL"
+msgstr "Wymuś by linki używały SSL."
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr ""
+#: ../../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 . "
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: ../../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 ""
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr ""
+#: ../../mod/admin.php:571
+msgid "File upload"
+msgstr "Plik załadowano"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr ""
+#: ../../mod/admin.php:572
+msgid "Policies"
+msgstr "zasady"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: ../../mod/admin.php:573
+msgid "Advanced"
+msgstr "Zaawansowany"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr ""
+#: ../../mod/admin.php:574
+msgid "Performance"
+msgstr "Ustawienia"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: ../../mod/admin.php:575
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr ""
+#: ../../mod/admin.php:579
+msgid "Site name"
+msgstr "Nazwa strony"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr ""
+#: ../../mod/admin.php:580
+msgid "Banner/Logo"
+msgstr "Logo"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/admin.php:581
+msgid "Additional Info"
+msgstr "Dodatkowe informacje"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: ../../mod/admin.php:581
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
 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"
+#: ../../mod/admin.php:582
+msgid "System language"
+msgstr "Język systemu"
 
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
+#: ../../mod/admin.php:583
+msgid "System theme"
+msgstr "Motyw systemowy"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+#: ../../mod/admin.php:583
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/admin.php:584
+msgid "Mobile system theme"
+msgstr "Mobilny motyw systemowy"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+#: ../../mod/admin.php:584
+msgid "Theme for mobile devices"
+msgstr "Szablon dla mobilnych urządzeń"
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Imię:"
+#: ../../mod/admin.php:585
+msgid "SSL link policy"
+msgstr "polityka SSL"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Zdjęcie:"
+#: ../../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."
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: ../../mod/admin.php:586
+msgid "Old style 'Share'"
 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ęć"
+#: ../../mod/admin.php:586
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Brak nowych zdarzeń"
+#: ../../mod/admin.php:587
+msgid "Hide help entry from navigation menu"
+msgstr "Wyłącz pomoc w menu nawigacyjnym "
 
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr "Wyczyść powiadomienia"
+#: ../../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."
 
-#: ../../include/nav.php:73 ../../boot.php:1140
-msgid "Logout"
-msgstr "Wyloguj się"
+#: ../../mod/admin.php:588
+msgid "Single user instance"
+msgstr "Tryb SingleUsera"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Zakończ sesję"
+#: ../../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."
 
-#: ../../include/nav.php:76 ../../boot.php:1944
-msgid "Status"
-msgstr "Status"
+#: ../../mod/admin.php:589
+msgid "Maximum image size"
+msgstr "Maksymalny rozmiar zdjęcia"
 
-#: ../../include/nav.php:76 ../../include/nav.php:143
-#: ../../view/theme/diabook/theme.php:87
-msgid "Your posts and conversations"
-msgstr "Twoje posty i rozmowy"
+#: ../../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 ."
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
-msgid "Your profile page"
-msgstr "Twoja strona profilowa"
+#: ../../mod/admin.php:590
+msgid "Maximum image length"
+msgstr "Maksymalna długość obrazu"
 
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1958
-msgid "Photos"
-msgstr "Zdjęcia"
+#: ../../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."
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
-msgid "Your photos"
-msgstr "Twoje zdjęcia"
+#: ../../mod/admin.php:591
+msgid "JPEG image quality"
+msgstr "jakość obrazu JPEG"
 
-#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1975
-msgid "Events"
-msgstr "Wydarzenia"
+#: ../../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 . "
 
-#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
-msgid "Your events"
-msgstr "Twoje wydarzenia"
+#: ../../mod/admin.php:593
+msgid "Register policy"
+msgstr "Zarejestruj polisę"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Personal notes"
-msgstr "Osobiste notatki"
+#: ../../mod/admin.php:594
+msgid "Maximum Daily Registrations"
+msgstr "Maksymalnie dziennych rejestracji"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Your personal photos"
-msgstr "Twoje osobiste zdjęcia"
+#: ../../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 ""
 
-#: ../../include/nav.php:91 ../../boot.php:1141
-msgid "Login"
-msgstr "Login"
+#: ../../mod/admin.php:595
+msgid "Register text"
+msgstr "Zarejestruj tekst"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "Zaloguj się"
+#: ../../mod/admin.php:595
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
 
-#: ../../include/nav.php:104 ../../include/nav.php:143
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-msgid "Home"
-msgstr "Dom"
+#: ../../mod/admin.php:596
+msgid "Accounts abandoned after x days"
+msgstr "Konto porzucone od x dni."
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "Strona startowa"
+#: ../../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 ."
 
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1116
-msgid "Register"
-msgstr "Zarejestruj"
+#: ../../mod/admin.php:597
+msgid "Allowed friend domains"
+msgstr "Dozwolone domeny przyjaciół"
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "Załóż konto"
+#: ../../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. "
 
-#: ../../include/nav.php:113 ../../mod/help.php:84
-msgid "Help"
-msgstr "Pomoc"
+#: ../../mod/admin.php:598
+msgid "Allowed email domains"
+msgstr "Dozwolone domeny e-mailowe"
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "Pomoc i dokumentacja"
+#: ../../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 ""
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "Aplikacje"
+#: ../../mod/admin.php:599
+msgid "Block public"
+msgstr "Blokuj publicznie"
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "Wtyczki, aplikacje, narzędzia, gry"
+#: ../../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 ""
 
-#: ../../include/nav.php:118
-msgid "Search site content"
-msgstr "Przeszukaj zawartość strony"
+#: ../../mod/admin.php:600
+msgid "Force publish"
+msgstr "Wymuś publikację"
 
-#: ../../include/nav.php:128 ../../mod/community.php:32
-#: ../../view/theme/diabook/theme.php:93
-msgid "Community"
-msgstr "Społeczność"
+#: ../../mod/admin.php:600
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
-msgstr "Rozmowy na tej stronie"
+#: ../../mod/admin.php:601
+msgid "Global directory update URL"
+msgstr ""
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "Katalog"
+#: ../../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 ""
 
-#: ../../include/nav.php:130
-msgid "People directory"
+#: ../../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 ""
 
-#: ../../include/nav.php:140 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Sieć"
+#: ../../mod/admin.php:604
+msgid "Don't include post content in email notifications"
+msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Rozmowy Twoich przyjaciół"
+#: ../../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."
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
+#: ../../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 ""
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
+#: ../../mod/admin.php:606
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../include/nav.php:149 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Wstępy"
+#: ../../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 ""
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Podania o przyjęcie do grona znajomych"
+#: ../../mod/admin.php:608
+msgid "Block multiple registrations"
+msgstr "Zablokuj wielokrotną rejestrację"
 
-#: ../../include/nav.php:150 ../../mod/notifications.php:220
-msgid "Notifications"
-msgstr "Powiadomienia"
+#: ../../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. "
 
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Zobacz wszystkie powiadomienia"
+#: ../../mod/admin.php:609
+msgid "OpenID support"
+msgstr "Wsparcie OpenID"
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
+#: ../../mod/admin.php:609
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../include/nav.php:156 ../../mod/message.php:182
-#: ../../mod/notifications.php:103
-msgid "Messages"
-msgstr "Wiadomości"
+#: ../../mod/admin.php:610
+msgid "Fullname check"
+msgstr "Sprawdzanie pełnej nazwy"
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Prywatne maile"
+#: ../../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."
 
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Odebrane"
+#: ../../mod/admin.php:611
+msgid "UTF-8 Regular expressions"
+msgstr "Wyrażenia regularne UTF-8"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Wysłane"
+#: ../../mod/admin.php:611
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Użyj regularnych wyrażeń PHP UTF8"
 
-#: ../../include/nav.php:159 ../../mod/message.php:9
-msgid "New Message"
-msgstr "Nowa wiadomość"
+#: ../../mod/admin.php:612
+msgid "Show Community Page"
+msgstr "Pokaż stronę społeczności"
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Zarządzaj"
+#: ../../mod/admin.php:612
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr ""
 
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Zarządzaj innymi stronami"
+#: ../../mod/admin.php:613
+msgid "Enable OStatus support"
+msgstr "Włącz wsparcie OStatus"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
+#: ../../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 ""
 
-#: ../../include/nav.php:165 ../../mod/delegate.php:121
-msgid "Delegate Page Management"
+#: ../../mod/admin.php:614
+msgid "OStatus conversation completion interval"
 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"
+#: ../../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 ""
 
-#: ../../include/nav.php:169 ../../boot.php:1443
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/admin.php:615
+msgid "Enable Diaspora support"
+msgstr "Włączyć obsługę Diaspory"
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
+#: ../../mod/admin.php:615
+msgid "Provide built-in Diaspora network compatibility."
 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"
+#: ../../mod/admin.php:616
+msgid "Only allow Friendica contacts"
+msgstr "Dopuść tylko kontakty Friendrica"
 
-#: ../../include/nav.php:178 ../../mod/admin.php:120
-msgid "Admin"
-msgstr "Administator"
+#: ../../mod/admin.php:616
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
 
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Konfiguracja i ustawienia instancji"
+#: ../../mod/admin.php:617
+msgid "Verify SSL"
+msgstr "Weryfikacja SSL"
 
-#: ../../include/nav.php:182
-msgid "Navigation"
+#: ../../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 ""
 
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Mapa strony"
+#: ../../mod/admin.php:618
+msgid "Proxy user"
+msgstr "Użytkownik proxy"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Osadzona zawartość"
+#: ../../mod/admin.php:619
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "Osadzanie wyłączone"
+#: ../../mod/admin.php:620
+msgid "Network timeout"
+msgstr "Network timeout"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
+#: ../../mod/admin.php:620
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: ../../mod/admin.php:621
+msgid "Delivery interval"
 msgstr ""
 
-#: ../../include/uimport.php:116
-msgid "Error! Cannot check nickname"
+#: ../../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 ""
 
-#: ../../include/uimport.php:120
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: ../../mod/admin.php:622
+msgid "Poll interval"
 msgstr ""
 
-#: ../../include/uimport.php:139
-msgid "User creation error"
+#: ../../mod/admin.php:622
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../include/uimport.php:157
-msgid "User profile creation error"
+#: ../../mod/admin.php:623
+msgid "Maximum Load Average"
 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."
+#: ../../mod/admin.php:623
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Witaj ponownie "
+#: ../../mod/admin.php:625
+msgid "Use MySQL full text engine"
+msgstr ""
 
-#: ../../include/security.php:366
+#: ../../mod/admin.php:625
 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."
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 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/admin.php:626
+msgid "Suppress Language"
+msgstr ""
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/admin.php:626
+msgid "Suppress language information in meta information about a posting."
+msgstr ""
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Utworzono nowy profil."
+#: ../../mod/admin.php:627
+msgid "Path to item cache"
+msgstr ""
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Nie można powileić profilu "
+#: ../../mod/admin.php:628
+msgid "Cache duration in seconds"
+msgstr ""
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Nazwa Profilu jest wymagana"
+#: ../../mod/admin.php:628
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr ""
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
+#: ../../mod/admin.php:629
+msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
+#: ../../mod/admin.php:630
+msgid "Temp path"
+msgstr "Ścieżka do Temp"
+
+#: ../../mod/admin.php:631
+msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Polubień"
+#: ../../mod/admin.php:633
+msgid "New base url"
+msgstr ""
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Nie lubień"
+#: ../../mod/admin.php:651
+msgid "Update has been marked successful"
+msgstr ""
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Praca/Zatrudnienie"
+#: ../../mod/admin.php:661
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religia"
+#: ../../mod/admin.php:664
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Poglądy polityczne"
+#: ../../mod/admin.php:668
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Płeć"
+#: ../../mod/admin.php:671
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Orientacja seksualna"
+#: ../../mod/admin.php:686
+msgid "No failed updates."
+msgstr "Brak błędów aktualizacji."
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Strona Główna"
+#: ../../mod/admin.php:690
+msgid "Failed Updates"
+msgstr "Błąd aktualizacji"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Zainteresowania"
+#: ../../mod/admin.php:691
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adres"
+#: ../../mod/admin.php:692
+msgid "Mark success (if update was manually applied)"
+msgstr ""
 
-#: ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Położenie"
+#: ../../mod/admin.php:693
+msgid "Attempt to execute this update step automatically"
+msgstr ""
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Konto zaktualizowane."
+#: ../../mod/admin.php:739
+msgid "Registration successful. Email send to user"
+msgstr ""
 
-#: ../../mod/profiles.php:521
-msgid " and "
-msgstr " i "
+#: ../../mod/admin.php:749
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: ../../mod/profiles.php:529
-msgid "public profile"
-msgstr "profil publiczny"
+#: ../../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/profiles.php:532
+#: ../../mod/admin.php:795
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr ""
+msgid "User '%s' deleted"
+msgstr "Użytkownik '%s' usunięty"
 
-#: ../../mod/profiles.php:533
+#: ../../mod/admin.php:803
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Odwiedźa %1$s's %2$s"
+msgid "User '%s' unblocked"
+msgstr "Użytkownik '%s' odblokowany"
 
-#: ../../mod/profiles.php:536
+#: ../../mod/admin.php:803
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "User '%s' blocked"
+msgstr "Użytkownik '%s' zablokowany"
+
+#: ../../mod/admin.php:894
+msgid "Add User"
 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/admin.php:895
+msgid "select all"
+msgstr "Zaznacz wszystko"
 
-#: ../../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/admin.php:896
+msgid "User registrations waiting for confirm"
+msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
 
-#: ../../mod/profiles.php:629
-msgid "Edit Profile Details"
-msgstr "Edytuj profil."
+#: ../../mod/admin.php:897
+msgid "User waiting for permanent deletion"
+msgstr "Użytkownik czekający na trwałe usunięcie"
 
-#: ../../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/admin.php:898
+msgid "Request date"
+msgstr "Data prośby"
 
-#: ../../mod/profiles.php:631
-msgid "Change Profile Photo"
-msgstr "Zmień profilowe zdjęcie"
+#: ../../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/profiles.php:632
-msgid "View this profile"
-msgstr "Zobacz ten profil"
+#: ../../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/profiles.php:633
-msgid "Create a new profile using these settings"
-msgstr "Stwórz nowy profil wykorzystując te ustawienia"
+#: ../../mod/admin.php:899
+msgid "No registrations."
+msgstr "brak rejestracji"
 
-#: ../../mod/profiles.php:634
-msgid "Clone this profile"
-msgstr "Sklonuj ten profil"
+#: ../../mod/admin.php:900 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Zatwierdź"
 
-#: ../../mod/profiles.php:635
-msgid "Delete this profile"
-msgstr "Usuń ten profil"
+#: ../../mod/admin.php:901
+msgid "Deny"
+msgstr "Odmów"
 
-#: ../../mod/profiles.php:636
-msgid "Profile Name:"
-msgstr "Nazwa profilu :"
+#: ../../mod/admin.php:903 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Zablokuj"
 
-#: ../../mod/profiles.php:637
-msgid "Your Full Name:"
-msgstr "Twoje imię i nazwisko:"
+#: ../../mod/admin.php:904 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Odblokuj"
 
-#: ../../mod/profiles.php:638
-msgid "Title/Description:"
-msgstr "Tytuł/Opis :"
+#: ../../mod/admin.php:905
+msgid "Site admin"
+msgstr "Administracja stroną"
 
-#: ../../mod/profiles.php:639
-msgid "Your Gender:"
-msgstr "Twoja płeć:"
+#: ../../mod/admin.php:906
+msgid "Account expired"
+msgstr "Konto wygasło."
 
-#: ../../mod/profiles.php:640
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Urodziny (%s):"
+#: ../../mod/admin.php:909
+msgid "New User"
+msgstr ""
 
-#: ../../mod/profiles.php:641
-msgid "Street Address:"
-msgstr "Ulica:"
+#: ../../mod/admin.php:910 ../../mod/admin.php:911
+msgid "Register date"
+msgstr "Data rejestracji"
 
-#: ../../mod/profiles.php:642
-msgid "Locality/City:"
-msgstr "Miejscowość/Miasto :"
+#: ../../mod/admin.php:910 ../../mod/admin.php:911
+msgid "Last login"
+msgstr "Ostatnie logowanie"
 
-#: ../../mod/profiles.php:643
-msgid "Postal/Zip Code:"
-msgstr "Kod Pocztowy :"
+#: ../../mod/admin.php:910 ../../mod/admin.php:911
+msgid "Last item"
+msgstr "Ostatni element"
 
-#: ../../mod/profiles.php:644
-msgid "Country:"
-msgstr "Kraj:"
+#: ../../mod/admin.php:910
+msgid "Deleted since"
+msgstr "Skasowany od"
 
-#: ../../mod/profiles.php:645
-msgid "Region/State:"
-msgstr "Region / Stan :"
+#: ../../mod/admin.php:911
+msgid "Account"
+msgstr "Konto"
 
-#: ../../mod/profiles.php:646
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stan :"
+#: ../../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/profiles.php:647
-msgid "Who: (if applicable)"
-msgstr "Kto: (jeśli dotyczy)"
+#: ../../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/profiles.php:648
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/admin.php:924
+msgid "Name of the new user."
+msgstr "Nazwa nowego użytkownika."
 
-#: ../../mod/profiles.php:649
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: ../../mod/admin.php:925
+msgid "Nickname"
+msgstr ""
 
-#: ../../mod/profiles.php:651
-msgid "Homepage URL:"
-msgstr "Strona główna URL:"
+#: ../../mod/admin.php:925
+msgid "Nickname of the new user."
+msgstr ""
 
-#: ../../mod/profiles.php:654
-msgid "Religious Views:"
-msgstr "Poglądy religijne:"
+#: ../../mod/admin.php:926
+msgid "Email address of the new user."
+msgstr "Adres email nowego użytkownika."
 
-#: ../../mod/profiles.php:655
-msgid "Public Keywords:"
-msgstr "Publiczne słowa kluczowe :"
+#: ../../mod/admin.php:959
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Wtyczka %s wyłączona."
 
-#: ../../mod/profiles.php:656
-msgid "Private Keywords:"
-msgstr "Prywatne słowa kluczowe :"
+#: ../../mod/admin.php:963
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Wtyczka %s właczona."
 
-#: ../../mod/profiles.php:659
-msgid "Example: fishing photography software"
-msgstr "Przykład: kończenie oprogramowania fotografii"
+#: ../../mod/admin.php:973 ../../mod/admin.php:1176
+msgid "Disable"
+msgstr "Wyłącz"
 
-#: ../../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/admin.php:975 ../../mod/admin.php:1178
+msgid "Enable"
+msgstr "Zezwól"
 
-#: ../../mod/profiles.php:661
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
+#: ../../mod/admin.php:998 ../../mod/admin.php:1206
+msgid "Toggle"
+msgstr "Włącz"
 
-#: ../../mod/profiles.php:662
-msgid "Tell us about yourself..."
-msgstr "Napisz o sobie..."
+#: ../../mod/admin.php:1006 ../../mod/admin.php:1216
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../mod/profiles.php:663
-msgid "Hobbies/Interests"
-msgstr "Zainteresowania"
+#: ../../mod/admin.php:1007 ../../mod/admin.php:1217
+msgid "Maintainer: "
+msgstr ""
 
-#: ../../mod/profiles.php:664
-msgid "Contact information and Social Networks"
-msgstr "Informacje kontaktowe i Sieci Społeczne"
+#: ../../mod/admin.php:1136
+msgid "No themes found."
+msgstr "Nie znaleziono tematu."
 
-#: ../../mod/profiles.php:665
-msgid "Musical interests"
-msgstr "Muzyka"
+#: ../../mod/admin.php:1198
+msgid "Screenshot"
+msgstr "Zrzut ekranu"
 
-#: ../../mod/profiles.php:666
-msgid "Books, literature"
-msgstr "Literatura"
+#: ../../mod/admin.php:1244
+msgid "[Experimental]"
+msgstr "[Eksperymentalne]"
 
-#: ../../mod/profiles.php:667
-msgid "Television"
-msgstr "Telewizja"
+#: ../../mod/admin.php:1245
+msgid "[Unsupported]"
+msgstr "[Niewspieralne]"
 
-#: ../../mod/profiles.php:668
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/taniec/kultura/rozrywka"
+#: ../../mod/admin.php:1272
+msgid "Log settings updated."
+msgstr "Zaktualizowano ustawienia logów."
 
-#: ../../mod/profiles.php:669
-msgid "Love/romance"
-msgstr "Miłość/romans"
+#: ../../mod/admin.php:1328
+msgid "Clear"
+msgstr "Wyczyść"
 
-#: ../../mod/profiles.php:670
-msgid "Work/employment"
-msgstr "Praca/zatrudnienie"
+#: ../../mod/admin.php:1334
+msgid "Enable Debugging"
+msgstr ""
 
-#: ../../mod/profiles.php:671
-msgid "School/education"
-msgstr "Szkoła/edukacja"
+#: ../../mod/admin.php:1335
+msgid "Log file"
+msgstr "Plik logów"
 
-#: ../../mod/profiles.php:676
+#: ../../mod/admin.php:1335
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr ""
 
-#: ../../mod/profiles.php:686 ../../mod/directory.php:111
-msgid "Age: "
-msgstr "Wiek: "
+#: ../../mod/admin.php:1336
+msgid "Log level"
+msgstr "Poziom logów"
 
-#: ../../mod/profiles.php:725
-msgid "Edit/Manage Profiles"
-msgstr "Edytuj/Zarządzaj Profilami"
+#: ../../mod/admin.php:1385 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Aktualizuj teraz"
 
-#: ../../mod/profiles.php:726 ../../boot.php:1449 ../../boot.php:1475
-msgid "Change profile photo"
-msgstr "Zmień zdjęcie profilowe"
+#: ../../mod/admin.php:1386
+msgid "Close"
+msgstr "Zamknij"
 
-#: ../../mod/profiles.php:727 ../../boot.php:1450
-msgid "Create New Profile"
-msgstr "Stwórz nowy profil"
+#: ../../mod/admin.php:1392
+msgid "FTP Host"
+msgstr "Założyciel FTP"
 
-#: ../../mod/profiles.php:738 ../../boot.php:1460
-msgid "Profile Image"
-msgstr "Obraz profilowy"
+#: ../../mod/admin.php:1393
+msgid "FTP Path"
+msgstr "Ścieżka FTP"
 
-#: ../../mod/profiles.php:740 ../../boot.php:1463
-msgid "visible to everybody"
-msgstr "widoczne dla wszystkich"
+#: ../../mod/admin.php:1394
+msgid "FTP User"
+msgstr "Użytkownik FTP"
 
-#: ../../mod/profiles.php:741 ../../boot.php:1464
-msgid "Edit visibility"
-msgstr "Edytuj widoczność"
+#: ../../mod/admin.php:1395
+msgid "FTP Password"
+msgstr "FTP Hasło"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
-msgid "Permission denied"
-msgstr "Odmowa dostępu"
+#: ../../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/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Nieprawidłowa nazwa użytkownika."
+#: ../../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/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Ustawienia widoczności profilu"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Wskazówki dla nowych użytkowników"
 
-#: ../../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/share.php:44
+msgid "link"
+msgstr "Link"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Widoczne dla"
+#: ../../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/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Artykuł nie znaleziony"
 
-#: ../../mod/notes.php:44 ../../boot.php:1982
-msgid "Personal Notes"
-msgstr "Osobiste notatki"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Edytuj post"
 
-#: ../../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
-msgid "Public access denied."
-msgstr "Publiczny dostęp zabroniony"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1082
+msgid "upload photo"
+msgstr "dodaj zdjęcie"
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Ograniczony dostęp do tego konta"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1083
+msgid "Attach file"
+msgstr "Przyłącz plik"
 
-#: ../../mod/display.php:239
-msgid "Item has been removed."
-msgstr "Przedmiot został usunięty"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1084
+msgid "attach file"
+msgstr "załącz plik"
 
-#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62
-#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Obejrzyj %s's profil [%s]"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1086
+msgid "web link"
+msgstr "Adres www"
 
-#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
-msgid "Edit contact"
-msgstr "Edytuj kontakt"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1087
+msgid "Insert video link"
+msgstr "Wstaw link wideo"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty spoza członków grupy"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1088
+msgid "video link"
+msgstr "link do filmu"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} chce być Twoim znajomym"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1089
+msgid "Insert audio link"
+msgstr "Wstaw link audio"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} wysyła Ci wiadomość"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1090
+msgid "audio link"
+msgstr "Link audio"
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} żądana rejestracja"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1091
+msgid "Set your location"
+msgstr "Ustaw swoje położenie"
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} skomentował %s wpis"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1092
+msgid "set location"
+msgstr "wybierz lokalizację"
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} polubił wpis %s"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1093
+msgid "Clear browser location"
+msgstr "Wyczyść położenie przeglądarki"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} przestał lubić post %s"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1094
+msgid "clear location"
+msgstr "wyczyść lokalizację"
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} jest teraz znajomym %s"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1100
+msgid "Permission settings"
+msgstr "Ustawienia uprawnień"
 
-#: ../../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/editpost.php:133 ../../include/conversation.php:1109
+msgid "CC: email addresses"
+msgstr "CC: adresy e-mail"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776
-msgid "Users"
-msgstr "Użytkownicy"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1110
+msgid "Public post"
+msgstr "Publiczny post"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901
-msgid "Plugins"
-msgstr "Wtyczki"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1096
+msgid "Set title"
+msgstr "Ustaw tytuł"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101
-msgid "Themes"
-msgstr "Temat"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1098
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (lista słów oddzielonych przecinkiem)"
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "Aktualizacje DB"
+#: ../../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/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188
-msgid "Logs"
-msgstr "Logi"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Element nie dostępny."
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Polecane wtyczki"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element nie znaleziony."
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Rejestracje użytkownika czekają na potwierdzenie."
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto zatwierdzone."
 
-#: ../../mod/admin.php:182 ../../mod/admin.php:733
-msgid "Normal Account"
-msgstr "Konto normalne"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Rejestracja dla %s odwołana"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:734
-msgid "Soapbox Account"
-msgstr "Konto Soapbox"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Proszę się zalogować."
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:735
-msgid "Community/Celebrity Account"
-msgstr "Konto społeczności/gwiazdy"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Znajdź na tej stronie"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:736
-msgid "Automatic Friend Account"
-msgstr "Automatyczny przyjaciel konta"
+#: ../../mod/directory.php:59 ../../mod/contacts.php:612
+msgid "Finding: "
+msgstr "Znalezione:"
 
-#: ../../mod/admin.php:186
-msgid "Blog Account"
-msgstr "Konto Bloga"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Katalog Strony"
 
-#: ../../mod/admin.php:187
-msgid "Private Forum"
-msgstr "Forum Prywatne"
+#: ../../mod/directory.php:61 ../../mod/contacts.php:613
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Znajdź"
 
-#: ../../mod/admin.php:206
-msgid "Message queues"
-msgstr "Wiadomości"
+#: ../../mod/directory.php:111 ../../mod/profiles.php:686
+msgid "Age: "
+msgstr "Wiek: "
 
-#: ../../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/directory.php:114
+msgid "Gender: "
+msgstr "Płeć: "
 
-#: ../../mod/admin.php:212
-msgid "Summary"
-msgstr "Skrót"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "O:"
 
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr "Zarejestrowani użytkownicy"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
 
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
-msgstr "Rejestracje w toku."
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Ustawienia kontaktu zaktualizowane."
 
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr "Wersja"
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Nie udało się zaktualizować kontaktu."
 
-#: ../../mod/admin.php:219
-msgid "Active plugins"
-msgstr "Aktywne pluginy"
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Napraw ustawienia kontaktów"
 
-#: ../../mod/admin.php:405
-msgid "Site settings updated."
-msgstr "Ustawienia strony zaktualizowane"
+#: ../../mod/crepair.php:137
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."
 
-#: ../../mod/admin.php:434 ../../mod/settings.php:793
-msgid "No special theme for mobile devices"
-msgstr "Brak specialnego motywu dla urządzeń mobilnych"
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
 
-#: ../../mod/admin.php:451 ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Nigdy"
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Wróć do edytora kontaktów"
 
-#: ../../mod/admin.php:460
-msgid "Multi user instance"
-msgstr "Tryb MultiUsera"
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Nazwa konta"
 
-#: ../../mod/admin.php:476
-msgid "Closed"
-msgstr "Zamknięty"
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr ""
 
-#: ../../mod/admin.php:477
-msgid "Requires approval"
-msgstr "Wymagane zatwierdzenie."
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "URL konta"
 
-#: ../../mod/admin.php:478
-msgid "Open"
-msgstr "Otwórz"
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "URL żądajacy znajomości"
 
-#: ../../mod/admin.php:482
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Brak SSL , linki będą śledzić stan SSL ."
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "URL potwierdzający znajomość"
 
-#: ../../mod/admin.php:483
-msgid "Force all links to use SSL"
-msgstr "Wymuś by linki używały SSL."
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "Zgłoszenie Punktu Końcowego URL"
 
-#: ../../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/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "Adres Ankiety / RSS"
 
-#: ../../mod/admin.php:492 ../../mod/register.php:261
-msgid "Registration"
-msgstr "Rejestracja"
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Nowe zdjęcie z tej ścieżki"
 
-#: ../../mod/admin.php:493
-msgid "File upload"
-msgstr "Plik załadowano"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Przenieś konto"
 
-#: ../../mod/admin.php:494
-msgid "Policies"
-msgstr "zasady"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr ""
 
-#: ../../mod/admin.php:495
-msgid "Advanced"
-msgstr "Zaawansowany"
+#: ../../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/admin.php:496
-msgid "Performance"
-msgstr "Ustawienia"
+#: ../../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/admin.php:500
-msgid "Site name"
-msgstr "Nazwa strony"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
 
-#: ../../mod/admin.php:501
-msgid "Banner/Logo"
-msgstr "Logo"
+#: ../../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/admin.php:502
-msgid "System language"
-msgstr "Język systemu"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Dane prywatne nie są dostępne zdalnie "
 
-#: ../../mod/admin.php:503
-msgid "System theme"
-msgstr "Motyw systemowy"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Widoczne dla:"
 
-#: ../../mod/admin.php:503
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>"
+#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:930
+msgid "Save"
+msgstr "Zapisz"
 
-#: ../../mod/admin.php:504
-msgid "Mobile system theme"
-msgstr "Mobilny motyw systemowy"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Pomoc:"
 
-#: ../../mod/admin.php:504
-msgid "Theme for mobile devices"
-msgstr "Szablon dla mobilnych urządzeń"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Pomoc"
 
-#: ../../mod/admin.php:505
-msgid "SSL link policy"
-msgstr "polityka SSL"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Brak profilu"
 
-#: ../../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/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "To wprowadzenie zostało już zaakceptowane."
 
-#: ../../mod/admin.php:506
-msgid "'Share' element"
-msgstr "'Udostępnij' element"
+#: ../../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/admin.php:506
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr "Aktywuje element BBcode 'dziel ' dla powtarzając się części."
+#: ../../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/admin.php:507
-msgid "Hide help entry from navigation menu"
-msgstr "Wyłącz pomoc w menu nawigacyjnym "
+#: ../../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/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/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/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/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "wprowadzanie zakończone."
 
-#: ../../mod/admin.php:509
-msgid "Maximum image size"
-msgstr "Maksymalny rozmiar zdjęcia"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Nieodwracalny błąd protokołu."
 
-#: ../../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/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil niedostępny."
 
-#: ../../mod/admin.php:510
-msgid "Maximum image length"
-msgstr "Maksymalna długość obrazu"
+#: ../../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/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/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrona przed spamem została wywołana."
 
-#: ../../mod/admin.php:511
-msgid "JPEG image quality"
-msgstr "jakość obrazu JPEG"
+#: ../../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/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/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Niewłaściwy lokalizator "
 
-#: ../../mod/admin.php:513
-msgid "Register policy"
-msgstr "Zarejestruj polisę"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Nieprawidłowy adres email."
 
-#: ../../mod/admin.php:514
-msgid "Maximum Daily Registrations"
-msgstr "Maksymalnie dziennych rejestracji"
+#: ../../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/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/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/admin.php:515
-msgid "Register text"
-msgstr "Zarejestruj tekst"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Już się tu przedstawiłeś."
 
-#: ../../mod/admin.php:515
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Widocznie jesteście już znajomymi z %s"
 
-#: ../../mod/admin.php:516
-msgid "Accounts abandoned after x days"
-msgstr "Konto porzucone od x dni."
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Zły adres URL profilu."
 
-#: ../../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/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nie dozwolony adres URL profilu."
 
-#: ../../mod/admin.php:517
-msgid "Allowed friend domains"
-msgstr "Dozwolone domeny przyjaciół"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
+msgid "Failed to update contact record."
+msgstr "Aktualizacja nagrania kontaktu nie powiodła się."
 
-#: ../../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/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Twoje dane zostały wysłane."
 
-#: ../../mod/admin.php:518
-msgid "Allowed email domains"
-msgstr "Dozwolone domeny e-mailowe"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Proszę zalogować się do potwierdzenia wstępu."
 
-#: ../../mod/admin.php:518
+#: ../../mod/dfrn_request.php:659
 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 ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
 
-#: ../../mod/admin.php:519
-msgid "Block public"
-msgstr "Blokuj publicznie"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Ukryj kontakt"
 
-#: ../../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/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: ../../mod/admin.php:520
-msgid "Force publish"
-msgstr "Wymuś publikację"
+#: ../../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/admin.php:520
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Potwierdź"
 
-#: ../../mod/admin.php:521
-msgid "Global directory update URL"
-msgstr ""
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3504
+msgid "[Name Withheld]"
+msgstr "[Nazwa wstrzymana]"
 
-#: ../../mod/admin.php:521
+#: ../../mod/dfrn_request.php:811
 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 ""
+"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/admin.php:523
-msgid "Private posts by default for new users"
-msgstr ""
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Połącz jako użytkownika e mail (tylko)</strike> (Niebawem)"
 
-#: ../../mod/admin.php:523
+#: ../../mod/dfrn_request.php:829
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Jeśli nie jesteś członkiem darmowej sieci społecznościowej <a href=\"http://dir.friendica.com/siteinfo\"> kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś </a>."
 
-#: ../../mod/admin.php:524
-msgid "Don't include post content in email notifications"
-msgstr ""
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Przyjaciel/Prośba o połączenie"
 
-#: ../../mod/admin.php:524
+#: ../../mod/dfrn_request.php:833
 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 ""
+"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/admin.php:525
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Proszę odpowiedzieć na poniższe:"
 
-#: ../../mod/admin.php:525
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Czy %s Cię zna?"
 
-#: ../../mod/admin.php:526
-msgid "Don't embed private images in posts"
-msgstr ""
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Dodaj osobistą notkę:"
 
-#: ../../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/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:528
-msgid "Block multiple registrations"
-msgstr ""
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Sieć społeczna"
 
-#: ../../mod/admin.php:528
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:718
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:529
-msgid "OpenID support"
-msgstr "Wsparcie OpenID"
+#: ../../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/admin.php:529
-msgid "OpenID support for registration and logins."
-msgstr ""
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Twój zidentyfikowany adres:"
 
-#: ../../mod/admin.php:530
-msgid "Fullname check"
-msgstr "Sprawdzanie pełnej nazwy"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Wyślij zgłoszenie"
 
-#: ../../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/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/admin.php:531
-msgid "UTF-8 Regular expressions"
-msgstr ""
+#: ../../mod/content.php:496 ../../include/conversation.php:686
+msgid "View in context"
+msgstr "Zobacz w kontekście"
 
-#: ../../mod/admin.php:531
-msgid "Use PHP UTF8 regular expressions"
-msgstr ""
+#: ../../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."
 
-#: ../../mod/admin.php:532
-msgid "Show Community Page"
-msgstr "Pokaż stronę społeczności"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Nie można znaleźć wybranego profilu."
 
-#: ../../mod/admin.php:532
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr ""
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Kontakt zaktualizowany"
 
-#: ../../mod/admin.php:533
-msgid "Enable OStatus support"
-msgstr "Włącz wsparcie OStatus"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Kontakt został zablokowany"
 
-#: ../../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/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Kontakt został odblokowany"
 
-#: ../../mod/admin.php:534
-msgid "OStatus conversation completion interval"
-msgstr ""
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Kontakt jest ignorowany"
 
-#: ../../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/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Kontakt nie jest ignorowany"
 
-#: ../../mod/admin.php:535
-msgid "Enable Diaspora support"
-msgstr "Włączyć obsługę Diaspory"
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Kontakt został zarchiwizowany"
 
-#: ../../mod/admin.php:535
-msgid "Provide built-in Diaspora network compatibility."
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/admin.php:536
-msgid "Only allow Friendica contacts"
-msgstr "Dopuść tylko kontakty Friendrica"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "Czy na pewno chcesz usunąć ten kontakt?"
 
-#: ../../mod/admin.php:536
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr ""
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Kontakt został usunięty."
 
-#: ../../mod/admin.php:537
-msgid "Verify SSL"
-msgstr "Weryfikacja SSL"
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jesteś już znajomym z %s"
 
-#: ../../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/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Współdzielisz z %s"
 
-#: ../../mod/admin.php:538
-msgid "Proxy user"
-msgstr "Użytkownik proxy"
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s współdzieli z tobą"
 
-#: ../../mod/admin.php:539
-msgid "Proxy URL"
-msgstr "URL Proxy"
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
 
-#: ../../mod/admin.php:540
-msgid "Network timeout"
-msgstr "Network timeout"
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(Aktualizacja przebiegła pomyślnie)"
 
-#: ../../mod/admin.php:540
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(Aktualizacja nie powiodła się)"
 
-#: ../../mod/admin.php:541
-msgid "Delivery interval"
-msgstr ""
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Osoby, które możesz znać"
 
-#: ../../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/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sieci: %s"
 
-#: ../../mod/admin.php:542
-msgid "Poll interval"
-msgstr ""
+#: ../../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/admin.php:542
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Zobacz wszystkie kontakty"
 
-#: ../../mod/admin.php:543
-msgid "Maximum Load Average"
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../mod/admin.php:543
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Odblokuj"
 
-#: ../../mod/admin.php:545
-msgid "Use MySQL full text engine"
-msgstr ""
+#: ../../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/admin.php:545
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../mod/admin.php:546
-msgid "Path to item cache"
-msgstr ""
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "Przywróć z archiwum"
 
-#: ../../mod/admin.php:547
-msgid "Cache duration in seconds"
-msgstr ""
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archiwum"
 
-#: ../../mod/admin.php:547
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../mod/admin.php:548
-msgid "Path for lock file"
-msgstr ""
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Napraw"
 
-#: ../../mod/admin.php:549
-msgid "Temp path"
-msgstr "Ścieżka do Temp"
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Zaawansowane ustawienia kontaktów"
 
-#: ../../mod/admin.php:550
-msgid "Base path to installation"
-msgstr ""
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Komunikacja przerwana z tym kontaktem!"
 
-#: ../../mod/admin.php:567
-msgid "Update has been marked successful"
-msgstr ""
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Edytor kontaktów"
 
-#: ../../mod/admin.php:577
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr ""
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Widoczność profilu"
 
-#: ../../mod/admin.php:580
+#: ../../mod/contacts.php:388
 #, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
 
-#: ../../mod/admin.php:584
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Informacja o kontakcie / Notka"
 
-#: ../../mod/admin.php:587
+#: ../../mod/contacts.php:390
+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 "Update function %s could not be found."
-msgstr ""
+msgid "Visit %s's profile [%s]"
+msgstr "Obejrzyj %s's profil [%s]"
 
-#: ../../mod/admin.php:602
-msgid "No failed updates."
-msgstr "Brak błędów aktualizacji."
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Zablokuj/odblokuj kontakt"
 
-#: ../../mod/admin.php:606
-msgid "Failed Updates"
-msgstr "Błąd aktualizacji"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignoruj kontakt"
 
-#: ../../mod/admin.php:607
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Napraw ustawienia adresu"
 
-#: ../../mod/admin.php:608
-msgid "Mark success (if update was manually applied)"
-msgstr ""
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Zobacz rozmowę"
 
-#: ../../mod/admin.php:609
-msgid "Attempt to execute this update step automatically"
-msgstr ""
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Usuń kontakt"
 
-#: ../../mod/admin.php:634
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Ostatnia aktualizacja:"
 
-#: ../../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/contacts.php:407
+msgid "Update public posts"
+msgstr "Zaktualizuj publiczne posty"
 
-#: ../../mod/admin.php:680
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Użytkownik '%s' usunięty"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Obecnie zablokowany"
 
-#: ../../mod/admin.php:688
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Użytkownik '%s' odblokowany"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Obecnie zignorowany"
 
-#: ../../mod/admin.php:688
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Użytkownik '%s' zablokowany"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Obecnie zarchiwizowany"
 
-#: ../../mod/admin.php:764
-msgid "select all"
-msgstr "Zaznacz wszystko"
+#: ../../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/admin.php:765
-msgid "User registrations waiting for confirm"
-msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
+#: ../../mod/contacts.php:419
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
 
-#: ../../mod/admin.php:766
-msgid "Request date"
-msgstr "Data prośby"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Sugestie"
 
-#: ../../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/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Sugerowani znajomi"
 
-#: ../../mod/admin.php:767
-msgid "No registrations."
-msgstr "brak rejestracji"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Wszystkie kontakty"
 
-#: ../../mod/admin.php:768 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Zatwierdź"
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Pokaż wszystkie kontakty"
 
-#: ../../mod/admin.php:769
-msgid "Deny"
-msgstr "Odmów"
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Odblokowany"
 
-#: ../../mod/admin.php:771 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Zablokuj"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Pokaż tylko odblokowane kontakty"
 
-#: ../../mod/admin.php:772 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Odblokuj"
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Zablokowany"
 
-#: ../../mod/admin.php:773
-msgid "Site admin"
-msgstr "Administracja stroną"
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Pokaż tylko zablokowane kontakty"
 
-#: ../../mod/admin.php:774
-msgid "Account expired"
-msgstr ""
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Zignorowany"
 
-#: ../../mod/admin.php:777
-msgid "Register date"
-msgstr "Data rejestracji"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Pokaż tylko ignorowane kontakty"
 
-#: ../../mod/admin.php:777
-msgid "Last login"
-msgstr "Ostatnie logowanie"
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Zarchiwizowane"
 
-#: ../../mod/admin.php:777
-msgid "Last item"
-msgstr "Ostatni element"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Pokaż tylko zarchiwizowane kontakty"
 
-#: ../../mod/admin.php:777
-msgid "Account"
-msgstr "Konto"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Ukryty"
 
-#: ../../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/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Pokaż tylko ukryte kontakty"
 
-#: ../../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/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Wzajemna przyjaźń"
 
-#: ../../mod/admin.php:821
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Wtyczka %s wyłączona."
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "jest twoim fanem"
 
-#: ../../mod/admin.php:825
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Wtyczka %s właczona."
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "jesteś fanem"
 
-#: ../../mod/admin.php:835 ../../mod/admin.php:1038
-msgid "Disable"
-msgstr "Wyłącz"
+#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Edytuj kontakt"
 
-#: ../../mod/admin.php:837 ../../mod/admin.php:1040
-msgid "Enable"
-msgstr "Zezwól"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Wyszukaj w kontaktach"
 
-#: ../../mod/admin.php:860 ../../mod/admin.php:1068
-msgid "Toggle"
-msgstr "Włącz"
+#: ../../mod/settings.php:28 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "wszyscy"
 
-#: ../../mod/admin.php:868 ../../mod/admin.php:1078
-msgid "Author: "
-msgstr "Autor: "
+#: ../../mod/settings.php:35 ../../mod/uexport.php:9 ../../include/nav.php:167
+msgid "Account settings"
+msgstr "Ustawienia konta"
 
-#: ../../mod/admin.php:869 ../../mod/admin.php:1079
-msgid "Maintainer: "
+#: ../../mod/settings.php:40
+msgid "Additional features"
 msgstr ""
 
-#: ../../mod/admin.php:998
-msgid "No themes found."
-msgstr "Nie znaleziono tematu."
+#: ../../mod/settings.php:45 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Wyświetl ustawienia"
 
-#: ../../mod/admin.php:1060
-msgid "Screenshot"
-msgstr "Zrzut ekranu"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Ustawienia konektora"
 
-#: ../../mod/admin.php:1106
-msgid "[Experimental]"
-msgstr "[Eksperymentalne]"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Ustawienia wtyczek"
 
-#: ../../mod/admin.php:1107
-msgid "[Unsupported]"
-msgstr "[Niewspieralne]"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Powiązane aplikacje"
 
-#: ../../mod/admin.php:1134
-msgid "Log settings updated."
-msgstr "Zaktualizowano ustawienia logów."
+#: ../../mod/settings.php:66 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Eksportuje dane personalne"
 
-#: ../../mod/admin.php:1190
-msgid "Clear"
-msgstr "Wyczyść"
+#: ../../mod/settings.php:71 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Usuń konto"
 
-#: ../../mod/admin.php:1196
-msgid "Enable Debugging"
-msgstr ""
+#: ../../mod/settings.php:123
+msgid "Missing some important data!"
+msgstr "Brakuje ważnych danych!"
 
-#: ../../mod/admin.php:1197
-msgid "Log file"
-msgstr "Plik logów"
+#: ../../mod/settings.php:126 ../../mod/settings.php:623
+msgid "Update"
+msgstr "Zaktualizuj"
 
-#: ../../mod/admin.php:1197
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr ""
+#: ../../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/admin.php:1198
-msgid "Log level"
-msgstr "Poziom logów"
+#: ../../mod/settings.php:237
+msgid "Email settings updated."
+msgstr "Zaktualizowano ustawienia email."
 
-#: ../../mod/admin.php:1247 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Aktualizuj teraz"
+#: ../../mod/settings.php:252
+msgid "Features updated"
+msgstr ""
 
-#: ../../mod/admin.php:1248
-msgid "Close"
-msgstr "Zamknij"
+#: ../../mod/settings.php:311
+msgid "Relocate message has been send to your contacts"
+msgstr ""
 
-#: ../../mod/admin.php:1254
-msgid "FTP Host"
-msgstr "Założyciel FTP"
+#: ../../mod/settings.php:325
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hasło nie pasuje. Hasło nie zmienione."
 
-#: ../../mod/admin.php:1255
-msgid "FTP Path"
-msgstr "Ścieżka FTP"
+#: ../../mod/settings.php:330
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Brak hasła niedozwolony. Hasło nie zmienione."
 
-#: ../../mod/admin.php:1256
-msgid "FTP User"
-msgstr "Użytkownik FTP"
+#: ../../mod/settings.php:338
+msgid "Wrong password."
+msgstr "Złe hasło."
 
-#: ../../mod/admin.php:1257
-msgid "FTP Password"
-msgstr "FTP Hasło"
+#: ../../mod/settings.php:349
+msgid "Password changed."
+msgstr "Hasło zostało zmianione."
 
-#: ../../mod/item.php:108
-msgid "Unable to locate original post."
-msgstr "Nie można zlokalizować oryginalnej wiadomości."
+#: ../../mod/settings.php:351
+msgid "Password update failed. Please try again."
+msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
 
-#: ../../mod/item.php:310
-msgid "Empty post discarded."
-msgstr "Pusty wpis wyrzucony."
+#: ../../mod/settings.php:416
+msgid " Please use a shorter name."
+msgstr "Proszę użyć krótszej nazwy."
 
-#: ../../mod/item.php:872
-msgid "System error. Post not saved."
-msgstr "Błąd. Post niezapisany."
+#: ../../mod/settings.php:418
+msgid " Name too short."
+msgstr "Za krótka nazwa."
 
-#: ../../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/settings.php:427
+msgid "Wrong Password"
+msgstr "Złe hasło"
 
-#: ../../mod/item.php:899
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Możesz ich odwiedzić online u %s"
+#: ../../mod/settings.php:432
+msgid " Not valid email."
+msgstr "Zły email."
 
-#: ../../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/settings.php:435
+msgid " Cannot change to that email."
+msgstr "Nie mogę zmienić na ten email."
 
-#: ../../mod/item.php:904
-#, php-format
-msgid "%s posted an update."
-msgstr "%s zaktualizował wpis."
+#: ../../mod/settings.php:489
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Znajomy %s"
+#: ../../mod/settings.php:493
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Brak znajomych do wyświetlenia"
+#: ../../mod/settings.php:523
+msgid "Settings updated."
+msgstr "Zaktualizowano ustawienia."
 
-#: ../../mod/search.php:21 ../../mod/network.php:224
-msgid "Remove term"
-msgstr "Usuń wpis"
+#: ../../mod/settings.php:596 ../../mod/settings.php:622
+#: ../../mod/settings.php:658
+msgid "Add application"
+msgstr "Dodaj aplikacje"
 
-#: ../../mod/search.php:180 ../../mod/search.php:206
-#: ../../mod/community.php:61 ../../mod/community.php:89
-msgid "No results."
-msgstr "Brak wyników."
+#: ../../mod/settings.php:600 ../../mod/settings.php:626
+msgid "Consumer Key"
+msgstr "Klucz konsumenta"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoryzacja połączenia aplikacji"
+#: ../../mod/settings.php:601 ../../mod/settings.php:627
+msgid "Consumer Secret"
+msgstr "Sekret konsumenta"
 
-#: ../../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/settings.php:602 ../../mod/settings.php:628
+msgid "Redirect"
+msgstr "Przekierowanie"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Zaloguj się aby kontynuować."
+#: ../../mod/settings.php:603 ../../mod/settings.php:629
+msgid "Icon url"
+msgstr "Adres ikony"
 
-#: ../../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/settings.php:614
+msgid "You can't edit this application."
+msgstr "Nie możesz edytować tej aplikacji."
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Szczegóły rejestracji dla %s"
+#: ../../mod/settings.php:657
+msgid "Connected Apps"
+msgstr "Powiązane aplikacje"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
+#: ../../mod/settings.php:661
+msgid "Client key starts with"
+msgstr "Klucz klienta zaczyna się od"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."
+#: ../../mod/settings.php:662
+msgid "No name"
+msgstr "Bez nazwy"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
+#: ../../mod/settings.php:663
+msgid "Remove authorization"
+msgstr "Odwołaj upoważnienie"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Prośba o rejestrację u %s"
+#: ../../mod/settings.php:675
+msgid "No Plugin settings configured"
+msgstr "Ustawienia wtyczki nieskonfigurowane"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
+#: ../../mod/settings.php:683
+msgid "Plugin Settings"
+msgstr "Ustawienia wtyczki"
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
+#: ../../mod/settings.php:697
+msgid "Off"
+msgstr "Wyłącz"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."
+#: ../../mod/settings.php:697
+msgid "On"
+msgstr "Włącz"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
+#: ../../mod/settings.php:705
+msgid "Additional Features"
+msgstr ""
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Twój OpenID (opcjonalnie):"
+#: ../../mod/settings.php:718 ../../mod/settings.php:719
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr ""
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Czy dołączyć twój profil do katalogu członków?"
+#: ../../mod/settings.php:718 ../../mod/settings.php:719
+msgid "enabled"
+msgstr "włączony"
 
-#: ../../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."
+#: ../../mod/settings.php:718 ../../mod/settings.php:719
+msgid "disabled"
+msgstr "wyłączony"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "Twoje zaproszenia ID:"
+#: ../../mod/settings.php:719
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Imię i nazwisko (np. Jan Kowalski):"
+#: ../../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/register.php:270
-msgid "Your Email Address: "
-msgstr "Twój adres email:"
+#: ../../mod/settings.php:758
+msgid "Connector Settings"
+msgstr "Ustawienia konektora"
 
-#: ../../mod/register.php:271
+#: ../../mod/settings.php:763
+msgid "Email/Mailbox Setup"
+msgstr "Ustawienia  emaila/skrzynki mailowej"
+
+#: ../../mod/settings.php:764
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'."
+"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/register.php:272
-msgid "Choose a nickname: "
-msgstr "Wybierz pseudonim:"
+#: ../../mod/settings.php:765
+msgid "Last successful email check:"
+msgstr "Ostatni sprawdzony e-mail:"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Konto zatwierdzone."
+#: ../../mod/settings.php:767
+msgid "IMAP server name:"
+msgstr "Nazwa serwera IMAP:"
 
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Rejestracja dla %s odwołana"
+#: ../../mod/settings.php:768
+msgid "IMAP port:"
+msgstr "Port IMAP:"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Proszę się zalogować."
+#: ../../mod/settings.php:769
+msgid "Security:"
+msgstr "Ochrona:"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Element nie dostępny."
+#: ../../mod/settings.php:769 ../../mod/settings.php:774
+msgid "None"
+msgstr "Brak"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element nie znaleziony."
+#: ../../mod/settings.php:770
+msgid "Email login name:"
+msgstr "Login emaila:"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Usuń konto"
+#: ../../mod/settings.php:771
+msgid "Email password:"
+msgstr "Hasło emaila:"
 
-#: ../../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/settings.php:772
+msgid "Reply-to address:"
+msgstr "Odpowiedz na adres:"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Wprowadź hasło w celu weryfikacji."
+#: ../../mod/settings.php:773
+msgid "Send public posts to all email contacts:"
+msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Źródło - tekst (BBcode) :"
+#: ../../mod/settings.php:774
+msgid "Action after import:"
+msgstr "Akcja po zaimportowaniu:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :"
+#: ../../mod/settings.php:774
+msgid "Mark as seen"
+msgstr "Oznacz jako przeczytane"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Źródło wejścia:"
+#: ../../mod/settings.php:774
+msgid "Move to folder"
+msgstr "Przenieś do folderu"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: ../../mod/settings.php:775
+msgid "Move to folder:"
+msgstr "Przenieś do folderu:"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/settings.php:850
+msgid "Display Settings"
+msgstr "Wyświetl ustawienia"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/settings.php:856 ../../mod/settings.php:869
+msgid "Display Theme:"
+msgstr "Wyświetl motyw:"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/settings.php:857
+msgid "Mobile Theme:"
+msgstr "Mobilny motyw:"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/settings.php:858
+msgid "Update browser every xx seconds"
+msgstr "Odświeżaj stronę co xx sekund"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/settings.php:858
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Dolny limit 10 sekund, brak górnego limitu"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/settings.php:859
+msgid "Number of items to display per page:"
+msgstr ""
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Źródło wejścia(format Diaspory):"
+#: ../../mod/settings.php:859 ../../mod/settings.php:860
+msgid "Maximum of 100 items"
+msgstr "Maksymalnie 100 elementów"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/settings.php:860
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Wspólni znajomi"
+#: ../../mod/settings.php:861
+msgid "Don't show emoticons"
+msgstr "Nie pokazuj emotikonek"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../mod/settings.php:862
+msgid "Infinite scroll"
 msgstr ""
 
-#: ../../mod/apps.php:7
-msgid "You must be logged in to use addons. "
+#: ../../mod/settings.php:938
+msgid "Normal Account Page"
 msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikacje"
+#: ../../mod/settings.php:939
+msgid "This account is a normal personal profile"
+msgstr "To konto jest normalnym osobistym profilem"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Brak zainstalowanych aplikacji."
-
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/settings.php:942
+msgid "Soapbox Page"
+msgstr ""
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Przenieś konto"
+#: ../../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/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: ../../mod/settings.php:946
+msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../mod/uimport.php:68
+#: ../../mod/settings.php:947
 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 ""
+"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/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
+#: ../../mod/settings.php:950
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
+#: ../../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/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: ../../mod/settings.php:955
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../mod/settings.php:23 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "wszyscy"
+#: ../../mod/settings.php:967
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr ""
+#: ../../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:40 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Wyświetl ustawienia"
+#: ../../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:46 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Ustawienia konektora"
+#: ../../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:51 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Ustawienia wtyczek"
+#: ../../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:56 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Powiązane aplikacje"
+#: ../../mod/settings.php:995
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Eksportuje dane personalne"
+#: ../../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:66 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Usuń konto"
+#: ../../mod/settings.php:1006
+msgid "Allow friends to tag your posts?"
+msgstr "Zezwól na oznaczanie twoich postów przez znajomych"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Brakuje ważnych danych!"
+#: ../../mod/settings.php:1012
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr ""
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:610
-msgid "Update"
-msgstr "Zaktualizuj"
+#: ../../mod/settings.php:1018
+msgid "Permit unknown people to send you private mail?"
+msgstr ""
 
-#: ../../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:1026
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil <strong>nie jest opublikowany</strong>"
 
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "Zaktualizowano ustawienia email."
+#: ../../mod/settings.php:1029 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "lub"
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
+#: ../../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:312
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hasło nie pasuje. Hasło nie zmienione."
+#: ../../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:317
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Brak hasła niedozwolony. Hasło nie zmienione."
+#: ../../mod/settings.php:1046
+msgid "Advanced expiration settings"
+msgstr ""
 
-#: ../../mod/settings.php:325
-msgid "Wrong password."
+#: ../../mod/settings.php:1047
+msgid "Advanced Expiration"
 msgstr ""
 
-#: ../../mod/settings.php:336
-msgid "Password changed."
-msgstr "Hasło zostało zmianione."
+#: ../../mod/settings.php:1048
+msgid "Expire posts:"
+msgstr "Wygasające posty:"
 
-#: ../../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:1049
+msgid "Expire personal notes:"
+msgstr "Wygasające notatki osobiste:"
 
-#: ../../mod/settings.php:403
-msgid " Please use a shorter name."
-msgstr "Proszę użyć krótszej nazwy."
+#: ../../mod/settings.php:1050
+msgid "Expire starred posts:"
+msgstr ""
 
-#: ../../mod/settings.php:405
-msgid " Name too short."
-msgstr "Za krótka nazwa."
+#: ../../mod/settings.php:1051
+msgid "Expire photos:"
+msgstr "Wygasające zdjęcia:"
 
-#: ../../mod/settings.php:414
-msgid "Wrong Password"
+#: ../../mod/settings.php:1052
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../mod/settings.php:419
-msgid " Not valid email."
-msgstr "Zły email."
+#: ../../mod/settings.php:1078
+msgid "Account Settings"
+msgstr "Ustawienia konta"
 
-#: ../../mod/settings.php:422
-msgid " Cannot change to that email."
-msgstr "Nie mogę zmienić na ten email."
+#: ../../mod/settings.php:1086
+msgid "Password Settings"
+msgstr "Ustawienia hasła"
 
-#: ../../mod/settings.php:476
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
+#: ../../mod/settings.php:1087
+msgid "New Password:"
+msgstr "Nowe hasło:"
 
-#: ../../mod/settings.php:480
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
+#: ../../mod/settings.php:1088
+msgid "Confirm:"
+msgstr "Potwierdź:"
 
-#: ../../mod/settings.php:510
-msgid "Settings updated."
-msgstr "Zaktualizowano ustawienia."
+#: ../../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:583 ../../mod/settings.php:609
-#: ../../mod/settings.php:645
-msgid "Add application"
-msgstr "Dodaj aplikacje"
+#: ../../mod/settings.php:1089
+msgid "Current Password:"
+msgstr "Obecne hasło:"
 
-#: ../../mod/settings.php:587 ../../mod/settings.php:613
-msgid "Consumer Key"
-msgstr "Klucz konsumenta"
+#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
+msgid "Your current password to confirm the changes"
+msgstr ""
 
-#: ../../mod/settings.php:588 ../../mod/settings.php:614
-msgid "Consumer Secret"
-msgstr "Sekret konsumenta"
+#: ../../mod/settings.php:1090
+msgid "Password:"
+msgstr "Hasło:"
 
-#: ../../mod/settings.php:589 ../../mod/settings.php:615
-msgid "Redirect"
-msgstr "Przekierowanie"
+#: ../../mod/settings.php:1094
+msgid "Basic Settings"
+msgstr "Ustawienia podstawowe"
 
-#: ../../mod/settings.php:590 ../../mod/settings.php:616
-msgid "Icon url"
-msgstr "Adres ikony"
+#: ../../mod/settings.php:1095 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Imię i nazwisko:"
 
-#: ../../mod/settings.php:601
-msgid "You can't edit this application."
-msgstr "Nie możesz edytować tej aplikacji."
+#: ../../mod/settings.php:1096
+msgid "Email Address:"
+msgstr "Adres email:"
 
-#: ../../mod/settings.php:644
-msgid "Connected Apps"
-msgstr "Powiązane aplikacje"
+#: ../../mod/settings.php:1097
+msgid "Your Timezone:"
+msgstr "Twoja strefa czasowa:"
 
-#: ../../mod/settings.php:646 ../../mod/editpost.php:109
-#: ../../mod/content.php:751 ../../object/Item.php:117
-msgid "Edit"
-msgstr "Edytuj"
+#: ../../mod/settings.php:1098
+msgid "Default Post Location:"
+msgstr "Standardowa lokalizacja wiadomości:"
 
-#: ../../mod/settings.php:648
-msgid "Client key starts with"
-msgstr "Klucz klienta zaczyna się od"
+#: ../../mod/settings.php:1099
+msgid "Use Browser Location:"
+msgstr "Użyj położenia przeglądarki:"
 
-#: ../../mod/settings.php:649
-msgid "No name"
-msgstr "Bez nazwy"
+#: ../../mod/settings.php:1102
+msgid "Security and Privacy Settings"
+msgstr "Ustawienia bezpieczeństwa i prywatności"
 
-#: ../../mod/settings.php:650
-msgid "Remove authorization"
-msgstr "Odwołaj upoważnienie"
+#: ../../mod/settings.php:1104
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
 
-#: ../../mod/settings.php:662
-msgid "No Plugin settings configured"
-msgstr "Ustawienia wtyczki nieskonfigurowane"
+#: ../../mod/settings.php:1104 ../../mod/settings.php:1134
+msgid "(to prevent spam abuse)"
+msgstr "(aby zapobiec spamowaniu)"
 
-#: ../../mod/settings.php:670
-msgid "Plugin Settings"
-msgstr "Ustawienia wtyczki"
+#: ../../mod/settings.php:1105
+msgid "Default Post Permissions"
+msgstr "Domyślne prawa dostępu wiadomości"
 
-#: ../../mod/settings.php:684
-msgid "Off"
-msgstr "Wyłącz"
+#: ../../mod/settings.php:1106
+msgid "(click to open/close)"
+msgstr "(kliknij by otworzyć/zamknąć)"
 
-#: ../../mod/settings.php:684
-msgid "On"
-msgstr "Włącz"
+#: ../../mod/settings.php:1115 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
+msgstr "Pokaż Grupy"
 
-#: ../../mod/settings.php:692
-msgid "Additional Features"
+#: ../../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:705 ../../mod/settings.php:706
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: ../../mod/settings.php:1118
+msgid "Default Public Post"
 msgstr ""
 
-#: ../../mod/settings.php:705 ../../mod/settings.php:706
-msgid "enabled"
-msgstr "włączony"
+#: ../../mod/settings.php:1122
+msgid "Default Permissions for New Posts"
+msgstr ""
 
-#: ../../mod/settings.php:705 ../../mod/settings.php:706
-msgid "disabled"
-msgstr "wyłączony"
+#: ../../mod/settings.php:1134
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
 
-#: ../../mod/settings.php:706
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/settings.php:1137
+msgid "Notification Settings"
+msgstr "Ustawienia powiadomień"
 
-#: ../../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:1138
+msgid "By default post a status message when:"
+msgstr ""
 
-#: ../../mod/settings.php:745
-msgid "Connector Settings"
-msgstr "Ustawienia konektora"
+#: ../../mod/settings.php:1139
+msgid "accepting a friend request"
+msgstr ""
 
-#: ../../mod/settings.php:750
-msgid "Email/Mailbox Setup"
-msgstr "Ustawienia  emaila/skrzynki mailowej"
+#: ../../mod/settings.php:1140
+msgid "joining a forum/community"
+msgstr ""
 
-#: ../../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:1141
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
 
-#: ../../mod/settings.php:761
-msgid "Mark as seen"
-msgstr "Oznacz jako przeczytane"
+#: ../../mod/settings.php:1142
+msgid "Send a notification email when:"
+msgstr "Wyślij powiadmonienia na email, kiedy:"
 
-#: ../../mod/settings.php:761
-msgid "Move to folder"
-msgstr "Przenieś do folderu"
+#: ../../mod/settings.php:1143
+msgid "You receive an introduction"
+msgstr "Otrzymałeś zaproszenie"
 
-#: ../../mod/settings.php:762
-msgid "Move to folder:"
-msgstr "Przenieś do folderu:"
+#: ../../mod/settings.php:1144
+msgid "Your introductions are confirmed"
+msgstr "Dane zatwierdzone"
 
-#: ../../mod/settings.php:835
-msgid "Display Settings"
-msgstr "Wyświetl ustawienia"
+#: ../../mod/settings.php:1145
+msgid "Someone writes on your profile wall"
+msgstr "Ktoś pisze na twojej ścianie profilowej"
 
-#: ../../mod/settings.php:841 ../../mod/settings.php:853
-msgid "Display Theme:"
-msgstr "Wyświetl motyw:"
+#: ../../mod/settings.php:1146
+msgid "Someone writes a followup comment"
+msgstr "Ktoś pisze komentarz nawiązujący."
 
-#: ../../mod/settings.php:842
-msgid "Mobile Theme:"
-msgstr "Mobilny motyw:"
+#: ../../mod/settings.php:1147
+msgid "You receive a private message"
+msgstr "Otrzymałeś prywatną wiadomość"
 
-#: ../../mod/settings.php:843
-msgid "Update browser every xx seconds"
-msgstr "Odświeżaj stronę co xx sekund"
+#: ../../mod/settings.php:1148
+msgid "You receive a friend suggestion"
+msgstr "Otrzymane propozycje znajomych"
 
-#: ../../mod/settings.php:843
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Dolny limit 10 sekund, brak górnego limitu"
+#: ../../mod/settings.php:1149
+msgid "You are tagged in a post"
+msgstr "Jesteś oznaczony w poście"
 
-#: ../../mod/settings.php:844
-msgid "Number of items to display per page:"
+#: ../../mod/settings.php:1150
+msgid "You are poked/prodded/etc. in a post"
 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:"
+#: ../../mod/settings.php:1153
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../mod/settings.php:846
-msgid "Don't show emoticons"
-msgstr "Nie pokazuj emotikonek"
+#: ../../mod/settings.php:1154
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
 
-#: ../../mod/settings.php:922
-msgid "Normal Account Page"
+#: ../../mod/settings.php:1157
+msgid "Relocate"
 msgstr ""
 
-#: ../../mod/settings.php:923
-msgid "This account is a normal personal profile"
-msgstr "To konto jest normalnym osobistym profilem"
+#: ../../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:926
-msgid "Soapbox Page"
+#: ../../mod/settings.php:1159
+msgid "Resend relocate message to contacts"
 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/profiles.php:37
+msgid "Profile deleted."
+msgstr "Konto usunięte."
 
-#: ../../mod/settings.php:930
-msgid "Community Forum/Celebrity Account"
-msgstr ""
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../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/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Utworzono nowy profil."
 
-#: ../../mod/settings.php:934
-msgid "Automatic Friend Page"
-msgstr ""
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Nie można powileić profilu "
 
-#: ../../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/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Nazwa Profilu jest wymagana"
 
-#: ../../mod/settings.php:938
-msgid "Private Forum [Experimental]"
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/settings.php:939
-msgid "Private forum - approved members only"
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
 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/profiles.php:325
+msgid "Likes"
+msgstr "Polubień"
 
-#: ../../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/profiles.php:329
+msgid "Dislikes"
+msgstr "Nie lubień"
 
-#: ../../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/profiles.php:333
+msgid "Work/Employment"
+msgstr "Praca/Zatrudnienie"
 
-#: ../../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/profiles.php:336
+msgid "Religion"
+msgstr "Religia"
 
-#: ../../mod/settings.php:979
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Poglądy polityczne"
 
-#: ../../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/profiles.php:344
+msgid "Gender"
+msgstr "Płeć"
 
-#: ../../mod/settings.php:990
-msgid "Allow friends to tag your posts?"
-msgstr "Zezwól na oznaczanie twoich postów przez znajomych"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Orientacja seksualna"
 
-#: ../../mod/settings.php:996
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Strona Główna"
 
-#: ../../mod/settings.php:1002
-msgid "Permit unknown people to send you private mail?"
-msgstr ""
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Zainteresowania"
 
-#: ../../mod/settings.php:1010
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil <strong>nie jest opublikowany</strong>"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Adres"
 
-#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "lub"
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Położenie"
 
-#: ../../mod/settings.php:1018
-msgid "Your Identity Address is"
-msgstr "Twój adres identyfikacyjny to"
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "Konto zaktualizowane."
 
-#: ../../mod/settings.php:1029
-msgid "Automatically expire posts after this many days:"
-msgstr ""
+#: ../../mod/profiles.php:521
+msgid " and "
+msgstr " i "
 
-#: ../../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/profiles.php:529
+msgid "public profile"
+msgstr "profil publiczny"
 
-#: ../../mod/settings.php:1030
-msgid "Advanced expiration settings"
+#: ../../mod/profiles.php:532
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/settings.php:1031
-msgid "Advanced Expiration"
+#: ../../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/settings.php:1032
-msgid "Expire posts:"
-msgstr "Wygasające posty:"
+#: ../../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/settings.php:1033
-msgid "Expire personal notes:"
-msgstr "Wygasające notatki osobiste:"
+#: ../../mod/profiles.php:629
+msgid "Edit Profile Details"
+msgstr "Edytuj profil."
 
-#: ../../mod/settings.php:1034
-msgid "Expire starred posts:"
-msgstr ""
+#: ../../mod/profiles.php:631
+msgid "Change Profile Photo"
+msgstr "Zmień profilowe zdjęcie"
 
-#: ../../mod/settings.php:1035
-msgid "Expire photos:"
-msgstr "Wygasające zdjęcia:"
+#: ../../mod/profiles.php:632
+msgid "View this profile"
+msgstr "Zobacz ten profil"
 
-#: ../../mod/settings.php:1036
-msgid "Only expire posts by others:"
-msgstr ""
+#: ../../mod/profiles.php:633
+msgid "Create a new profile using these settings"
+msgstr "Stwórz nowy profil wykorzystując te ustawienia"
 
-#: ../../mod/settings.php:1062
-msgid "Account Settings"
-msgstr "Ustawienia konta"
+#: ../../mod/profiles.php:634
+msgid "Clone this profile"
+msgstr "Sklonuj ten profil"
 
-#: ../../mod/settings.php:1070
-msgid "Password Settings"
-msgstr "Ustawienia hasła"
+#: ../../mod/profiles.php:635
+msgid "Delete this profile"
+msgstr "Usuń ten profil"
 
-#: ../../mod/settings.php:1071
-msgid "New Password:"
-msgstr "Nowe hasło:"
+#: ../../mod/profiles.php:636
+msgid "Profile Name:"
+msgstr "Nazwa profilu :"
 
-#: ../../mod/settings.php:1072
-msgid "Confirm:"
-msgstr "Potwierdź:"
+#: ../../mod/profiles.php:637
+msgid "Your Full Name:"
+msgstr "Twoje imię i nazwisko:"
 
-#: ../../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/profiles.php:638
+msgid "Title/Description:"
+msgstr "Tytuł/Opis :"
 
-#: ../../mod/settings.php:1073 ../../mod/settings.php:1074
-msgid "Your current password to confirm the changes"
-msgstr ""
+#: ../../mod/profiles.php:639
+msgid "Your Gender:"
+msgstr "Twoja płeć:"
 
-#: ../../mod/settings.php:1074
-msgid "Password:"
-msgstr ""
+#: ../../mod/profiles.php:640
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Urodziny (%s):"
 
-#: ../../mod/settings.php:1078
-msgid "Basic Settings"
-msgstr "Ustawienia podstawowe"
+#: ../../mod/profiles.php:641
+msgid "Street Address:"
+msgstr "Ulica:"
 
-#: ../../mod/settings.php:1080
-msgid "Email Address:"
-msgstr "Adres email:"
+#: ../../mod/profiles.php:642
+msgid "Locality/City:"
+msgstr "Miejscowość/Miasto :"
 
-#: ../../mod/settings.php:1081
-msgid "Your Timezone:"
-msgstr "Twoja strefa czasowa:"
+#: ../../mod/profiles.php:643
+msgid "Postal/Zip Code:"
+msgstr "Kod Pocztowy :"
 
-#: ../../mod/settings.php:1082
-msgid "Default Post Location:"
-msgstr "Standardowa lokalizacja wiadomości:"
+#: ../../mod/profiles.php:644
+msgid "Country:"
+msgstr "Kraj:"
 
-#: ../../mod/settings.php:1083
-msgid "Use Browser Location:"
-msgstr "Użyj położenia przeglądarki:"
+#: ../../mod/profiles.php:645
+msgid "Region/State:"
+msgstr "Region / Stan :"
 
-#: ../../mod/settings.php:1086
-msgid "Security and Privacy Settings"
-msgstr "Ustawienia bezpieczeństwa i prywatności"
+#: ../../mod/profiles.php:646
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stan :"
 
-#: ../../mod/settings.php:1088
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
+#: ../../mod/profiles.php:647
+msgid "Who: (if applicable)"
+msgstr "Kto: (jeśli dotyczy)"
 
-#: ../../mod/settings.php:1088 ../../mod/settings.php:1118
-msgid "(to prevent spam abuse)"
-msgstr "(aby zapobiec spamowaniu)"
+#: ../../mod/profiles.php:648
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/settings.php:1089
-msgid "Default Post Permissions"
-msgstr "Domyślne prawa dostępu wiadomości"
+#: ../../mod/profiles.php:649
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: ../../mod/settings.php:1090
-msgid "(click to open/close)"
-msgstr "(kliknij by otworzyć/zamknąć)"
+#: ../../mod/profiles.php:650 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Interesują mnie:"
 
-#: ../../mod/settings.php:1099 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Pokaż Grupy"
+#: ../../mod/profiles.php:651
+msgid "Homepage URL:"
+msgstr "Strona główna URL:"
 
-#: ../../mod/settings.php:1100 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Pokaż kontakty"
+#: ../../mod/profiles.php:652 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Miasto rodzinne:"
 
-#: ../../mod/settings.php:1101
-msgid "Default Private Post"
-msgstr ""
+#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Poglądy polityczne:"
 
-#: ../../mod/settings.php:1102
-msgid "Default Public Post"
-msgstr ""
+#: ../../mod/profiles.php:654
+msgid "Religious Views:"
+msgstr "Poglądy religijne:"
 
-#: ../../mod/settings.php:1106
-msgid "Default Permissions for New Posts"
-msgstr ""
+#: ../../mod/profiles.php:655
+msgid "Public Keywords:"
+msgstr "Publiczne słowa kluczowe :"
 
-#: ../../mod/settings.php:1118
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
+#: ../../mod/profiles.php:656
+msgid "Private Keywords:"
+msgstr "Prywatne słowa kluczowe :"
 
-#: ../../mod/settings.php:1121
-msgid "Notification Settings"
-msgstr "Ustawienia powiadomień"
+#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Lubi:"
 
-#: ../../mod/settings.php:1122
-msgid "By default post a status message when:"
+#: ../../mod/profiles.php:658 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/settings.php:1123
-msgid "accepting a friend request"
-msgstr ""
+#: ../../mod/profiles.php:659
+msgid "Example: fishing photography software"
+msgstr "Przykład: kończenie oprogramowania fotografii"
 
-#: ../../mod/settings.php:1124
-msgid "joining a forum/community"
-msgstr ""
+#: ../../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/settings.php:1125
-msgid "making an <em>interesting</em> profile change"
-msgstr ""
+#: ../../mod/profiles.php:661
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
 
-#: ../../mod/settings.php:1126
-msgid "Send a notification email when:"
-msgstr "Wyślij powiadmonienia na email, kiedy:"
+#: ../../mod/profiles.php:662
+msgid "Tell us about yourself..."
+msgstr "Napisz o sobie..."
 
-#: ../../mod/settings.php:1127
-msgid "You receive an introduction"
-msgstr "Otrzymałeś zaproszenie"
+#: ../../mod/profiles.php:663
+msgid "Hobbies/Interests"
+msgstr "Zainteresowania"
 
-#: ../../mod/settings.php:1128
-msgid "Your introductions are confirmed"
-msgstr "Dane zatwierdzone"
+#: ../../mod/profiles.php:664
+msgid "Contact information and Social Networks"
+msgstr "Informacje kontaktowe i Sieci Społeczne"
 
-#: ../../mod/settings.php:1129
-msgid "Someone writes on your profile wall"
-msgstr "Ktoś pisze na twojej ścianie profilowej"
+#: ../../mod/profiles.php:665
+msgid "Musical interests"
+msgstr "Muzyka"
 
-#: ../../mod/settings.php:1130
-msgid "Someone writes a followup comment"
-msgstr "Ktoś pisze komentarz nawiązujący."
+#: ../../mod/profiles.php:666
+msgid "Books, literature"
+msgstr "Literatura"
 
-#: ../../mod/settings.php:1131
-msgid "You receive a private message"
-msgstr "Otrzymałeś prywatną wiadomość"
+#: ../../mod/profiles.php:667
+msgid "Television"
+msgstr "Telewizja"
 
-#: ../../mod/settings.php:1132
-msgid "You receive a friend suggestion"
-msgstr "Otrzymane propozycje znajomych"
+#: ../../mod/profiles.php:668
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: ../../mod/settings.php:1133
-msgid "You are tagged in a post"
-msgstr "Jesteś oznaczony w poście"
+#: ../../mod/profiles.php:669
+msgid "Love/romance"
+msgstr "Miłość/romans"
 
-#: ../../mod/settings.php:1134
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
+#: ../../mod/profiles.php:670
+msgid "Work/employment"
+msgstr "Praca/zatrudnienie"
 
-#: ../../mod/settings.php:1137
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
+#: ../../mod/profiles.php:671
+msgid "School/education"
+msgstr "Szkoła/edukacja"
 
-#: ../../mod/settings.php:1138
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
+#: ../../mod/profiles.php:676
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
+#: ../../mod/profiles.php:725
+msgid "Edit/Manage Profiles"
+msgstr "Edytuj/Zarządzaj Profilami"
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Ustawienia kontaktu zaktualizowane."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Grupa utworzona."
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Nie udało się zaktualizować kontaktu."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nie mogę stworzyć grupy"
 
-#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt nie znaleziony"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Nie znaleziono grupy"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Napraw ustawienia kontaktów"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Nazwa grupy zmieniona"
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr ""
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Stwórz grupę znajomych."
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Wróć do edytora kontaktów"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nazwa grupy: "
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Nazwa konta"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Grupa usunięta."
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr ""
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nie można usunąć grupy."
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL konta"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Edytor grupy"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL żądajacy znajomości"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Członkowie"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL potwierdzający znajomość"
+#: ../../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/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "Zgłoszenie Punktu Końcowego URL"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Źródło - tekst (BBcode) :"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Adres Ankiety / RSS"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Źródło tekst (Diaspora) by przekonwerterować na BBcode :"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nowe zdjęcie z tej ścieżki"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Źródło wejścia:"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr ""
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: ../../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/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr ""
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr ""
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr ""
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Usuń"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Dodaj"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Brak wpisów."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Źródło wejścia(format Diaspory):"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Niedostępne."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr ""
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt dodany"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr ""
+#: ../../mod/notify.php:61 ../../mod/notifications.php:332
+msgid "No more system notifications."
+msgstr "Nie ma więcej powiadomień systemowych."
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Zrób ten post prywatnym"
+#: ../../mod/notify.php:65 ../../mod/notifications.php:336
+msgid "System Notifications"
+msgstr "Powiadomienia systemowe"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr ""
+#: ../../mod/message.php:9 ../../include/nav.php:159
+msgid "New Message"
+msgstr "Nowa wiadomość"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Niezdolny do uzyskania informacji kontaktowych."
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Nieoczekiwana odpowiedź od strony zdalnej"
+#: ../../mod/message.php:182 ../../mod/notifications.php:103
+#: ../../include/nav.php:156
+msgid "Messages"
+msgstr "Wiadomości"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Potwierdzenie ukończone poprawnie"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Czy na pewno chcesz usunąć tę wiadomość?"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Zdalna strona zgłoszona:"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Wiadomość usunięta."
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Rozmowa usunięta."
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Nieudane lub unieważnione wprowadzenie."
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Brak wiadomości."
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Nie można ustawić zdjęcia kontaktu."
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Nieznany wysyłający - %s"
 
-#: ../../mod/dfrn_confirm.php:562
+#: ../../mod/message.php:381
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Nie znaleziono użytkownika dla '%s'"
+msgid "You and %s"
+msgstr "Ty i %s"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Klucz kodujący jest najwyraźniej zepsuty"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s i ty"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Usuń rozmowę"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Nie znaleziono kontaktu na naszej stronie"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M R - g:m AM/PM"
 
-#: ../../mod/dfrn_confirm.php:618
+#: ../../mod/message.php:411
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:638
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] " %d wiadomość"
+msgstr[1] " %d wiadomości"
+msgstr[2] " %d wiadomości"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Wiadomość nie jest dostępna."
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Usuń wiadomość"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Połączenie zaakceptowane %s"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s dołączył/a do %2$s"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Odpowiedz"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../mod/like.php:170 ../../include/conversation.php:140
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s witamy %2$s"
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nie lubi %2$s's %3$s"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "To wprowadzenie zostało już zaakceptowane."
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Post dodany pomyślnie"
 
-#: ../../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/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:393
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
 
-#: ../../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/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zmiana czasu"
 
-#: ../../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/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#: ../../mod/localtime.php:30
 #, 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"
+msgid "UTC time: %s"
+msgstr "Czas UTC %s"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "wprowadzanie zakończone."
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Obecna strefa czasowa: %s"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Nieodwracalny błąd protokołu."
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Zmień strefę czasową: %s"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil niedostępny."
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Wybierz swoją strefę czasową:"
 
-#: ../../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/filer.php:30 ../../include/conversation.php:1001
+#: ../../include/conversation.php:1019
+msgid "Save to Folder:"
+msgstr "Zapisz w folderze:"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrona przed spamem została wywołana."
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- wybierz -"
 
-#: ../../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/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Nieprawidłowa nazwa użytkownika."
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Niewłaściwy lokalizator "
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Ustawienia widoczności profilu"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Nieprawidłowy adres email."
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Widoczne dla"
 
-#: ../../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/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
 
-#: ../../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/viewcontacts.php:39
+msgid "No contacts."
+msgstr "brak kontaktów"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Już się tu przedstawiłeś."
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:850
+msgid "View Contacts"
+msgstr "widok kontaktów"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Widocznie jesteście już znajomymi z %s"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Szukaj osób"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Zły adres URL profilu."
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "brak dopasowań"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Aktualizacja nagrania kontaktu nie powiodła się."
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Wyślij nowe zdjęcie"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Twoje dane zostały wysłane."
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "Informacje o kontakcie nie dostępne."
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Proszę zalogować się do potwierdzenia wstępu."
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album nie znaleziony"
 
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Usuń album"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Ukryj kontakt"
+#: ../../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/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Usuń zdjęcie"
 
-#: ../../mod/dfrn_request.php:674
+#: ../../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 "Please confirm your introduction/connection request to %s."
-msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Potwierdź"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "zdjęcie"
 
-#: ../../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/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "obrazek przekracza limit rozmiaru"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Połącz jako użytkownika e mail (tylko)</strike> (Niebawem)"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Plik obrazka jest pusty."
 
-#: ../../mod/dfrn_request.php:829
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Jeśli nie jesteś członkiem darmowej sieci społecznościowej <a href=\"http://dir.friendica.com/siteinfo\"> kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś </a>."
+#: ../../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/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Przyjaciel/Prośba o połączenie"
+#: ../../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/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/photos.php:924
+msgid "No photos selected"
+msgstr "Nie zaznaczono zdjęć"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Proszę odpowiedzieć na poniższe:"
+#: ../../mod/photos.php:1025 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Dostęp do tego obiektu jest ograniczony."
 
-#: ../../mod/dfrn_request.php:835
+#: ../../mod/photos.php:1088
 #, php-format
-msgid "Does %s know you?"
-msgstr "Czy %s Cię zna?"
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Dodaj osobistą notkę:"
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Prześlij zdjęcia"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Sieć społeczna"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nazwa nowego albumu:"
 
-#: ../../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/photos.php:1128
+msgid "or existing album name: "
+msgstr "lub istniejąca nazwa albumu:"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Twój zidentyfikowany adres:"
+#: ../../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/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Wyślij zgłoszenie"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Uprawnienia"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Zdjęcie prywatne"
 
-#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Globalne Położenie"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "Zdjęcie publiczne"
 
-#: ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Znajdź na tej stronie"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Edytuj album"
 
-#: ../../mod/directory.php:59 ../../mod/contacts.php:612
-msgid "Finding: "
-msgstr "Znalezione:"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Najpierw pokaż najnowsze"
 
-#: ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Katalog Strony"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Najpierw pokaż najstarsze"
 
-#: ../../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/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Zobacz zdjęcie"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignoruj/Ukryj"
+#: ../../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/dirfind.php:26
-msgid "People Search"
-msgstr "Szukaj osób"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Zdjęcie niedostępne"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "brak dopasowań"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Zobacz zdjęcie"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr ""
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Edytuj zdjęcie"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1025
-msgid "Access to this item is restricted."
-msgstr "Dostęp do tego obiektu jest ograniczony."
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Ustaw jako zdjęcie profilowe"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1784
-msgid "View Album"
-msgstr "Zobacz album"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Zobacz w pełnym rozmiarze"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr ""
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tagi:"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr ""
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Usunąć znacznik]"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag usunięty"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Obróć CW (w prawo)"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Usuń pozycję Tag"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Obróć CCW (w lewo)"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wybierz tag do usunięcia"
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nazwa nowego albumu"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Artykuł nie znaleziony"
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Zawartość"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Edytuj post"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Dodaj tag"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr ""
+#: ../../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/events.php:291
-msgid "l, F j"
-msgstr "d, M d "
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "Prywatne zdjęcie."
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Edytuj wydarzenie"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "Zdjęcie publiczne"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Stwórz nowe wydarzenie"
+#: ../../mod/photos.php:1531 ../../include/conversation.php:1080
+msgid "Share"
+msgstr "Podziel się"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Poprzedni"
+#: ../../mod/photos.php:1784 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Zobacz album"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Następny"
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Ostatnio dodane zdjęcia"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "godzina:minuta"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Plik przekracza dozwolony rozmiar %d"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Szczegóły wydarzenia"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Przesyłanie pliku nie powiodło się."
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr ""
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nie zaznaczono filmów"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Rozpoczęcie wydarzenia:"
+#: ../../mod/videos.php:301 ../../include/text.php:1376
+msgid "View Video"
+msgstr "Zobacz film"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Wymagany"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Ostatnio dodane filmy"
 
-#: ../../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/videos.php:319
+msgid "Upload New Videos"
+msgstr "Wstaw nowe filmy"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Zakończenie wydarzenia:"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr ""
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Dopasuj dla strefy czasowej widza"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Opis:"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Tytuł:"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr ""
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Udostępnij te wydarzenie"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Zrób ten post prywatnym"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Pliki"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
 
 #: ../../mod/uexport.php:72
 msgid "Export account"
@@ -4983,656 +4987,404 @@ msgid ""
 "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/common.php:42
+msgid "Common Friends"
+msgstr "Wspólni znajomi"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt dodany"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Brak wspólnych kontaktów."
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "To jest Friendica, wersja"
+#: ../../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/friendica.php:56
-msgid "running at web location"
-msgstr "otwierane na serwerze"
+#: ../../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/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrazek załadowany, ale oprawanie powiodła się."
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Reportowanie błędów i problemów: proszę odwiedź"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się."
 
-#: ../../mod/friendica.php:61
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Zainstalowane pluginy/dodatki/aplikacje:"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Nie udało się przetworzyć obrazu."
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Wyślij plik:"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Propozycja znajomych wysłana."
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Wybierz profil:"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Zaproponuj znajomych"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Załaduj"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Zaproponuj znajomych dla %s"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "Pomiń ten krok"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Grupa utworzona."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wybierz zdjęcie z twojego albumu"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nie mogę stworzyć grupy"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Przytnij zdjęcie"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Nie znaleziono grupy"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Nazwa grupy zmieniona"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Zakończ Edycję "
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Stwórz grupę znajomych."
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Zdjęcie wczytano pomyślnie "
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplikacje"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Grupa usunięta."
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Brak zainstalowanych aplikacji."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nie można usunąć grupy."
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Brak nowych zdarzeń"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Edytor grupy"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Wyczyść powiadomienia"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Członkowie"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profil zgodny "
 
-#: ../../mod/group.php:194 ../../mod/contacts.php:476
-msgid "All Contacts"
-msgstr "Wszystkie kontakty"
+#: ../../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/hcard.php:10
-msgid "No profile"
-msgstr "Brak profilu"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "interesuje się:"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Pomoc:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag usunięty"
 
-#: ../../mod/help.php:90 ../../index.php:231
-msgid "Not Found"
-msgstr "Nie znaleziono"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Usuń pozycję Tag"
 
-#: ../../mod/help.php:93 ../../index.php:234
-msgid "Page not found."
-msgstr "Strona nie znaleziona."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wybierz tag do usunięcia"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "brak kontaktów"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+msgid "Remove"
+msgstr "Usuń"
 
-#: ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Brak dostępu"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "d, M d "
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Plik przekracza dozwolony rozmiar %d"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Edytuj wydarzenie"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Przesyłanie pliku nie powiodło się."
+#: ../../mod/events.php:335 ../../include/text.php:1606
+msgid "link to source"
+msgstr "link do źródła"
 
-#: ../../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/events.php:371
+msgid "Create New Event"
+msgstr "Stwórz nowe wydarzenie"
 
-#: ../../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/events.php:372
+msgid "Previous"
+msgstr "Poprzedni"
 
-#: ../../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/events.php:446
+msgid "hour:minute"
+msgstr "godzina:minuta"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr ""
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Szczegóły wydarzenia"
 
-#: ../../mod/invite.php:49
+#: ../../mod/events.php:457
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Niepoprawny adres email."
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Wymagany format %s %s. Data rozpoczęcia i Tytuł są konieczne."
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Dołącz do nas na Friendica"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Rozpoczęcie wydarzenia:"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr ""
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Wymagany"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Dostarczenie wiadomości nieudane."
+#: ../../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/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/events.php:464
+msgid "Event Finishes:"
+msgstr "Zakończenie wydarzenia:"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nie masz więcej zaproszeń"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Dopasuj dla strefy czasowej widza"
 
-#: ../../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."
+#: ../../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/delegate.php:95
+msgid "No potential page delegates located."
 msgstr ""
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: ../../mod/delegate.php:121 ../../include/nav.php:165
+msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../mod/invite.php:123
-#, php-format
+#: ../../mod/delegate.php:123
 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."
+"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/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
 msgstr ""
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Wyślij zaproszenia"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr ""
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Wprowadź adresy email, jeden na linijkę:"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr ""
 
-#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:329 ../../mod/message.php:558
-msgid "Your message:"
-msgstr "Twoja wiadomość:"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Dodaj"
 
-#: ../../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/delegate.php:132
+msgid "No entries."
+msgstr "Brak wpisów."
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../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 ""
 
-#: ../../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/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Usuń konto"
 
-#: ../../mod/invite.php:139
+#: ../../mod/removeme.php:46
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr ""
+"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/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Wprowadź hasło w celu weryfikacji."
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Nie wybrano odbiorcy."
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Propozycja znajomych wysłana."
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr ""
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Zaproponuj znajomych"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Wiadomość nie może zostać wysłana"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Zaproponuj znajomych dla %s"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr ""
+#: ../../mod/item.php:108
+msgid "Unable to locate original post."
+msgstr "Nie można zlokalizować oryginalnej wiadomości."
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Wysłano."
+#: ../../mod/item.php:310
+msgid "Empty post discarded."
+msgstr "Pusty wpis wyrzucony."
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Brak odbiorcy."
+#: ../../mod/item.php:872
+msgid "System error. Post not saved."
+msgstr "Błąd. Post niezapisany."
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Wyślij prywatną wiadomość"
+#: ../../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/wallmessage.php:143
+#: ../../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 ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr ""
+"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/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Do:"
+#: ../../mod/item.php:904
+#, php-format
+msgid "%s posted an update."
+msgstr "%s zaktualizował wpis."
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Temat:"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} chce być Twoim znajomym"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zmiana czasu"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} wysyła Ci wiadomość"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} żądana rejestracja"
 
-#: ../../mod/localtime.php:30
+#: ../../mod/ping.php:254
 #, php-format
-msgid "UTC time: %s"
-msgstr "Czas UTC %s"
+msgid "{0} commented %s's post"
+msgstr "{0} skomentował %s wpis"
 
-#: ../../mod/localtime.php:33
+#: ../../mod/ping.php:259
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Obecna strefa czasowa: %s"
+msgid "{0} liked %s's post"
+msgstr "{0} polubił wpis %s"
 
-#: ../../mod/localtime.php:36
+#: ../../mod/ping.php:264
 #, 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ą:"
+msgid "{0} disliked %s's post"
+msgstr "{0} przestał lubić post %s"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Dane prywatne nie są dostępne zdalnie "
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} jest teraz znajomym %s"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Widoczne dla:"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} utworzony"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Nie znaleziono ważnego konta."
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} zaznaczony %s'go post z #%s"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email."
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} wspomniał Cię w swoim wpisie"
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Prośba o reset hasła na %s"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "błąd OpenID . Brak zwróconego ID. "
 
-#: ../../mod/lostpass.php:66
+#: ../../mod/openid.php:53
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"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ę."
+"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/lostpass.php:84 ../../boot.php:1155
-msgid "Password Reset"
-msgstr "Zresetuj hasło"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Niepowodzenie logowania"
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Twoje hasło zostało zresetowane na twoje życzenie."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Niewłaściwy identyfikator wymagania."
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Twoje nowe hasło to"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Odrzuć"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "Kliknij tutaj aby zalogować"
+#: ../../mod/notifications.php:83 ../../include/nav.php:140
+msgid "Network"
+msgstr "Sieć"
 
-#: ../../mod/lostpass.php:89
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
+#: ../../mod/notifications.php:98 ../../include/nav.php:149
+msgid "Introductions"
+msgstr "Wstępy"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Twoje hasło zostało zmienione na %s"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Pokaż ignorowane żądania"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Zapomniałeś hasła?"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ukryj ignorowane żądania"
 
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Typ zawiadomień:"
 
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Pseudonim lub Email:"
-
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zresetuj"
-
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-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/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 <strong>may</strong> 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: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"
@@ -5663,7 +5415,7 @@ msgstr "Znajomy"
 
 #: ../../mod/notifications.php:190
 msgid "Sharer"
-msgstr ""
+msgstr "Udostępniający/a"
 
 #: ../../mod/notifications.php:190
 msgid "Fan/Admirer"
@@ -5681,6 +5433,10 @@ msgstr "Nowy obserwator"
 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
@@ -5718,14 +5474,6 @@ msgstr "Nie ma więcej powiadomień sieciowych"
 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"
@@ -5742,1411 +5490,1815 @@ msgstr "Nie ma więcej powiadomień domu"
 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/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr ""
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Wyślij nowe zdjęcie"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Niepoprawny adres email."
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Informacje o kontakcie nie dostępne."
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Dołącz do nas na Friendica"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album nie znaleziony"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr ""
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Usuń album"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Dostarczenie wiadomości nieudane."
 
-#: ../../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/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/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Usuń zdjęcie"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nie masz więcej zaproszeń"
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
+#: ../../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/photos.php:656
+#: ../../mod/invite.php:122
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "zdjęcie"
+#: ../../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/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "obrazek przekracza limit rozmiaru"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Plik obrazka jest pusty."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Wyślij zaproszenia"
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Nie zaznaczono zdjęć"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Wprowadź adresy email, jeden na linijkę:"
 
-#: ../../mod/photos.php:1088
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: ../../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/photos.php:1123
-msgid "Upload Photos"
-msgstr "Prześlij zdjęcia"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Nazwa nowego albumu:"
+#: ../../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/photos.php:1128
-msgid "or existing album name: "
-msgstr "lub istniejąca nazwa albumu:"
+#: ../../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/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Nie pokazuj postów statusu dla tego wysłania"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Zarządzaj Tożsamościami i/lub Stronami."
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Uprawnienia"
+#: ../../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/photos.php:1142
-msgid "Private Photo"
-msgstr "Zdjęcie prywatne"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wybierz tożsamość do zarządzania:"
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Zdjęcie publiczne"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Witamy w %s"
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Edytuj album"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Znajomy %s"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Najpierw pokaż najnowsze"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Brak znajomych do wyświetlenia"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Najpierw pokaż najstarsze"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Dodaj nowy kontakt"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Zobacz zdjęcie"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Wpisz adres lub lokalizację sieciową"
 
-#: ../../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."
+#: ../../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"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Zdjęcie niedostępne"
+#: ../../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"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Zobacz zdjęcie"
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Znajdź ludzi"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Edytuj zdjęcie"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Wpisz nazwę lub zainteresowanie"
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Ustaw jako zdjęcie profilowe"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Połącz/Obserwuj"
 
-#: ../../mod/photos.php:1351 ../../mod/content.php:643
-#: ../../object/Item.php:113
-msgid "Private Message"
-msgstr "Wiadomość prywatna"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Przykładowo:  Jan Kowalski, Wędkarstwo"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Zobacz w pełnym rozmiarze"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Domyślny profil"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Tagi:"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Sieci"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Usunąć znacznik]"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Wszystkie Sieci"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Obróć CW (w prawo)"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "Zapisane foldery"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Obróć CCW (w lewo)"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Wszystko"
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Nazwa nowego albumu"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorie"
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Zawartość"
+#: ../../include/plugin.php:454 ../../include/plugin.php:456
+msgid "Click here to upgrade."
+msgstr "Kliknij tu, aby zaktualizować."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Dodaj tag"
+#: ../../include/plugin.php:462
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr ""
 
-#: ../../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"
+#: ../../include/plugin.php:467
+msgid "This action is not available under your subscription plan."
+msgstr ""
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Prywatne zdjęcie."
+#: ../../include/network.php:883
+msgid "view full size"
+msgstr "Zobacz w pełnym wymiarze"
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Zdjęcie publiczne"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+msgid "Starts:"
+msgstr "Start:"
 
-#: ../../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"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+msgid "Finishes:"
+msgstr "Wykończenia:"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Witamy na Friendica"
+#: ../../include/notifier.php:774 ../../include/delivery.php:457
+msgid "(no subject)"
+msgstr "(bez tematu)"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Lista nowych członków"
+#: ../../include/notifier.php:784 ../../include/enotify.php:28
+#: ../../include/delivery.php:468
+msgid "noreply"
+msgstr "brak odpowiedzi"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Wymagane zaproszenie."
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Pierwsze kroki"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Zaproszenie niezweryfikowane."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr ""
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Nieprawidłowy adres url OpenID"
 
-#: ../../mod/newmember.php:18
+#: ../../include/user.php:66 ../../include/auth.php:128
 msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Idź do swoich ustawień"
+#: ../../include/user.php:66 ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Komunikat o błędzie:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr ""
+#: ../../include/user.php:73
+msgid "Please enter the required information."
+msgstr "Wprowadź wymagane informacje"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"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."
-msgstr ""
+#: ../../include/user.php:87
+msgid "Please use a shorter name."
+msgstr "Użyj dłuższej nazwy."
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Wyślij zdjęcie profilowe"
+#: ../../include/user.php:89
+msgid "Name too short."
+msgstr "Nazwa jest za krótka."
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
+#: ../../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)."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Edytuj własny profil"
+#: ../../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."
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr ""
+#: ../../include/user.php:112
+msgid "Not a valid email address."
+msgstr "Niepoprawny adres e mail.."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Słowa kluczowe profilu"
+#: ../../include/user.php:122
+msgid "Cannot use that email."
+msgstr "Nie możesz użyć tego e-maila. "
 
-#: ../../mod/newmember.php:40
+#: ../../include/user.php:128
 msgid ""
-"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."
-msgstr ""
+"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ę."
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Łączę się..."
+#: ../../include/user.php:134 ../../include/user.php:232
+msgid "Nickname is already registered. Please choose another."
+msgstr "Ten login jest zajęty. Wybierz inny."
 
-#: ../../mod/newmember.php:49
+#: ../../include/user.php:144
 msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr ""
+"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."
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr ""
+#: ../../include/user.php:160
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importuję emaile..."
+#: ../../include/user.php:218
+msgid "An error occurred during registration. Please try again."
+msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr ""
+#: ../../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."
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Idź do strony z Twoimi kontaktami"
+#: ../../include/user.php:285 ../../include/user.php:289
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Przyjaciele"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Idż do twojej strony"
+#: ../../include/conversation.php:211 ../../include/text.php:979
+msgid "poked"
+msgstr "zaczepiony"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
+#: ../../include/conversation.php:291
+msgid "post/item"
 msgstr ""
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Poszukiwanie Nowych Ludzi"
-
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grupuj Swoje kontakty"
+#: ../../include/conversation.php:767
+msgid "remove"
+msgstr "usuń"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"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."
-msgstr ""
+#: ../../include/conversation.php:771
+msgid "Delete Selected Items"
+msgstr "Usuń zaznaczone elementy"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Dlaczego moje posty nie są publiczne?"
+#: ../../include/conversation.php:870
+msgid "Follow Thread"
+msgstr "Śledź wątek"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr ""
+#: ../../include/conversation.php:871 ../../include/Contact.php:228
+msgid "View Status"
+msgstr "Zobacz status"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Otrzymywanie pomocy"
+#: ../../include/conversation.php:872 ../../include/Contact.php:229
+msgid "View Profile"
+msgstr "Zobacz profil"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Idź do części o pomocy"
+#: ../../include/conversation.php:873 ../../include/Contact.php:230
+msgid "View Photos"
+msgstr "Zobacz zdjęcia"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
+#: ../../include/conversation.php:874 ../../include/Contact.php:231
+#: ../../include/Contact.php:254
+msgid "Network Posts"
 msgstr ""
 
-#: ../../mod/profile.php:21 ../../boot.php:1329
-msgid "Requested profile is not available."
-msgstr "Żądany profil jest niedostępny"
+#: ../../include/conversation.php:875 ../../include/Contact.php:232
+#: ../../include/Contact.php:254
+msgid "Edit Contact"
+msgstr "Edytuj kontakt"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Wskazówki dla nowych użytkowników"
+#: ../../include/conversation.php:876 ../../include/Contact.php:234
+#: ../../include/Contact.php:254
+msgid "Send PM"
+msgstr "Wyślij prywatną wiadomość"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr ""
+#: ../../include/conversation.php:877 ../../include/Contact.php:227
+msgid "Poke"
+msgstr "Zaczepka"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Nie można nawiązać połączenia z bazą danych"
+#: ../../include/conversation.php:939
+#, php-format
+msgid "%s likes this."
+msgstr "%s lubi to."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nie mogę stworzyć tabeli."
+#: ../../include/conversation.php:939
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s nie lubi tego."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../include/conversation.php:944
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr ""
+
+#: ../../include/conversation.php:947
+#, php-format
+msgid "<span  %1$s>%2$d people</span> 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 <strong>everybody</strong>"
+msgstr "Widoczne dla <strong>wszystkich</strong>"
+
+#: ../../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 ""
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Powiadomienia Friendica"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:521
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Dziękuję,"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Sprawdzanie systemu"
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "%s administrator"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Sprawdź ponownie"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr ""
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Połączenie z bazą danych"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s wysyła ci %2$s"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "prywatna wiadomość"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Baza danych - Nazwa serwera"
+#: ../../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"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Baza danych - Nazwa loginu"
+#: ../../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]"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Baza danych - Hasło loginu"
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Baza danych - Nazwa"
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adres e-mail administratora strony"
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: ../../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 ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Ustawienia strony"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s oznaczył cię"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s oznaczył/a cię w %2$s"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../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 ""
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Linia komend PHP"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Znaleziono wersje PHP:"
+#: ../../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"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../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 ""
 
-#: ../../mod/install.php:354
+#: ../../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 ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Imię:"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
+#: ../../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 ""
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego ."
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../mod/install.php:379
+#: ../../include/group.php:25
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generuj klucz kodowania"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Moduł libCurl PHP"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Wszyscy"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Moduł PHP-GD"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "edytuj"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Moduł PHP OpenSSL"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Edytuj grupy"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Moduł mysql PHP"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Stwórz nową grupę"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Moduł mb_string PHP"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakt nie jest w żadnej grupie"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Moduł Apache mod_rewrite"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Brak adresu URL połączenia."
 
-#: ../../mod/install.php:397
+#: ../../include/follow.php:59
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
-
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
+"This site is not configured to allow communications with other networks."
+msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr ""
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor lub nazwa nie zostało znalezione."
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
 
-#: ../../mod/install.php:438
+#: ../../include/follow.php:86
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: ../../mod/install.php:440
+#: ../../include/follow.php:93
 msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr ""
+"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."
 
-#: ../../mod/install.php:441
+#: ../../include/follow.php:103
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr ""
+"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."
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php jest zapisywalny"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nie można otrzymać informacji kontaktowych"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr ""
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "następujący"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: ../../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 ""
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr ""
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Rozmowy Twoich przyjaciół"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+#: ../../include/nav.php:141
+msgid "Network Reset"
 msgstr ""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Podania o przyjęcie do grona znajomych"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr ""
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Zobacz wszystkie powiadomienia"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Oznacz wszystkie powiadomienia systemu jako przeczytane"
 
-#: ../../mod/install.php:508
-msgid "Errors encountered creating database tables."
-msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Prywatne maile"
 
-#: ../../mod/install.php:519
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dalej</h1>"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "Odebrane"
 
-#: ../../mod/install.php:520
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Wysłane"
 
-#: ../../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."
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Zarządzaj"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Nie można znaleźć wybranego profilu."
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Zarządzaj innymi stronami"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Kontakt zaktualizowany"
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr ""
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Kontakt został zablokowany"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "Zarządzaj/Edytuj profile"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Kontakt został odblokowany"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Zarządzaj listą przyjaciół i kontaktami"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Kontakt jest ignorowany"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Konfiguracja i ustawienia instancji"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Kontakt nie jest ignorowany"
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "Nawigacja"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "Kontakt został zarchiwizowany"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "Mapa strony"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr ""
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "d M, R"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr ""
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "d M"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "Kontakt został usunięty."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Urodziny:"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jesteś już znajomym z %s"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Wiek:"
 
-#: ../../mod/contacts.php:305
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "You are sharing with %s"
-msgstr "Współdzielisz z %s"
+msgid "for %1$d %2$s"
+msgstr "od %1$d %2$s"
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s współdzieli z tobą"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tagi:"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religia:"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(Aktualizacja przebiegła pomyślnie)"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Zainteresowania:"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(Aktualizacja nie powiodła się)"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informacje kontaktowe i sieci społeczne"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Osoby, które możesz znać"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Zainteresowania muzyczne:"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sieci: %s"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Książki, literatura:"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Zobacz wszystkie kontakty"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Telewizja:"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr ""
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Odblokuj"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Miłość/Romans:"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
+#: ../../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 ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
 msgstr ""
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Przywróć z archiwum"
+#: ../../include/bbcode.php:578 ../../include/bbcode.php:598
+msgid "$1 wrote:"
+msgstr "$1 napisał:"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Archiwum"
+#: ../../include/bbcode.php:625 ../../include/bbcode.php:626
+msgid "Encrypted content"
+msgstr "Szyfrowana treść"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
+#: ../../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 ""
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Napraw"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Znam, ale nie mam zdania"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Zaawansowane ustawienia kontaktów"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "Ok, bez problemów"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "Komunikacja przerwana z tym kontaktem!"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Zaufane, ma moje poparcie"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Edytor kontaktów"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Tygodniowo"
+
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Miesięcznie"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Widoczność profilu"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informacja o kontakcie / Notka"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr ""
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Edytuj notatki kontaktu"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Zablokuj/odblokuj kontakt"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignoruj kontakt"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Napraw ustawienia adresu"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Zobacz rozmowę"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr ""
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Usuń kontakt"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr ""
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Ostatnia aktualizacja:"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Różny"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Zaktualizuj publiczne posty"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "rok"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Obecnie zablokowany"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "miesiąc"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Obecnie zignorowany"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dzień"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Obecnie zarchiwizowany"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nigdy"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "mniej niż sekundę temu"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Sugestie"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "lata"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Sugerowani znajomi"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "miesiące"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Pokaż wszystkie kontakty"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "tydzień"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Odblokowany"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "tygodnie"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Pokaż tylko odblokowane kontakty"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dni"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Zablokowany"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "godzina"
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Pokaż tylko zablokowane kontakty"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "godziny"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Zignorowany"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuta"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Pokaż tylko ignorowane kontakty"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuty"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Zarchiwizowane"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekunda"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Pokaż tylko zarchiwizowane kontakty"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekundy"
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Ukryty"
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s temu"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Pokaż tylko ukryte kontakty"
+#: ../../include/datetime.php:472 ../../include/items.php:1829
+#, php-format
+msgid "%s's birthday"
+msgstr "Urodziny %s"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Wzajemna przyjaźń"
+#: ../../include/datetime.php:473 ../../include/items.php:1830
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Urodziny %s"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "jest twoim fanem"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "jesteś fanem"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Wyszukaj w kontaktach"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Post dodany pomyślnie"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "błąd OpenID . Brak zwróconego ID. "
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
 
-#: ../../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."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrazek załadowany, ale oprawanie powiodła się."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Podgląd posta"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Nie udało się przetworzyć obrazu."
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Szukanie wg daty"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Wyślij plik:"
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Wybierz profil:"
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "Filtrowanie grupowe"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Załaduj"
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "Pomiń ten krok"
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wybierz zdjęcie z twojego albumu"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Przytnij zdjęcie"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr ""
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Zakończ Edycję "
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Zdjęcie wczytano pomyślnie "
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Niedostępne."
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr ""
 
-#: ../../mod/content.php:626 ../../object/Item.php:362
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] " %d komentarz"
-msgstr[1] " %d komentarzy"
-msgstr[2] " %d komentarzy"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
 
-#: ../../mod/content.php:707 ../../object/Item.php:232
-msgid "like"
-msgstr "polub"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: ../../mod/content.php:708 ../../object/Item.php:233
-msgid "dislike"
-msgstr "Nie lubię"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/content.php:710 ../../object/Item.php:235
-msgid "Share this"
-msgstr "Udostępnij to"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
 
-#: ../../mod/content.php:710 ../../object/Item.php:235
-msgid "share"
-msgstr "udostępnij"
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
 
-#: ../../mod/content.php:734 ../../object/Item.php:654
-msgid "Bold"
-msgstr "Pogrubienie"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
 
-#: ../../mod/content.php:735 ../../object/Item.php:655
-msgid "Italic"
-msgstr "Kursywa"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
 
-#: ../../mod/content.php:736 ../../object/Item.php:656
-msgid "Underline"
-msgstr "Podkreślenie"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
 
-#: ../../mod/content.php:737 ../../object/Item.php:657
-msgid "Quote"
-msgstr "Cytat"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "Oznaczanie"
 
-#: ../../mod/content.php:738 ../../object/Item.php:658
-msgid "Code"
-msgstr "Kod"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
 
-#: ../../mod/content.php:739 ../../object/Item.php:659
-msgid "Image"
-msgstr "Obraz"
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
 
-#: ../../mod/content.php:740 ../../object/Item.php:660
-msgid "Link"
-msgstr "Link"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "Dodaj kategorie do twoich postów"
 
-#: ../../mod/content.php:741 ../../object/Item.php:661
-msgid "Video"
-msgstr "Video"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr ""
 
-#: ../../mod/content.php:776 ../../object/Item.php:211
-msgid "add star"
-msgstr "dodaj gwiazdkę"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr ""
 
-#: ../../mod/content.php:777 ../../object/Item.php:212
-msgid "remove star"
-msgstr "anuluj gwiazdkę"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr ""
 
-#: ../../mod/content.php:778 ../../object/Item.php:213
-msgid "toggle star status"
-msgstr "włącz status gwiazdy"
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "Oznacz posty gwiazdką"
 
-#: ../../mod/content.php:781 ../../object/Item.php:216
-msgid "starred"
-msgstr "gwiazdką"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/content.php:782 ../../object/Item.php:221
-msgid "add tag"
-msgstr "dodaj tag"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Wspólne powiadomienie z sieci Diaspora"
 
-#: ../../mod/content.php:786 ../../object/Item.php:130
-msgid "save to folder"
-msgstr "zapisz w folderze"
+#: ../../include/diaspora.php:2264
+msgid "Attachments:"
+msgstr "Załączniki:"
 
-#: ../../mod/content.php:877 ../../object/Item.php:308
-msgid "to"
-msgstr "do"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Widoczny dla wszystkich"
 
-#: ../../mod/content.php:878 ../../object/Item.php:310
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../include/items.php:3511
+msgid "A new person is sharing with you at "
+msgstr ""
 
-#: ../../mod/content.php:879 ../../object/Item.php:311
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../include/items.php:3511
+msgid "You have a new follower at "
+msgstr ""
 
-#: ../../object/Item.php:92
-msgid "This entry was edited"
+#: ../../include/items.php:4034
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../object/Item.php:309
-msgid "via"
-msgstr "przez"
+#: ../../include/items.php:4257
+msgid "Archives"
+msgstr "Archiwum"
 
-#: ../../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"
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Osadzona zawartość"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr ""
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Osadzanie wyłączone"
 
-#: ../../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"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Witaj "
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Ustaw szerokość motywu"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Proszę dodać zdjęcie profilowe."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Zestaw kolorów"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Witaj ponownie "
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
+#: ../../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 ""
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Mężczyzna"
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr "Zestaw kolorów"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Kobieta"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:609
-msgid "Set twitter search term"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Aktualnie Mężczyzna"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Aktualnie Kobieta"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:578
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Bardziej Mężczyzna"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:579
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Bardziej Kobieta"
 
-#: ../../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"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transpłciowy"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-msgid "Earth Layers"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Międzypłciowy"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-msgid "Community Profiles"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transseksualista"
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodyta"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-msgid "Help or @NewHere ?"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Bezpłciowy"
 
-#: ../../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"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Niespecyficzne"
 
-#: ../../view/theme/diabook/config.php:168
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-msgid "Find Friends"
-msgstr "Znajdź znajomych"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Inne"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr "Ostatnie tweetnięcie"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Niezdecydowany"
 
-#: ../../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"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Mężczyźni"
 
-#: ../../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"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Kobiety"
 
-#: ../../view/theme/diabook/config.php:172
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-msgid "Last likes"
-msgstr "Ostatnie polubienia"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gej"
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "Twoje kontakty"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbijka"
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Brak preferencji"
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksualny"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr "Ostatnie Tweetnięcie"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Niezidentyfikowany"
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstynent"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Zestaw kolorów"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Dziewica"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Wyrównanie"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Zboczeniec"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Lewo"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetysz"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Środek"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Nadmiar"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nieseksualny"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Singiel"
 
-#: ../../index.php:405
-msgid "toggle mobile"
-msgstr "przełącz na mobilny"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Samotny"
 
-#: ../../boot.php:673
-msgid "Delete this item?"
-msgstr "Usunąć ten element?"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostępny"
 
-#: ../../boot.php:676
-msgid "show fewer"
-msgstr "Pokaż mniej"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Niedostępny"
 
-#: ../../boot.php:1003
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: ../../boot.php:1005
-#, php-format
-msgid "Update Error at %s"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "zakochany"
 
-#: ../../boot.php:1115
-msgid "Create a New Account"
-msgstr "Załóż nowe konto"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Randki"
 
-#: ../../boot.php:1143
-msgid "Nickname or Email address: "
-msgstr "Nick lub adres email:"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Niewierny"
 
-#: ../../boot.php:1144
-msgid "Password: "
-msgstr "Hasło:"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Uzależniony od seksu"
 
-#: ../../boot.php:1145
-msgid "Remember me"
-msgstr "Zapamiętaj mnie"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Przyjaciele/Korzyści"
 
-#: ../../boot.php:1148
-msgid "Or login using OpenID: "
-msgstr "Lub zaloguj się korzystając z OpenID:"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Przypadkowy"
 
-#: ../../boot.php:1154
-msgid "Forgot your password?"
-msgstr "Zapomniałeś swojego hasła?"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zaręczeni"
 
-#: ../../boot.php:1157
-msgid "Website Terms of Service"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Małżeństwo"
 
-#: ../../boot.php:1158
-msgid "terms of service"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Fikcyjnie w związku małżeńskim"
 
-#: ../../boot.php:1160
-msgid "Website Privacy Policy"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partnerzy"
 
-#: ../../boot.php:1161
-msgid "privacy policy"
-msgstr "polityka prywatności"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Konkubinat"
 
-#: ../../boot.php:1290
-msgid "Requested account is not available."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: ../../boot.php:1369 ../../boot.php:1473
-msgid "Edit profile"
-msgstr "Edytuj profil"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Szczęśliwy"
 
-#: ../../boot.php:1435
-msgid "Message"
-msgstr "Wiadomość"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
 
-#: ../../boot.php:1443
-msgid "Manage/edit profiles"
-msgstr "Zarządzaj profilami"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../boot.php:1572 ../../boot.php:1658
-msgid "g A l F d"
-msgstr "g A I F d"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zdradzony"
 
-#: ../../boot.php:1573 ../../boot.php:1659
-msgid "d"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "W separacji"
 
-#: ../../boot.php:1618 ../../boot.php:1699
-msgid "[today]"
-msgstr "[dziś]"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Niestabilny"
 
-#: ../../boot.php:1630
-msgid "Birthday Reminders"
-msgstr "Przypomnienia o urodzinach"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozwiedzeni"
 
-#: ../../boot.php:1631
-msgid "Birthdays this week:"
-msgstr "Urodziny w tym tygodniu:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Fikcyjnie rozwiedziony/a"
 
-#: ../../boot.php:1692
-msgid "[No description]"
-msgstr "[Brak opisu]"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Wdowiec"
 
-#: ../../boot.php:1710
-msgid "Event Reminders"
-msgstr "Przypominacze wydarzeń"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nieokreślony"
 
-#: ../../boot.php:1711
-msgid "Events this week:"
-msgstr "Wydarzenia w tym tygodniu:"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "To skomplikowane"
 
-#: ../../boot.php:1947
-msgid "Status Messages and Posts"
-msgstr "Status wiadomości i postów"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nie obchodzi mnie to"
 
-#: ../../boot.php:1954
-msgid "Profile Details"
-msgstr "Szczegóły profilu"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zapytaj mnie "
 
-#: ../../boot.php:1965 ../../boot.php:1968
-msgid "Videos"
-msgstr ""
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "przestań obserwować"
 
-#: ../../boot.php:1978
-msgid "Events and Calendar"
-msgstr "Wydarzenia i kalendarz"
+#: ../../include/Contact.php:233
+msgid "Drop Contact"
+msgstr ""
 
-#: ../../boot.php:1985
-msgid "Only You Can See This"
-msgstr "Tylko ty możesz to zobaczyć"
+#: ../../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'"
index 3ed01442a6b40dfa766ce84a5d49542a8b4f0e1c..9338d5bf10c80ff380215f1ae80d82f6fea7a58f 100644 (file)
@@ -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["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
-$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(
+$a->strings["comment"] = array(
        0 => "",
        1 => "",
-       2 => "",
+       2 => "komentarz",
 );
 $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 <strong>may</strong> 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["<span  %1\$s>%2\$d people</span> like this"] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> 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 <strong>everybody</strong>"] = "Widoczne dla <strong>wszystkich</strong>";
-$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["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 <!item_type!>"] = "";
-$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["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["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["Account settings"] = "Ustawienia konta";
+$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"] = "";
-$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 &ldquo;%3\$s&rdquo;"] = "";
-$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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> 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["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 - <a href='#' id='cnftheme'>change theme settings</a>"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>";
-$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 <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, 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 '<strong>nickname@\$sitename</strong>'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@\$nazwastrony</strong>'.";
 $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 <strong>not published</strong>."] = "Profil <strong>nie jest opublikowany</strong>";
-$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 <em>interesting</em> 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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong> UWAGA: To jest wysoce zaawansowane</strong> 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 <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> 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,321 +231,39 @@ $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 <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> 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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Połącz jako użytkownika e mail (tylko)</strike> (Niebawem)";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Jeśli nie jesteś członkiem darmowej sieci społecznościowej <a href=\"http://dir.friendica.com/siteinfo\"> kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś </a>.";
-$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 <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, 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["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["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";
+$a->strings["click here to login"] = "Kliknij tutaj aby zalogować";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu.";
+$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s";
+$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["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."] = "";
+$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["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["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";
-$a->strings["click here to login"] = "Kliknij tutaj aby zalogować";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu.";
-$a->strings["Your password has been changed at %s"] = "Twoje hasło zostało zmienione na %s";
-$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 <strong>may</strong> 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["Search Results For:"] = "Szukaj wyników dla:";
-$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";
-$a->strings["Sort by Post Date"] = "Sortuj po dacie posta";
-$a->strings["Personal"] = "Osobiste";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "Nowy";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Shared Links"] = "Współdzielone linki";
-$a->strings["Interesting Links"] = "Interesujące linki";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "Ulubione posty";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.",
-       1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
-       2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia";
-$a->strings["No such group"] = "Nie ma takiej grupy";
-$a->strings["Group is empty"] = "Grupa jest pusta";
-$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["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.";
@@ -1408,6 +280,7 @@ $a->strings["Edit your <strong>default</strong> profile to your liking. Review t
 $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["<em>If</em> 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...";
@@ -1418,6 +291,7 @@ $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 <em>Connect</em> or <em>Follow</em> 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?";
@@ -1425,8 +299,38 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
 $a->strings["Getting Help"] = "Otrzymywanie pomocy";
 $a->strings["Go to the Help Section"] = "Idź do części o pomocy";
 $a->strings["Our <strong>help</strong> 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["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";
+$a->strings["Sort by Post Date"] = "Sortuj po dacie posta";
+$a->strings["Personal"] = "Osobiste";
+$a->strings["Posts that mention or involve you"] = "";
+$a->strings["New"] = "Nowy";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Shared Links"] = "Współdzielone linki";
+$a->strings["Interesting Links"] = "Interesujące linki";
+$a->strings["Starred"] = "";
+$a->strings["Favourite Posts"] = "Ulubione posty";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.",
+       1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
+       2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia";
+$a->strings["No such group"] = "Nie ma takiej grupy";
+$a->strings["Group is empty"] = "Grupa jest pusta";
+$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["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,175 +394,1300 @@ $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["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
 $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["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";
-$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
-$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
-$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["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";
-$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
-$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
-$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["View all contacts"] = "Zobacz wszystkie kontakty";
-$a->strings["Toggle Blocked status"] = "";
-$a->strings["Unignore"] = "Odblokuj";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "Przywróć z archiwum";
-$a->strings["Archive"] = "Archiwum";
-$a->strings["Toggle Archive status"] = "";
-$a->strings["Repair"] = "Napraw";
-$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
-$a->strings["Communications lost with this contact!"] = "Komunikacja przerwana z tym kontaktem!";
-$a->strings["Contact Editor"] = "Edytor kontaktów";
-$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["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
-$a->strings["Ignore contact"] = "Ignoruj kontakt";
-$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
-$a->strings["View conversations"] = "Zobacz rozmowę";
-$a->strings["Delete contact"] = "Usuń kontakt";
-$a->strings["Last update:"] = "Ostatnia aktualizacja:";
-$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["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne";
-$a->strings["Suggestions"] = "Sugestie";
-$a->strings["Suggest potential friends"] = "Sugerowani znajomi";
-$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty";
-$a->strings["Unblocked"] = "Odblokowany";
-$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty";
-$a->strings["Blocked"] = "Zablokowany";
-$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
-$a->strings["Ignored"] = "Zignorowany";
-$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
-$a->strings["Archived"] = "Zarchiwizowane";
-$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
-$a->strings["Hidden"] = "Ukryty";
-$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["Search your contacts"] = "Wyszukaj w kontaktach";
-$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["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."] = "";
-$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
-$a->strings["Upload File:"] = "Wyślij plik:";
-$a->strings["Select a profile:"] = "Wybierz profil:";
-$a->strings["Upload"] = "Załaduj";
-$a->strings["skip this step"] = "Pomiń ten krok";
-$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
-$a->strings["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["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 <scheme>://<domain>"] = "";
+$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 - <a href='#' id='cnftheme'>change theme settings</a>"] = "Domyślny motyw systemu - może być nadpisany przez profil użytkownika  <a href='#' id='cnftheme'>zmień ustawienia motywów</a>";
+$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["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["%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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong> UWAGA: To jest wysoce zaawansowane</strong> 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 <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> 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 <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> 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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Połącz jako użytkownika e mail (tylko)</strike> (Niebawem)";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Jeśli nie jesteś członkiem darmowej sieci społecznościowej <a href=\"http://dir.friendica.com/siteinfo\"> kliknij w ten link by odkryć czym jest Friendica i dołącz do niej dziś </a>.";
+$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";
+$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
+$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
+$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?"] = "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";
+$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
+$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
+$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";
+$a->strings["Toggle Archive status"] = "";
+$a->strings["Repair"] = "Napraw";
+$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
+$a->strings["Communications lost with this contact!"] = "Komunikacja przerwana z tym kontaktem!";
+$a->strings["Contact Editor"] = "Edytor kontaktów";
+$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";
+$a->strings["View conversations"] = "Zobacz rozmowę";
+$a->strings["Delete contact"] = "Usuń kontakt";
+$a->strings["Last update:"] = "Ostatnia aktualizacja:";
+$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 <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> 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";
+$a->strings["Blocked"] = "Zablokowany";
+$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
+$a->strings["Ignored"] = "Zignorowany";
+$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
+$a->strings["Archived"] = "Zarchiwizowane";
+$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
+$a->strings["Hidden"] = "Ukryty";
+$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 <strong>not published</strong>."] = "Profil <strong>nie jest opublikowany</strong>";
+$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 <em>interesting</em> 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 &ldquo;%3\$s&rdquo;"] = "";
+$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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> 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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> 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 <strong>may</strong> 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["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."] = "";
+$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
+$a->strings["Upload File:"] = "Wyślij plik:";
+$a->strings["Select a profile:"] = "Wybierz profil:";
+$a->strings["Upload"] = "Załaduj";
+$a->strings["skip this step"] = "Pomiń ten krok";
+$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
+$a->strings["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["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["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["<span  %1\$s>%2\$d people</span> like this"] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> 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 <strong>everybody</strong>"] = "Widoczne dla <strong>wszystkich</strong>";
+$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 <!item_type!>"] = "";
+$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 <strong>may</strong> 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["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
+$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'";
index 5fd11e75695398b572526e4c54da2fac2777f3c8..6b6f1be4a90d32bb80df36f9e731be12c6ba7605 100644 (file)
@@ -1,8 +1,4 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
+
 <div id="acl-wrapper">
        <input id="acl-search">
        <a href="#" id="acl-showall">{{$showall}}</a>
@@ -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}}
                );
        }
 });
index 7d0e6d8f469a582fd9f302adcf37cec498112582..6791fb87f339d02a3fe964cc7fe6a8089018d664 100644 (file)
@@ -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}}
        <div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>
        
        <h3>{{$advanced}}</h3>
index 8e0e1acc7fd3a1adc124419fb17e95ad0a46eea6..196254960bc6c2dc9eaaa53910cdd2f55bc65308 100644 (file)
@@ -1,8 +1,3 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
 
 <div class="contact-entry-wrapper" id="contact-entry-wrapper-{{$contact.id}}" >
        <div class="contact-entry-photo-wrapper" >
 
                        <a href="{{$contact.url}}" title="{{$contact.img_hover}}" /><img src="{{$contact.thumb}}" {{$contact.sparkle}} alt="{{$contact.name}}" /></a>
 
+                       <input type="checkbox" class="contact-select" name="contact_batch[]" value="{{$contact.id}}">
                        {{if $contact.photo_menu}}
                        <span onclick="openClose('contact-photo-menu-{{$contact.id}}');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-{{$contact.id}}">menu</span>
                 <div class="contact-photo-menu" id="contact-photo-menu-{{$contact.id}}">
                     <ul>
-                                               {{foreach $contact.photo_menu as $c}}
+                                               {{foreach $contact.photo_menu as $k=>$c}}
                                                {{if $c.2}}
-                                               <li><a target="redir" href="{{$c.1}}">{{$c.0}}</a></li>
+                                               <li><a class="{{$k}}" target="redir" href="{{$c.1}}">{{$c.0}}</a></li>
                                                {{else}}
-                                               <li><a href="{{$c.1}}">{{$c.0}}</a></li>
+                                               <li><a class="{{$k}}" href="{{$c.1}}">{{$c.0}}</a></li>
                                                {{/if}}
                                                {{/foreach}}
                     </ul>
index 66f3f5c87bcef5654d2a0df9ed2bf6175e52dfd0..774bc00deb338d5933bb87465cc0d016b817cc2c 100644 (file)
@@ -1,8 +1,4 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
+
 <h1>{{$header}}{{if $total}} ({{$total}}){{/if}}</h1>
 
 {{if $finding}}<h4>{{$finding}}</h4>{{/if}}
 
 {{$tabs}}
 
-
+<form action="{{$baseurl}}/contacts/batch/" method="POST">
 {{foreach $contacts as $contact}}
        {{include file="contact_template.tpl"}}
 {{/foreach}}
 <div id="contact-edit-end"></div>
+<div id="contats-actions">
+{{foreach $batch_actions as $n=>$l}}
+ <input class="batch-action" name="{{$n}}" value="{{$l}}" type="submit">
+ {{/foreach}}
+ </div>
+</form>
+<script>
+ $(document).ready(function() {
+  // javascript dialog to batch actions
+  $(".batch-action").click(function(e){
+    if (confirm($(this).attr('value')+" ?")) {
+     return true;
+    } else {
+     e.preventDefault();
+     return false;
+    }
+  });
+  // add javascript confirm dialog to "drop" links. Plain html url have "?confirm=1" to show confirmation form, we need to remove it
+  $(".drop").each(function() {
+   $(this).attr('href', $(this).attr('href').replace("confirm=1","") );
+   $(this).click(function(e){
+    if (confirm("{{$contact_drop_confirm}}")) {
+     return true;
+    } else {
+     e.preventDefault();
+     return false;
+    }
+   });
+   
+  });
+ });
+ </script>
 
 {{$paginate}}
 
index 5278e42f089b0455a9d646815c8df0062c2b7ff0..5cc4462b390e341b83125a377100aac51ec2d314 100644 (file)
@@ -1,9 +1,3 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
-
 <form id="crepair-form" action="crepair/{{$contact_id}}" method="post" >
 
 <h4>{{$contact_name}}</h4>
 <label id="crepair-photo-label" class="crepair-label" for="crepair-photo">{{$label_photo}}</label>
 <input type="text" id="crepair-photo" class="crepair-input" name="photo" value="" />
 <div class="clear"></div>
+{{if $allow_remote_self eq 1}}
+<h4>{{$label_remote_self}}</h4>
+{{include file="field_checkbox.tpl" field=$remote_self}}
+{{/if}}
 
 {{include file="field_checkbox.tpl" field=$contact_self}}
 
index 527b2f4d862972733dae117cc947255e11535570..77362e552496ef7434fc80539645a656a65e8fbd 100644 (file)
@@ -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
index e72e557038b602618d6ffa6df8b106e8621037bc..ec4e6ad106db431bb481c69dc0c48c1a4aebc268 100644 (file)
@@ -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;
index 8e6a020b8ae9f02e5c91e1b86420ab23a9214d32..d78a06dc7c4534e873954f0a073f6b1565923efd 100644 (file)
@@ -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;
index d35ad52ed092920fce8ef4f8c41f97e3e22e8f48..8c2e147fa80805107cdf3fa728df2539dc18eabe 100644 (file)
@@ -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;
index 6287a05ef8f6d204bc1b509983ce03be7c838f83..768f1cab290b10e9f4af58007576600785664ad9 100644 (file)
@@ -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; }
index c74a513b8fc1e4a7a50900b7ed5e8b85931815a2..a63ffb3c9ad068f4c760cc16f397407ce4edd45e 100644 (file)
@@ -1,8 +1,3 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
 
 <div class="contact-wrapper" id="contact-entry-wrapper-{{$id}}" >
        <div class="contact-photo-wrapper" >
@@ -12,6 +7,7 @@
 
                        <a href="{{$contact.url}}" title="{{$contact.img_hover}}" /><img src="{{$contact.thumb}}" {{$contact.sparkle}} alt="{{$contact.name}}" /></a>
 
+                       <input type="checkbox" class="contact-select" name="contact_batch[]" value="{{$contact.id}}">
                        {{if $contact.photo_menu}}
                        <a href="#" rel="#contact-photo-menu-{{$contact.id}}" class="contact-photo-menu-button icon s16 menu" id="contact-photo-menu-button-{{$contact.id}}">menu</a>
                        <ul class="contact-photo-menu menu-popup" id="contact-photo-menu-{{$contact.id}}">
index 03aaf89400439cf98b34781735cfc68723e00e6c..5561cb65ee9f89ca09e3568630eb478c129962d4 100644 (file)
@@ -291,7 +291,9 @@ blockquote.shared_content {
 body {
   font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
   font-size: 14px;
-  background-color: #ffffff;
+  /* background-color: #ffffff; */
+  background-color: #FAFAFA;
+  /* background-color: rgb(252, 252, 252); */
   color: #2d2d2d;
   margin: 0px 0px 0px 0px;
   display: table;
@@ -1087,7 +1089,9 @@ section {
   width: 766px;
   max-width: 766px;
   padding: 10px 10px 10px 10px;
-  background-color: white;
+  /* background-color: white; */
+  /* background-color: rgb(252, 252, 252); */
+  background-color: #FAFAFA;
   border-bottom: 1px solid lightgray;
   border-right: 1px solid lightgray;
   border-left: 1px solid lightgray;
@@ -1410,6 +1414,31 @@ border-bottom: 1px solid #D2D2D2;
        padding-right: 12px; */
 }
 
+.twit {
+  background-color: #FFFAFA;
+}
+.pump {
+  background-color: #FAFFFA;
+}
+.face {
+  background-color: #FAFAFF;
+}
+.feed {
+  background-color: #FFFFFA;
+}
+.dspr {
+  background-color: #FFFAFF;
+}
+.dfrn {
+  background-color: #FAFFFF;
+}
+.stat {
+  background-color: #FAFAFA;
+}
+.mail {
+  background-color: #FFFFF9;
+}
+
 #profile-jot-form #profile-jot-text {
   height: 2.0em;
   /* width: 99%; */
index dc3e918f610e0fe099a79add9dc5fd030075fea8..397046a4e37ac07c3a065787fff8880fc24949d8 100644 (file)
@@ -7,7 +7,7 @@
 
 {{foreach $threads as $thread}}
 
-<div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper {{if $thread.threaded}}threaded{{/if}}  {{$thread.toplevel}}">
+<div id="tread-wrapper-{{$thread.id}}" class="tread-wrapper {{if $thread.threaded}}threaded{{/if}}  {{$thread.toplevel}} {{$thread.network}}">
        
        
                {{if $thread.type == tag}}
index d51014a9694766bf0e8aac4d11d8d67be7a2291c..0ec3c526b4f23b89f806932fef9f9237dcb94d7f 100644 (file)
@@ -32,7 +32,7 @@
        <img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
 </div>
 
-<div class="wall-item-container {{$item.indent}} {{$item.shiny}} " id="item-{{$item.id}}">
+<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}}" id="item-{{$item.id}}">
        <div class="wall-item-item">
                <div class="wall-item-info">
                        <div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}"